Minecraft-Console-Client/MinecraftClient/Inventory/Enchantments.cs
copilot-swe-agent[bot] d4faea9ecc fix: add lunge enchantment mapping for 1.21.11
Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com>
Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/16e21ef0-6f09-4280-b539-8d704ddc3b67
2026-03-25 18:00:38 +00:00

50 lines
957 B
C#

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