mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Added enchanting
This commit is contained in:
parent
d222d5f683
commit
4dc1b420f5
12 changed files with 474 additions and 1 deletions
23
MinecraftClient/Inventory/EnchantmentPropertyInfo.cs
Normal file
23
MinecraftClient/Inventory/EnchantmentPropertyInfo.cs
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue