This commit is contained in:
Bob 2026-02-23 21:24:41 +01:00
parent ca247c69b8
commit 960d28740b
2 changed files with 9 additions and 1 deletions

View File

@ -3,3 +3,4 @@
## Fixed ## Fixed
* Fixed chemical factory internal tank sharing ignoring tank pressure * Fixed chemical factory internal tank sharing ignoring tank pressure
* Fixed the NCR ranger power armor missing most protection stats

View File

@ -190,6 +190,13 @@ public class DamageResistanceHandler {
.addCategory(CATEGORY_ENERGY, 25F, 0.75F) .addCategory(CATEGORY_ENERGY, 25F, 0.75F)
.addExact(DamageSource.fall.damageType, 0F, 1F) .addExact(DamageSource.fall.damageType, 0F, 1F)
.setOther(15F, 0.3F)); .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() ResistanceStats bj = new ResistanceStats()
.addCategory(CATEGORY_PHYSICAL, 5F, 0.5F) .addCategory(CATEGORY_PHYSICAL, 5F, 0.5F)
.addCategory(CATEGORY_FIRE, 2.5F, 0.5F) .addCategory(CATEGORY_FIRE, 2.5F, 0.5F)