diff --git a/machines/src/main/kotlin/xyz/xenondevs/nova/addon/machines/registry/Items.kt b/machines/src/main/kotlin/xyz/xenondevs/nova/addon/machines/registry/Items.kt index 96ce959..b2407fd 100644 --- a/machines/src/main/kotlin/xyz/xenondevs/nova/addon/machines/registry/Items.kt +++ b/machines/src/main/kotlin/xyz/xenondevs/nova/addon/machines/registry/Items.kt @@ -30,10 +30,10 @@ object Items : ItemRegistry by Machines.registry { val STAR_HOE = registerItem("star_hoe", Tool, Damageable, Enchantable, Tilling) // Armor - val STAR_HELMET = registerItem("star_helmet", Wearable(EquipmentSlot.HEAD, Sounds.ARMOR_EQUIP_STAR), Damageable) - val STAR_CHESTPLATE = registerItem("star_chestplate", Wearable(EquipmentSlot.CHEST, Sounds.ARMOR_EQUIP_STAR), Damageable) - val STAR_LEGGINGS = registerItem("star_leggings", Wearable(EquipmentSlot.LEGS, Sounds.ARMOR_EQUIP_STAR), Damageable) - val STAR_BOOTS = registerItem("star_boots", Wearable(EquipmentSlot.FEET, Sounds.ARMOR_EQUIP_STAR), Damageable) + val STAR_HELMET = registerItem("star_helmet", Wearable(EquipmentSlot.HEAD, Sounds.ARMOR_EQUIP_STAR), Damageable, Enchantable) + val STAR_CHESTPLATE = registerItem("star_chestplate", Wearable(EquipmentSlot.CHEST, Sounds.ARMOR_EQUIP_STAR), Damageable, Enchantable) + val STAR_LEGGINGS = registerItem("star_leggings", Wearable(EquipmentSlot.LEGS, Sounds.ARMOR_EQUIP_STAR), Damageable, Enchantable) + val STAR_BOOTS = registerItem("star_boots", Wearable(EquipmentSlot.FEET, Sounds.ARMOR_EQUIP_STAR), Damageable, Enchantable) // Plates val IRON_PLATE = registerItem("iron_plate") diff --git a/machines/src/main/resources/configs/star_boots.yml b/machines/src/main/resources/configs/star_boots.yml index bdb287d..90c64ec 100644 --- a/machines/src/main/resources/configs/star_boots.yml +++ b/machines/src/main/resources/configs/star_boots.yml @@ -1,2 +1,5 @@ armor: 2 -max_durability: 350 \ No newline at end of file +max_durability: 350 + +enchantment_value: 10 +enchantment_categories: ["breakable", "armor", "armor_feet"] \ No newline at end of file diff --git a/machines/src/main/resources/configs/star_chestplate.yml b/machines/src/main/resources/configs/star_chestplate.yml index 604d7a0..2677ba9 100644 --- a/machines/src/main/resources/configs/star_chestplate.yml +++ b/machines/src/main/resources/configs/star_chestplate.yml @@ -1,2 +1,5 @@ armor: 7 -max_durability: 350 \ No newline at end of file +max_durability: 350 + +enchantment_value: 10 +enchantment_categories: ["breakable", "armor", "armor_chest"] \ No newline at end of file diff --git a/machines/src/main/resources/configs/star_helmet.yml b/machines/src/main/resources/configs/star_helmet.yml index bdb287d..e67fe05 100644 --- a/machines/src/main/resources/configs/star_helmet.yml +++ b/machines/src/main/resources/configs/star_helmet.yml @@ -1,2 +1,5 @@ armor: 2 -max_durability: 350 \ No newline at end of file +max_durability: 350 + +enchantment_value: 10 +enchantment_categories: ["breakable", "armor", "armor_head"] \ No newline at end of file diff --git a/machines/src/main/resources/configs/star_leggings.yml b/machines/src/main/resources/configs/star_leggings.yml index 8ae9c18..66dcddd 100644 --- a/machines/src/main/resources/configs/star_leggings.yml +++ b/machines/src/main/resources/configs/star_leggings.yml @@ -1,2 +1,5 @@ armor: 6 -max_durability: 350 \ No newline at end of file +max_durability: 350 + +enchantment_value: 10 +enchantment_categories: ["breakable", "armor", "armor_legs"] \ No newline at end of file