2022-10-12 19:51:01 +02:00
|
|
|
|
namespace MinecraftClient.Inventory
|
|
|
|
|
|
{
|
|
|
|
|
|
// Not implemented for 1.14
|
|
|
|
|
|
public enum Enchantment : short
|
|
|
|
|
|
{
|
|
|
|
|
|
Protection = 0,
|
|
|
|
|
|
FireProtection,
|
|
|
|
|
|
FeatherFalling,
|
|
|
|
|
|
BlastProtection,
|
|
|
|
|
|
ProjectileProtection,
|
|
|
|
|
|
Respiration,
|
|
|
|
|
|
AquaAffinity,
|
|
|
|
|
|
Thorns,
|
|
|
|
|
|
DepthStrieder,
|
|
|
|
|
|
FrostWalker,
|
|
|
|
|
|
BindingCurse,
|
|
|
|
|
|
SoulSpeed,
|
2022-10-14 16:29:08 +02:00
|
|
|
|
SwiftSneak,
|
2022-10-12 19:51:01 +02:00
|
|
|
|
Sharpness,
|
|
|
|
|
|
Smite,
|
|
|
|
|
|
BaneOfArthropods,
|
|
|
|
|
|
Knockback,
|
|
|
|
|
|
FireAspect,
|
|
|
|
|
|
Looting,
|
|
|
|
|
|
Sweeping,
|
|
|
|
|
|
Efficency,
|
|
|
|
|
|
SilkTouch,
|
|
|
|
|
|
Unbreaking,
|
|
|
|
|
|
Fortune,
|
|
|
|
|
|
Power,
|
|
|
|
|
|
Punch,
|
|
|
|
|
|
Flame,
|
|
|
|
|
|
Infinity,
|
|
|
|
|
|
LuckOfTheSea,
|
|
|
|
|
|
Lure,
|
|
|
|
|
|
Loyality,
|
|
|
|
|
|
Impaling,
|
|
|
|
|
|
Riptide,
|
|
|
|
|
|
Channeling,
|
|
|
|
|
|
Multishot,
|
|
|
|
|
|
QuickCharge,
|
|
|
|
|
|
Piercing,
|
|
|
|
|
|
Mending,
|
|
|
|
|
|
VanishingCurse
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|