Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Zombie type: Tearjerker #61523

Merged
merged 4 commits into from
Oct 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions data/json/emit.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,14 @@
"intensity": 3,
"chance": 15
},
{
"id": "emit_tear_gas_leak",
"type": "emit",
"//": "Periodic leaking of tear gas",
"field": "fd_tear_gas",
"intensity": 3,
"chance": 15
},
{
"id": "emit_tindalos_gas_leak",
"type": "emit",
Expand Down
1 change: 1 addition & 0 deletions data/json/monstergroups/zombie_upgrades.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@
{ "monster": "mon_zombie_necro_boomer", "weight": 25 },
{ "monster": "mon_zombie_gasbag", "weight": 310 },
{ "monster": "mon_boomer_claymore", "weight": 50 },
{ "monster": "mon_zombie_tear_gasbag", "weight": 50 },
{ "monster": "mon_zombie_relax_gasbag", "weight": 50 }
]
},
Expand Down
32 changes: 32 additions & 0 deletions data/json/monsters/zed_explosive.json
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,38 @@
"fungalize_into": "mon_zombie_gasbag_fungus",
"flags": [ "SEES", "HEARS", "SMELLS", "STUMBLES", "WARM", "NO_BREATHE", "REVIVES", "FILTHY" ]
},
{
"id": "mon_zombie_tear_gasbag",
"type": "MONSTER",
"name": { "str": "swollen tearjerker" },
"description": "A bloated corpse, its ballooning skin blistered and rashy and its face caked in mucus. The off-colour orange gas that occasionally leaks from it makes your eyes water and smells faintly of pepper.",
"default_faction": "zombie",
"bodytype": "human",
"species": [ "ZOMBIE", "HUMAN" ],
"diff": 9,
"volume": "62500 ml",
"weight": "81500 g",
"hp": 45,
"speed": 60,
"material": [ "flesh" ],
"symbol": "Z",
"color": "yellow",
"aggression": 100,
"morale": 100,
"melee_skill": 2,
"melee_dice": 2,
"melee_dice_sides": 4,
"melee_damage": [ { "damage_type": "cut", "amount": 0 } ],
"armor_elec": 1,
"vision_night": 2,
"harvest": "exempt",
"emit_fields": [ { "emit_id": "emit_tear_gas_leak", "delay": "1 s" } ],
"special_attacks": [ [ "SUICIDE", 20 ], [ "scratch", 15 ] ],
"death_drops": "default_zombie_items",
"death_function": { "message": "A %s explodes!", "effect": { "id": "death_tearburst", "hit_self": true }, "corpse_type": "NO_CORPSE" },
"fungalize_into": "mon_zombie_gasbag_fungus",
"flags": [ "SEES", "HEARS", "SMELLS", "STUMBLES", "WARM", "NO_BREATHE", "REVIVES", "FILTHY" ]
},
{
"id": "mon_boomer_glutton",
"type": "MONSTER",
Expand Down