Skip to content

Commit

Permalink
[MoM] Update Metabolic Hyperefficiency (#72006)
Browse files Browse the repository at this point in the history
* Initial commit

* Updates
  • Loading branch information
Standing-Storm authored Feb 27, 2024
1 parent 2f576bd commit 2a3b797
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 @@ -120,7 +120,7 @@ This is natural painkiller and so has natural effects (reduces speed slightly)<b
*Duration*: 45 minutes to 112 minutes and 30 seconds, plus 4 minutes 10 seconds to 8 minutes 20 seconds per level<br />
*Stamina Cost*: 8000, minus 250 per level to a minimum of 4000<br />
*Channeling Time*: 250 moves, minus 13 moves per level to a minimum of 50<br />
*Effects*: Greatly increases the psion’s metabolic efficiency. Hunger, thirst, fatigue grow 25% more slowly and the basal metabolic rate is reduced by 25%. All of these bonuses increase by 2% per level to a maximum of 70% increase.<br />
*Effects*: Greatly increases the psion’s metabolic efficiency. fatigue grows 25% more slowly and the basal metabolic rate is reduced by 10%. The fatigue reduction increase by 2% per level to a maximum of 70% increase, and the reduction to metabolic rate increases by 1% per level to a maximum of 40%. In the addition, the psion can extract more calories and vitmins from food, gain 33% more of each plus 7% per power level, to a maximum of 4x the base caloric and vitamin content. This applies to all vitamins, including harmful ones.<br />
*Prerequisites*: Temperature Adaptability 8, Adrenaline Trigger 6 *or* Physical Enhancement 12<br />

## Combat Dance
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 @@ -375,26 +375,26 @@
{
"values": [
{
"value": "HUNGER",
"value": "KCAL",
"multiply": {
"math": [
"max((( -0.25 + ( u_spell_level('biokin_metabolism_enhance') * -0.02 ) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling), -0.7)"
"min((( 0.33 + ( u_spell_level('biokin_metabolism_enhance') * 0.07 ) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling), 3)"
]
}
},
{
"value": "THIRST",
"value": "VITAMIN_ABSORB_MOD",
"multiply": {
"math": [
"max((( -0.25 + ( u_spell_level('biokin_metabolism_enhance') * -0.02 ) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling), -0.7)"
"min((( 0.33 + ( u_spell_level('biokin_metabolism_enhance') * 0.07 ) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling), 3)"
]
}
},
{
"value": "METABOLISM",
"multiply": {
"math": [
"max((( -0.25 + ( u_spell_level('biokin_metabolism_enhance') * -0.02 ) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling), -0.7)"
"max((( -0.10 + ( u_spell_level('biokin_metabolism_enhance') * -0.01 ) * (scaling_factor(u_val('intelligence') ) ) ) * u_nether_attunement_power_scaling), -0.4)"
]
}
},
Expand Down

0 comments on commit 2a3b797

Please sign in to comment.