From 186622c2b66c1d0a82d4ecddf3c7c5bd0270bcec Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 3 Oct 2022 00:28:22 +0700 Subject: [PATCH] Nerf tritanium armor values --- .../kotlin/ru/dbotthepony/mc/otm/item/TritaniumArmorItem.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 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 6c13ca8ef..c8ba240d3 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/item/TritaniumArmorItem.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/item/TritaniumArmorItem.kt @@ -45,8 +45,8 @@ private object TritaniumArmorMaterial : ArmorMaterial { const val ID = "${OverdriveThatMatters.MOD_ID}:tritanium_armor" override fun getName(): String = ID - override fun getToughness() = 2.6f - override fun getKnockbackResistance() = 0.2f + override fun getToughness() = 1f + override fun getKnockbackResistance() = 0.05f } private object TritaniumArmorRenderProperties : IClientItemExtensions {