From 6d40cc923f9da21ad1f767c05229a1b10a6e4bb5 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Wed, 26 Oct 2022 22:56:31 +0700 Subject: [PATCH] Nerf tritanium armor values once again, make it slightly worse than diamond armor at protection --- .../ru/dbotthepony/mc/otm/item/TritaniumArmorItem.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/item/TritaniumArmorItem.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/item/TritaniumArmorItem.kt index 1b703eb9e..c26c0e48b 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/item/TritaniumArmorItem.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/item/TritaniumArmorItem.kt @@ -34,10 +34,10 @@ private object TritaniumArmorMaterial : ArmorMaterial { override fun getDefenseForSlot(p_40411_: EquipmentSlot): Int { return when (p_40411_) { - EquipmentSlot.FEET -> 4 - EquipmentSlot.LEGS -> 7 - EquipmentSlot.CHEST -> 12 - EquipmentSlot.HEAD -> 5 + EquipmentSlot.FEET -> 3 + EquipmentSlot.LEGS -> 6 + EquipmentSlot.CHEST -> 8 + EquipmentSlot.HEAD -> 3 else -> throw IllegalArgumentException("yo dude what the fuck") } }