From 78854f0764ca67328590ec66fcb2f6a399ad39a1 Mon Sep 17 00:00:00 2001 From: RedPine91 Date: Sun, 19 Nov 2023 17:25:01 -0800 Subject: [PATCH 1/4] Update zombie_upgrades.json Removed Hollow, Necromancer, and Master zombies from generic evolution list of normal zombies. --- data/json/monstergroups/zombie_upgrades.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/data/json/monstergroups/zombie_upgrades.json b/data/json/monstergroups/zombie_upgrades.json index 4228ce1b735d..dc070c9f9f0c 100644 --- a/data/json/monstergroups/zombie_upgrades.json +++ b/data/json/monstergroups/zombie_upgrades.json @@ -27,11 +27,8 @@ { "monster": "mon_zombie_biter", "freq": 15, "cost_multiplier": 5 }, { "monster": "mon_zombie_shrieker", "freq": 45, "cost_multiplier": 5 }, { "monster": "mon_zombie_acidic", "freq": 45, "cost_multiplier": 2 }, - { "monster": "mon_zombie_necro", "freq": 8, "cost_multiplier": 25 }, { "monster": "mon_boomer", "freq": 45, "cost_multiplier": 5 }, { "monster": "mon_zombie_brute", "freq": 23, "cost_multiplier": 15 }, - { "monster": "mon_zombie_master", "freq": 2, "cost_multiplier": 30 }, - { "monster": "mon_zombie_hollow", "freq": 3, "cost_multiplier": 10 }, { "monster": "mon_zombie_thorny", "freq": 13, "cost_multiplier": 5 }, { "monster": "mon_zombie_nurse", "freq": 10, "cost_multiplier": 3 } ] From 3a1543b898e03136bcad5a84d3f4c8ccb8015ee2 Mon Sep 17 00:00:00 2001 From: RedPine91 Date: Sun, 19 Nov 2023 17:39:12 -0800 Subject: [PATCH 2/4] Update zed_misc.json Hollow zombies now evolve into Necromancers with a 30 day half life. --- data/json/monsters/zed_misc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/data/json/monsters/zed_misc.json b/data/json/monsters/zed_misc.json index 3e730f0d95b0..71afacf157ec 100644 --- a/data/json/monsters/zed_misc.json +++ b/data/json/monsters/zed_misc.json @@ -428,6 +428,7 @@ "harvest": "zombie", "special_attacks": [ [ "STRETCH_BITE", 10 ], [ "STRETCH_ATTACK", 5 ] ], "death_function": [ "BLOBSPLIT" ], + "upgrades": { "half_life": 30, "into": "mon_zombie_necro" }, "flags": [ "SEES", "HEARS", "SMELLS", "WARM", "BASHES", "GROUP_BASH", "POISON", "NO_BREATHE", "FILTHY" ] }, { From a8cd9f404271f0746c336bba474abb5c1df8facb Mon Sep 17 00:00:00 2001 From: RedPine91 Date: Sun, 19 Nov 2023 17:43:57 -0800 Subject: [PATCH 3/4] Update zed_misc.json Hollows turn into Necromancers, half life 30 days. Necromancers turn into Masters, half life 60 days. Masters turn into Hollows, half life 15 days. --- data/json/monsters/zed_misc.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data/json/monsters/zed_misc.json b/data/json/monsters/zed_misc.json index 71afacf157ec..5dba8b52036b 100644 --- a/data/json/monsters/zed_misc.json +++ b/data/json/monsters/zed_misc.json @@ -650,6 +650,7 @@ "death_drops": "default_zombie_death_drops", "death_function": [ "NORMAL" ], "burn_into": "mon_zombie_scorched", + "upgrades": { "half_life": 15, "into": "mon_zombie_hollow" }, "flags": [ "SEES", "HEARS", @@ -698,6 +699,7 @@ "death_drops": "default_zombie_death_drops", "death_function": [ "NORMAL" ], "burn_into": "mon_zombie_scorched", + "upgrades": { "half_life": 60, "into": "mon_zombie_master" }, "flags": [ "SEES", "HEARS", From a81406043110b129eb694ecd3dd981915411127b Mon Sep 17 00:00:00 2001 From: RedPine91 Date: Sun, 19 Nov 2023 17:45:45 -0800 Subject: [PATCH 4/4] Update zombie_upgrades.json Put Hollows back in the generic zombie upgrade group. --- data/json/monstergroups/zombie_upgrades.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/json/monstergroups/zombie_upgrades.json b/data/json/monstergroups/zombie_upgrades.json index dc070c9f9f0c..651b86e6c134 100644 --- a/data/json/monstergroups/zombie_upgrades.json +++ b/data/json/monstergroups/zombie_upgrades.json @@ -30,7 +30,8 @@ { "monster": "mon_boomer", "freq": 45, "cost_multiplier": 5 }, { "monster": "mon_zombie_brute", "freq": 23, "cost_multiplier": 15 }, { "monster": "mon_zombie_thorny", "freq": 13, "cost_multiplier": 5 }, - { "monster": "mon_zombie_nurse", "freq": 10, "cost_multiplier": 3 } + { "monster": "mon_zombie_nurse", "freq": 10, "cost_multiplier": 3 }, + { "monster": "mon_zombie_hollow", "freq": 3, "cost_multiplier": 10 } ] }, {