Skip to content

Commit fca5e30

Browse files
Merge pull request #82782 from Standing-Storm/silent-one-channeling
[MoM] Silent Ones can detect active channeling too
1 parent 6a0fec9 commit fca5e30

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

data/mods/MindOverMatter/monsters/monster_eoc_spells.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,12 @@
685685
"condition": "u_is_character",
686686
"effect": [
687687
{
688-
"if": { "math": [ "u_vitamin('vitamin_maintained_powers') >= 1" ] },
688+
"if": {
689+
"or": [
690+
{ "math": [ "u_vitamin('vitamin_maintained_powers') >= 1" ] },
691+
{ "math": [ "u_nether_conduit_repeated_channeling_value >= 1" ] }
692+
]
693+
},
689694
"then": [
690695
{ "math": [ "n_val('anger')", "+=", "rand(5) + 1" ] },
691696
{
@@ -742,7 +747,12 @@
742747
"condition": "u_is_character",
743748
"effect": [
744749
{
745-
"if": { "math": [ "u_vitamin('vitamin_maintained_powers') >= 1" ] },
750+
"if": {
751+
"or": [
752+
{ "math": [ "u_vitamin('vitamin_maintained_powers') >= 1" ] },
753+
{ "math": [ "u_nether_conduit_repeated_channeling_value >= 1" ] }
754+
]
755+
},
746756
"then": [
747757
{ "math": [ "n_val('anger')", "+=", "rand(10) + 2" ] },
748758
{ "u_message": "A chill aura emanates from the silent one.", "type": "bad" }

0 commit comments

Comments
 (0)