Skip to content

Commit

Permalink
Merge pull request #73727 from Standing-Storm/combat-sense
Browse files Browse the repository at this point in the history
[MoM] Rework Combat Sense with modern enchants
  • Loading branch information
Maleclypse committed May 13, 2024
2 parents 3a16ecf + 7b4d952 commit aa7dd5c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion data/mods/MindOverMatter/PowerDescriptionSpoilers.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ This is natural painkiller and so has natural effects (reduces speed slightly)<b
*Duration*: 2 minutes to 7 minutes and 30 seconds, plus 9 seconds to 17 seconds per level<br />
*Stamina Cost*: 5500, minus 145 per level to a minimum of 2750<br />
*Channeling Time*: 150 moves, minus 9 moves per level to a minimum of 70<br />
*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.<br />
*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.<br />
*Prerequisites*: Premonition 10 *or* Speed Reader 10 *or* Discern Weakness 6, Clairyovance 6<br />

## Intuitive Artisan (C)
Expand Down
10 changes: 5 additions & 5 deletions data/mods/MindOverMatter/effects/effects_psionic.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit aa7dd5c

Please sign in to comment.