Skip to content

Commit 5bbdb08

Browse files
[MoM] Add the king of the wood (Telepathic deer) (#82918)
* Initial commit * Fixes * princes of the wood can spawn too
1 parent d01ba04 commit 5bbdb08

File tree

4 files changed

+59
-0
lines changed

4 files changed

+59
-0
lines changed

data/mods/MindOverMatter/monstergroups/monstergroups_edited.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,15 @@
229229
"type": "monstergroup",
230230
"monsters": [ { "monster": "mon_bandersnatch", "weight": 20, "starts": "8 days", "cost_multiplier": 5 } ]
231231
},
232+
{
233+
"id": "GROUP_DEERS",
234+
"type": "monstergroup",
235+
"monsters": [
236+
{ "monster": "mon_fear_deer", "weight": 20, "starts": "8 days", "cost_multiplier": 2 },
237+
{ "monster": "mon_fear_deer_fawn", "weight": 5, "cost_multiplier": 2 },
238+
{ "monster": "mon_fear_deer_fawn", "weight": 10, "starts": "360 days", "cost_multiplier": 2 }
239+
]
240+
},
232241
{
233242
"type": "monstergroup",
234243
"id": "GROUP_CAVE",

data/mods/MindOverMatter/monstergroups/monstergroups_new.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,11 @@
309309
"type": "monstergroup",
310310
"monsters": [ { "monster": "mon_dog_pup", "weight": 80 }, { "monster": "mon_hellhound_pup", "weight": 20 } ]
311311
},
312+
{
313+
"id": "GROUP_REPRODUCTION_FEAR_DEER_BABIES",
314+
"type": "monstergroup",
315+
"monsters": [ { "monster": "mon_deer_fawn", "weight": 80 }, { "monster": "mon_fear_deer_fawn", "weight": 20 } ]
316+
},
312317
{
313318
"id": "GROUP_EGG_COCKATRICE",
314319
"type": "monstergroup",

data/mods/MindOverMatter/monsters/animal_psychics.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,5 +498,49 @@
498498
"melee_damage": [ { "damage_type": "cut", "amount": 1 }, { "damage_type": "heat", "amount": 3 } ],
499499
"upgrades": { "age_grow": 42, "into": "mon_hellhound" },
500500
"armor": { "heat": 50 }
501+
},
502+
{
503+
"id": "mon_fear_deer",
504+
"copy-from": "mon_deer",
505+
"type": "MONSTER",
506+
"looks_like": "mon_deer",
507+
"name": { "str": "king of the wood" },
508+
"description": "The northern woodland white-tailed deer, a quick and strong grazing animal. Favored prey of coyotes, wolves, and giant spider mutants. This one has an almost regal aura of calm about it and gazes at the forest around it without fear.",
509+
"reproduction": { "baby_type": { "baby_monster_group": "GROUP_REPRODUCTION_FEAR_DEER_BABIES" }, "baby_count": 1, "baby_timer": 330 },
510+
"tracking_distance": 9,
511+
"aggression": -10,
512+
"anger_triggers": [ "PLAYER_NEAR_BABY", "PLAYER_WEAK", "FRIEND_ATTACKED", "FRIEND_DIED" ],
513+
"extend": {
514+
"special_attacks": [
515+
{
516+
"id": "psi_fear_deer_terror_attack",
517+
"type": "spell",
518+
"spell_data": { "id": "telepathic_fear_blast_monster", "min_level": 5 },
519+
"cooldown": { "math": [ "9 + rand(18)" ] },
520+
"condition": { "not": { "u_has_flag": "NO_PSIONICS" } },
521+
"monster_message": "%1$s turns its head sideways and looks directly at %3$s."
522+
},
523+
{
524+
"id": "psi_fear_deer_empower_herd",
525+
"type": "spell",
526+
"spell_data": { "id": "telepathic_network_monster", "min_level": 5 },
527+
"cooldown": 50,
528+
"condition": { "not": { "u_has_flag": "NO_PSIONICS" } },
529+
"monster_message": "%1$s raises its head with an air of authority."
530+
}
531+
],
532+
"flags": [ "TEEP_IMMUNE", "KEEP_DISTANCE" ]
533+
}
534+
},
535+
{
536+
"id": "mon_fear_deer_fawn",
537+
"copy-from": "mon_deer_fawn",
538+
"type": "MONSTER",
539+
"looks_like": "mon_deer_fawn",
540+
"name": { "str": "prince of the wood" },
541+
"description": "A juvenile northern woodland white-tailed deer, a quick and strong grazing animal. Favored prey of coyotes, wolves, and giant spider mutants. This one doesn't seem as skittish as most deer are.",
542+
"melee_damage": [ { "damage_type": "cut", "amount": 1 }, { "damage_type": "heat", "amount": 3 } ],
543+
"upgrades": { "age_grow": 330, "into": "mon_fear_deer" },
544+
"extend": { "flags": [ "TEEP_IMMUNE" ] }
501545
}
502546
]

data/mods/MindOverMatter/monsters/monsters_spells.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1011,6 +1011,7 @@
10111011
"damage_type": "psi_telepathic_damage",
10121012
"min_damage": 1,
10131013
"max_damage": 1,
1014+
"affected_body_parts": [ "head" ],
10141015
"extra_effects": [
10151016
{ "id": "telepathic_blast_monster", "hit_self": false, "max_level": 20 },
10161017
{ "id": "telepathic_horror_monster", "hit_self": false, "max_level": 20 }

0 commit comments

Comments
 (0)