Minecraft-Console-Client/MinecraftClient/Inventory/Enchantments.cs
2024-09-11 19:12:31 +02:00

49 lines
946 B
C#

namespace MinecraftClient.Inventory
{
// Not implemented for 1.14
public enum Enchantments : short
{
AquaAffinity = 0,
BaneOfArthropods,
BindingCurse,
BlastProtection,
Breach,
Channeling,
DepthStrieder,
Density,
Efficency,
FeatherFalling,
FireAspect,
FireProtection,
Flame,
Fortune,
FrostWalker,
Impaling,
Infinity,
Knockback,
Looting,
LuckOfTheSea,
Loyality,
Lure,
Mending,
Multishot,
Piercing,
Power,
ProjectileProtection,
Protection,
Punch,
QuickCharge,
Respiration,
Riptide,
Sharpness,
SilkTouch,
Smite,
SoulSpeed,
Sweeping,
SwiftSneak,
Thorns,
Unbreaking,
VanishingCurse,
WindBurst
}
}