From 7b4d952bb844cbd0b94b92a3f79819d2cf834454 Mon Sep 17 00:00:00 2001 From: "Standing-StormStanding-Storm git config --global user.name Standing-Storm git config --global user.name Standing-Storm" Date: Sun, 12 May 2024 16:17:25 -0500 Subject: [PATCH] Initial commit --- data/mods/MindOverMatter/PowerDescriptionSpoilers.md | 2 +- data/mods/MindOverMatter/effects/effects_psionic.json | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/data/mods/MindOverMatter/PowerDescriptionSpoilers.md b/data/mods/MindOverMatter/PowerDescriptionSpoilers.md index daea818fd97c8..f11a6a92ea01e 100644 --- a/data/mods/MindOverMatter/PowerDescriptionSpoilers.md +++ b/data/mods/MindOverMatter/PowerDescriptionSpoilers.md @@ -229,7 +229,7 @@ This is natural painkiller and so has natural effects (reduces speed slightly) *Stamina Cost*: 5500, minus 145 per level to a minimum of 2750
*Channeling Time*: 150 moves, minus 9 moves per level to a minimum of 70
-*Effects*: Gaze a short time into the future to predict enemy movements. Grants +1 bonus dodge and block, +1 addition bonus dodge and block per 6 power levels, prevents the psion from being grabbed, and applies the UNCANNY_DODGE flag.
+*Effects*: Gaze a short time into the future to predict enemy movements. Grants a 25% chance to avoid any damage from an attack plus 1.5% per power level to a maximum of a 70% chance, prevents the psion from being grabbed, and applies the HARDTOHIT flag. It also increases your effective dodge skill by 1 per 2 power levels.
*Prerequisites*: Premonition 10 *or* Speed Reader 10 *or* Discern Weakness 6, Clairyovance 6
## Intuitive Artisan (C) diff --git a/data/mods/MindOverMatter/effects/effects_psionic.json b/data/mods/MindOverMatter/effects/effects_psionic.json index b437c57faad50..b5f677d785e5e 100644 --- a/data/mods/MindOverMatter/effects/effects_psionic.json +++ b/data/mods/MindOverMatter/effects/effects_psionic.json @@ -766,25 +766,25 @@ { "values": [ { - "value": "BONUS_DODGE", + "value": "EVASION", "add": { "math": [ - "(1 + ( u_spell_level('clair_dodge_power') / 6) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling" + "min(((0.25 + ( u_spell_level('clair_dodge_power') * 0.015) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling), 0.7)" ] } }, { - "value": "BONUS_BLOCK", + "value": "DODGE_CHANCE", "add": { "math": [ - "(1 + ( u_spell_level('clair_dodge_power') / 6) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling" + "min((( ( u_spell_level('clair_dodge_power') * 0.5) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling), 10)" ] } } ] } ], - "flags": [ "UNCANNY_DODGE" ] + "flags": [ "HARDTOHIT" ] }, { "type": "effect_type",