Skip to content

Commit

Permalink
Fix star armor max stack size
Browse files Browse the repository at this point in the history
  • Loading branch information
NichtStudioCode committed Dec 6, 2024
1 parent 200a0b6 commit e6fbc44
Showing 1 changed file with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,22 @@ object Items : ItemRegistry by Machines.registry {
}

// Armor
val STAR_HELMET = registerItem("star_helmet", Equippable(Equipment.STAR, EquipmentSlot.HEAD, equipSound = Sounds.ARMOR_EQUIP_STAR), Damageable(), Enchantable())
val STAR_CHESTPLATE = registerItem("star_chestplate", Equippable(Equipment.STAR, EquipmentSlot.CHEST, equipSound = Sounds.ARMOR_EQUIP_STAR), Damageable(), Enchantable())
val STAR_LEGGINGS = registerItem("star_leggings", Equippable(Equipment.STAR, EquipmentSlot.LEGS, equipSound = Sounds.ARMOR_EQUIP_STAR), Damageable(), Enchantable())
val STAR_BOOTS = registerItem("star_boots", Equippable(Equipment.STAR, EquipmentSlot.FEET, equipSound = Sounds.ARMOR_EQUIP_STAR), Damageable(), Enchantable())
val STAR_HELMET = item("star_helmet") {
behaviors(Equippable(Equipment.STAR, EquipmentSlot.HEAD, equipSound = Sounds.ARMOR_EQUIP_STAR), Damageable(), Enchantable())
maxStackSize(1)
}
val STAR_CHESTPLATE = item("star_chestplate") {
behaviors(Equippable(Equipment.STAR, EquipmentSlot.CHEST, equipSound = Sounds.ARMOR_EQUIP_STAR), Damageable(), Enchantable())
maxStackSize(1)
}
val STAR_LEGGINGS = item("star_leggings") {
behaviors(Equippable(Equipment.STAR, EquipmentSlot.LEGS, equipSound = Sounds.ARMOR_EQUIP_STAR), Damageable(), Enchantable())
maxStackSize(1)
}
val STAR_BOOTS = item("star_boots") {
behaviors(Equippable(Equipment.STAR, EquipmentSlot.FEET, equipSound = Sounds.ARMOR_EQUIP_STAR), Damageable(), Enchantable())
maxStackSize(1)
}

val MOB_CATCHER = registerItem("mob_catcher", MobCatcherBehavior)

Expand Down

0 comments on commit e6fbc44

Please sign in to comment.