Added enchanting

This commit is contained in:
Milutinke 2022-10-12 19:51:01 +02:00
parent d222d5f683
commit 4dc1b420f5
12 changed files with 474 additions and 1 deletions

View file

@ -0,0 +1,23 @@
namespace MinecraftClient.Inventory
{
public enum EnchantmentPropertyInfo
{
// Levels that are required to enchant an item
TopEnchantmentLevelRequirement = 0,
MiddleEnchantmentLevelRequirement,
BottomEnchantmentLevelRequirement,
// Seed
EnchantmentSeed,
// Enchantment ids
TopEnchantmentId,
MiddleEnchantmentId,
BottomEnchantmentId,
// Shown on mouse hover over the top, middle and bottom slot
TopEnchantmentLevel,
MiddleEnchantmentLevel,
BottomEnchantmentLevel
}
}