1
0
mirror of https://github.com/veden/Rampant.git synced 2025-03-17 20:58:35 +02:00

FACTO-182: Increased spawner faction biters health

This commit is contained in:
Aaron Veden 2022-06-17 16:55:08 -07:00
parent fcb15c9957
commit 6feebabd9b
No known key found for this signature in database
GPG Key ID: FF5990B1C6DD3F84
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ Version: 3.1.2
- Increased default mod settings max squads to 30
- Increased default mod settings max enemy level to 6
- Increased major,minor resistance percents and Increased minor weakness percents primarily in the lower enemy levels
- Increased spawner faction spawned biters health by 25%
Bugfixes:
- Fixed sent aggressive squads, builder count, squad count could be negative
- Added missing sent and max siege groups on debug log

View File

@ -765,7 +765,7 @@ local function fillEntityTemplate(entity)
elseif (attribute == "smallest") then
entity["scale"] = entity["scale"] * 0.5
elseif (attribute == "fragile") then
entity["health"] = entity["health"] * 0.1
entity["health"] = entity["health"] * 0.35
elseif (attribute == "selfDamaging") then
local divider
if entity.health < 100 then