Skip to content

Commit

Permalink
Merge pull request #77079 from b3brodie/afs_elec_fix
Browse files Browse the repository at this point in the history
[Aftershock] Fix electron overflow energy cost
  • Loading branch information
Maleclypse authored Oct 16, 2024
2 parents cedcc92 + 11bcdf7 commit 9ebe91d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/mods/Aftershock/spells/psionics/electrokinesis.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@
"energy_source": "STAMINA",
"base_energy_cost": {
"math": [
"u_effect_intensity('effect_electrokin_personal_battery') > 0 ? 0 : max((6500 - (u_spell_level('afs_electrokinetic_personal_battery') * 150)), 3500)"
"u_effect_intensity('effect_afs_electrokin_personal_battery') > 0 ? 0 : max((6500 - (u_spell_level('afs_electrokinetic_personal_battery') * 150)), 3500)"
]
},
"base_casting_time": {
"math": [
"u_effect_intensity('effect_electrokin_personal_battery') > 0 ? 10 : max((350 -(u_spell_level('afs_electrokinetic_personal_battery') * 9)), 150)"
"u_effect_intensity('effect_afs_electrokin_personal_battery') > 0 ? 10 : max((350 -(u_spell_level('afs_electrokinetic_personal_battery') * 9)), 150)"
]
}
},
Expand Down

0 comments on commit 9ebe91d

Please sign in to comment.