From b6c68ac93484ab0baa8f24b4247fa0c48e73d2d6 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Mon, 5 Jan 2026 02:04:46 +0000 Subject: [PATCH] buffed hp of beasts --- CHANGELOG.md | 1 + .../tfg/worldgen/{entities.js => events.entities.js} | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) rename kubejs/server_scripts/tfg/worldgen/{entities.js => events.entities.js} (99%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 359a6d617..e05e27ca4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ - Added missing recipes for some Steam 'n' Rails items, and changed the smokestacks to use cast iron instead of black steel (#2610) @thederpysockdude123 - Added missing recipes for new Hypertube redstone things (#2615) @Xtrial-01 - Recolored diamond GregTech things to match the color of the vanilla diamond item @Pyritie +- Buffed the HP of the Illager Beast @Pyritie #### Hazard changes - Added a new medical condition, Irradiated, caused by the Radioactive hazard which all radioactive things (including naquadria and neutronium) now have instead of Carcinogenic. It has the same symptoms/side effects as carcinogenic. - Paracetamol now cures carcinogenic, and Rad-Away cures both carcinogenic and irradiated. This is because you encounter carcinogenic hazards much sooner than radioactive ones, so the only cure for radioactive being way in HV didn't make much sense. In order to change the effects of these pills, we had to make new items, so any existing ones won't have these changes, sorry. diff --git a/kubejs/server_scripts/tfg/worldgen/entities.js b/kubejs/server_scripts/tfg/worldgen/events.entities.js similarity index 99% rename from kubejs/server_scripts/tfg/worldgen/entities.js rename to kubejs/server_scripts/tfg/worldgen/events.entities.js index a0fdce629..8534d677a 100644 --- a/kubejs/server_scripts/tfg/worldgen/entities.js +++ b/kubejs/server_scripts/tfg/worldgen/events.entities.js @@ -2,6 +2,9 @@ "use strict"; const NEW_MOB_MAX_HP = { + // earth mobs + "primitive_creatures:beast": 40, + // moon mobs "endermanoverhaul:end_enderman": 50, "endermanoverhaul:end_islands_enderman": 120, @@ -165,7 +168,6 @@ EntityEvents.spawned((event) => { } } - let newArmor = NEW_MOB_ARMOR[type] ?? 0; if (newArmor !== 0) { let baseArmor = entity.armor;