From 4951f078176d00fc8d61800dde44ba94c4b371c7 Mon Sep 17 00:00:00 2001 From: LyleSY Date: Sat, 2 Jul 2022 12:51:37 -0400 Subject: [PATCH] [DinoMod] acid dinos (#58882) * [DinoMod] acid zombies * upgrade --- data/mods/DinoMod/monstergroups/zinosaur.json | 10 +- .../DinoMod/monsters/zinosaur_upgrade.json | 110 ++++++++++++++++++ 2 files changed, 116 insertions(+), 4 deletions(-) diff --git a/data/mods/DinoMod/monstergroups/zinosaur.json b/data/mods/DinoMod/monstergroups/zinosaur.json index 08ba021742e27..c8552c40a32c5 100644 --- a/data/mods/DinoMod/monstergroups/zinosaur.json +++ b/data/mods/DinoMod/monstergroups/zinosaur.json @@ -154,8 +154,9 @@ "name": "GROUP_zilophosaurus_UPGRADE", "monsters": [ { "monster": "mon_silophosaurus", "weight": 400 }, - { "monster": "mon_zilophosaurus_shady", "weight": 300 }, - { "monster": "mon_zilophosaurus_brute", "weight": 300 } + { "monster": "mon_zilophosaurus_shady", "weight": 150 }, + { "monster": "mon_zilophosaurus_brute", "weight": 250 }, + { "monster": "mon_zilophosaurus_acid", "weight": 400 } ] }, { @@ -163,8 +164,9 @@ "name": "GROUP_zeratosaurus_UPGRADE", "monsters": [ { "monster": "mon_seratosaurus", "weight": 400 }, - { "monster": "mon_zeratosaurus_shady", "weight": 300 }, - { "monster": "mon_zeratosaurus_brute", "weight": 300 } + { "monster": "mon_zeratosaurus_shady", "weight": 150 }, + { "monster": "mon_zeratosaurus_brute", "weight": 250 }, + { "monster": "mon_zeratosaurus_acid", "weight": 400 } ] }, { diff --git a/data/mods/DinoMod/monsters/zinosaur_upgrade.json b/data/mods/DinoMod/monsters/zinosaur_upgrade.json index d0a2843e6ea20..fb34555ac7654 100644 --- a/data/mods/DinoMod/monsters/zinosaur_upgrade.json +++ b/data/mods/DinoMod/monsters/zinosaur_upgrade.json @@ -3868,5 +3868,115 @@ ], "volume": "1000 L", "weight": "1000 kg" + }, + { + "type": "MONSTER", + "id": "mon_zilophosaurus_acid", + "name": { "str": "dilophosaurus acidic zombie" }, + "species": [ "ZOMBIE" ], + "default_faction": "zombie", + "symbol": "Z", + "diff": 5, + "color": "light_gray_yellow", + "bodytype": "ostrich", + "material": [ "flesh" ], + "aggression": 100, + "morale": 100, + "special_attacks": [ [ "ACID_BARF", 10 ] ], + "vision_night": 3, + "harvest": "zed_dino_feather", + "categories": [ "DINOSAUR" ], + "looks_like": "mon_dilophosaurus", + "volume": "400 L", + "weight": "400 kg", + "speed": 85, + "attack_cost": 85, + "melee_skill": 3, + "melee_dice": 2, + "melee_dice_sides": 3, + "melee_damage": [ { "damage_type": "cut", "amount": 2 } ], + "armor_bash": 4, + "armor_cut": 4, + "armor_bullet": 2, + "families": [ "prof_intro_biology", "prof_wp_zombie", "prof_biochemistry" ], + "weakpoint_sets": [ "wps_dinosaur_body" ], + "hp": 100, + "description": "The shuffling corpse of a dinosaur with sharp teeth and two prominent bony crests on its head, with ragged strips of ripped flesh hanging down like a frill. Sticky yellow fluid oozes out from sores in the scales.", + "burn_into": "mon_zilophosaurus_scorched", + "fungalize_into": "mon_zilophosaurus_fungus", + "death_function": { "message": "The %s's body leaks acid.", "effect": { "id": "death_acid", "hit_self": true } }, + "flags": [ + "SEES", + "SMELLS", + "HEARS", + "BASHES", + "GROUP_BASH", + "POISON", + "STUMBLES", + "ACIDPROOF", + "ACID_BLOOD", + "NO_BREATHE", + "REVIVES", + "FILTHY", + "PUSH_MON", + "WARM", + "RANGED_ATTACKER" + ] + }, + { + "type": "MONSTER", + "id": "mon_zeratosaurus_acid", + "name": { "str": "ceratosaurus acidic zombie" }, + "species": [ "ZOMBIE" ], + "default_faction": "zombie", + "symbol": "Z", + "diff": 5, + "color": "light_gray_yellow", + "bodytype": "ostrich", + "material": [ "flesh" ], + "aggression": 100, + "morale": 100, + "special_attacks": [ [ "ACID_BARF", 10 ] ], + "vision_night": 3, + "harvest": "zed_dino_feather", + "dissect": "dissect_dino_large_pred", + "categories": [ "DINOSAUR" ], + "looks_like": "mon_zyrannosaurus", + "volume": "540 L", + "weight": "540 kg", + "hp": 120, + "speed": 80, + "attack_cost": 80, + "melee_skill": 3, + "melee_dice": 2, + "melee_dice_sides": 2, + "melee_damage": [ { "damage_type": "cut", "amount": 2 } ], + "armor_bash": 4, + "armor_cut": 5, + "armor_bullet": 2, + "families": [ "prof_intro_biology", "prof_wp_zombie", "prof_biochemistry" ], + "weakpoint_sets": [ "wps_dinosaur_body" ], + "description": "This zombie is enormous, scaly, and studded with bony spikes. Sticky yellow fluid oozes out from sores in the scales.", + "burn_into": "mon_zeratosaurus_scorched", + "fungalize_into": "mon_zeratosaurus_fungus", + "death_function": { "message": "The %s's body leaks acid.", "effect": { "id": "death_acid", "hit_self": true } }, + "flags": [ + "SEES", + "SMELLS", + "HEARS", + "BASHES", + "GROUP_BASH", + "POISON", + "STUMBLES", + "ACIDPROOF", + "ACID_BLOOD", + "NO_BREATHE", + "REVIVES", + "FILTHY", + "PUSH_MON", + "WARM", + "SWIMS", + "RANGED_ATTACKER" + ] } ]