Skip to content

Commit f741f43

Browse files
authored
[MoM] Fixes Hounds of Tindalos following you when teleporting mechanic (#79456)
* Add dilated_gateway power to tindalos follow eoc * Forgot comma * Add tindrift to adjacent NPCs when using gateways
1 parent 360fe2c commit f741f43

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

data/mods/MindOverMatter/effectoncondition/eoc_on_power_use_events.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,12 @@
763763
"condition": {
764764
"and": [
765765
{ "u_has_trait": "TELEPORTER" },
766-
{ "compare_string": [ "teleport_gateway", { "context_val": "spell" } ] },
766+
{
767+
"or": [
768+
{ "compare_string": [ "teleport_gateway", { "context_val": "spell" } ] },
769+
{ "compare_string": [ "teleport_dilated_gateway", { "context_val": "spell" } ] }
770+
]
771+
},
767772
{ "math": [ "u_monsters_nearby('mon_hound_tindalos', 'radius': 50) > 0" ] },
768773
{ "not": { "u_has_flag": "TEEPSHIELD" } }
769774
]
@@ -779,7 +784,13 @@
779784
"u_message": "As you come out of the darkness and the cold of the teleport, you feel the prickling sensation of watching eyes and see wisps of swirling fog in the corners of your vision. They're still on your trail.",
780785
"type": "bad"
781786
},
782-
{ "u_add_effect": "tindrift", "duration": "1 day" }
787+
{ "u_add_effect": "tindrift", "duration": "1 day" },
788+
{ "u_run_npc_eocs": [ "EOC_TELEPORTER_THE_HOUNDS_FOLLOW_GATEWAY_3" ], "npc_range": 1, "local": true }
783789
]
790+
},
791+
{
792+
"type": "effect_on_condition",
793+
"id": "EOC_TELEPORTER_THE_HOUNDS_FOLLOW_GATEWAY_3",
794+
"effect": [ { "u_add_effect": "tindrift", "duration": "1 day" } ]
784795
}
785796
]

0 commit comments

Comments
 (0)