Skip to content

Commit

Permalink
[DinoMod] acid dinos (#58882)
Browse files Browse the repository at this point in the history
* [DinoMod] acid zombies

* upgrade
  • Loading branch information
LyleSY authored Jul 2, 2022
1 parent fb69d30 commit 4951f07
Show file tree
Hide file tree
Showing 2 changed files with 116 additions and 4 deletions.
10 changes: 6 additions & 4 deletions data/mods/DinoMod/monstergroups/zinosaur.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,19 @@
"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 }
]
},
{
"type": "monstergroup",
"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 }
]
},
{
Expand Down
110 changes: 110 additions & 0 deletions data/mods/DinoMod/monsters/zinosaur_upgrade.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
]

0 comments on commit 4951f07

Please sign in to comment.