ItemEvents.armorTierRegistry(event => {
event.add('tier_id', tier => {
tier.durabilityMultiplier = 15 // 每个槽位将乘以 [13, 15, 16, 11]
tier.slotProtections = [2, 5, 6, 2] // 槽位索引为 [FEET, LEGS, BODY, HEAD]
tier.enchantmentValue = 9
tier.equipSound = 'minecraft:item.armor.equip_iron'
tier.repairIngredient = '#forge:ingots/iron'
tier.toughness = 0 // 钻石有2,下界合金有3
tier.knockbackResistance = 0
})
})