Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Standing-Storm committed Apr 19, 2024
1 parent 5a2a82e commit 3522bfe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions data/mods/MindOverMatter/monsters/monster_eoc_spells.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"type": "SPELL",
"name": "[Ψ]Breaker end powers",
"description": "Breaker's power that ends concentration. It's a bug if you have it.",
"valid_targets": [ "self" ],
"valid_targets": [ "hostile" ],
"flags": [ "NO_PROJECTILE", "NO_EXPLOSION_SFX" ],
"effect": "effect_on_condition",
"effect_str": "EOC_NULL_BREAK_CONCENTRATION",
Expand Down Expand Up @@ -140,7 +140,7 @@
"x_in_y_chance": {
"x": {
"math": [
"5 - u_has_proficiency('prof_concentration_basic')) - (u_has_proficiency('prof_concentration_intermediate')) - (u_has_proficiency('prof_concentration_master')"
"5 - u_has_proficiency('prof_concentration_basic') - u_has_proficiency('prof_concentration_intermediate') - u_has_proficiency('prof_concentration_master')"
]
},
"y": 5
Expand All @@ -156,12 +156,12 @@
{ "math": [ "u_pain()", "+=", "1" ] }
]
}
],
"false_effect": [
{ "u_message": "Icy fingers crawl across your brain for a moment.", "type": "bad" },
{ "math": [ "u_pain()", "+=", "1" ] }
]
}
],
"false_effect": [
{ "u_message": "Icy fingers crawl across your brain for a moment.", "type": "bad" },
{ "math": [ "u_pain()", "+=", "1" ] }
]
}
]
Expand Down

0 comments on commit 3522bfe

Please sign in to comment.