/** * All possible MinecraftEnchantmentTypes */ export enum MinecraftEnchantmentTypes { AquaAffinity = "aqua_affinity", BaneOfArthropods = "bane_of_arthropods", Binding = "binding", BlastProtection = "blast_protection", Breach = "breach", Channeling = "channeling", Density = "density", DepthStrider = "depth_strider", Efficiency = "efficiency", FeatherFalling = "feather_falling", FireAspect = "fire_aspect", FireProtection = "fire_protection", Flame = "flame", Fortune = "fortune", FrostWalker = "frost_walker", Impaling = "impaling", Infinity = "infinity", Knockback = "knockback", Looting = "looting", Loyalty = "loyalty", LuckOfTheSea = "luck_of_the_sea", Lure = "lure", Mending = "mending", Multishot = "multishot", Piercing = "piercing", Power = "power", ProjectileProtection = "projectile_protection", Protection = "protection", Punch = "punch", QuickCharge = "quick_charge", Respiration = "respiration", Riptide = "riptide", Sharpness = "sharpness", SilkTouch = "silk_touch", Smite = "smite", SoulSpeed = "soul_speed", SwiftSneak = "swift_sneak", Thorns = "thorns", Unbreaking = "unbreaking", Vanishing = "vanishing", WindBurst = "wind_burst", } /** * Union type equivalent of the MinecraftEnchantmentTypes enum. */ export type MinecraftEnchantmentTypesUnion = keyof typeof MinecraftEnchantmentTypes;