From 960d28740b5f24655a9abc89056c236ebb260ca8 Mon Sep 17 00:00:00 2001 From: Bob Date: Mon, 23 Feb 2026 21:24:41 +0100 Subject: [PATCH] bluh --- changelog | 3 ++- src/main/java/com/hbm/util/DamageResistanceHandler.java | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/changelog b/changelog index 2d3c90974..3e5499135 100644 --- a/changelog +++ b/changelog @@ -2,4 +2,5 @@ * Snow golems now use the grey metallic gib particles instead of blood ## Fixed -* Fixed chemical factory internal tank sharing ignoring tank pressure \ No newline at end of file +* Fixed chemical factory internal tank sharing ignoring tank pressure +* Fixed the NCR ranger power armor missing most protection stats \ No newline at end of file diff --git a/src/main/java/com/hbm/util/DamageResistanceHandler.java b/src/main/java/com/hbm/util/DamageResistanceHandler.java index adb9973d2..6efaa7a54 100644 --- a/src/main/java/com/hbm/util/DamageResistanceHandler.java +++ b/src/main/java/com/hbm/util/DamageResistanceHandler.java @@ -190,6 +190,13 @@ public class DamageResistanceHandler { .addCategory(CATEGORY_ENERGY, 25F, 0.75F) .addExact(DamageSource.fall.damageType, 0F, 1F) .setOther(15F, 0.3F)); + registerSet(ModItems.ncrpa_helmet, ModItems.ncrpa_plate, ModItems.ncrpa_legs, ModItems.ncrpa_boots, new ResistanceStats() + .addCategory(CATEGORY_PHYSICAL, 25F, 0.65F) + .addCategory(CATEGORY_FIRE, 10F, 0.9F) + .addCategory(CATEGORY_EXPLOSION, 15F, 0.25F) + .addCategory(CATEGORY_ENERGY, 10F, 0.5F) + .addExact(DamageSource.fall.damageType, 0F, 1F) + .setOther(15F, 0.25F)); ResistanceStats bj = new ResistanceStats() .addCategory(CATEGORY_PHYSICAL, 5F, 0.5F) .addCategory(CATEGORY_FIRE, 2.5F, 0.5F)