mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Improvements to the Bed, Blockinfo and Enchant commands.
This commit is contained in:
parent
735dc49d92
commit
a31b4a792b
7 changed files with 95 additions and 8 deletions
22
MinecraftClient/Inventory/EnchantmentData.cs
Normal file
22
MinecraftClient/Inventory/EnchantmentData.cs
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
namespace MinecraftClient.Inventory
|
||||
{
|
||||
public class EnchantmentData
|
||||
{
|
||||
public Enchantment TopEnchantment { get; set; }
|
||||
public Enchantment MiddleEnchantment { get; set; }
|
||||
public Enchantment BottomEnchantment { get; set; }
|
||||
|
||||
// Seed for rendering Standard Galactic Language (symbols in the enchanting table) (Useful for poeple who use MCC for the protocol)
|
||||
public short Seed { get; set; }
|
||||
|
||||
/// Enchantment levels are the levels of enchantment (eg. I, II, III, IV, V) (eg. Smite IV, Power III, Knockback II ..)
|
||||
public short TopEnchantmentLevel { get; set; }
|
||||
public short MiddleEnchantmentLevel { get; set; }
|
||||
public short BottomEnchantmentLevel { get; set; }
|
||||
|
||||
/// Enchantment level requirements are the levels that player needs to have in order to enchant the item
|
||||
public short TopEnchantmentLevelRequirement { get; set; }
|
||||
public short MiddleEnchantmentLevelRequirement { get; set; }
|
||||
public short BottomEnchantmentLevelRequirement { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue