Skip to content

Commit

Permalink
Slight tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
MNG-cataclysm committed Apr 3, 2024
1 parent 47a5dc6 commit d5bef15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions data/mods/Magiclysm/Spells/classless.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"energy_source": "MANA",
"base_energy_cost": { "math": [ "channeling_proficiency_negate_calculate(1000, 10)" ] },
"final_energy_cost": { "math": [ "channeling_proficiency_negate_calculate(1000, 10)" ] },
"base_casting_time": { "math": [ "channeling_proficiency_negate_calculate(600000, 2000)" ] },
"final_casting_time": { "math": [ "channeling_proficiency_negate_calculate(600000, 2000)" ] },
"base_casting_time": { "math": [ "channeling_proficiency_negate_calculate(600000, 4000)" ] },
"final_casting_time": { "math": [ "channeling_proficiency_negate_calculate(600000, 4000)" ] },
"extra_effects": [ { "id": "mana_fatigue" }, { "id": "eoc_channeling_setup" } ]
},
{
Expand Down
4 changes: 2 additions & 2 deletions data/mods/Magiclysm/jmath.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"type": "jmath_function",
"id": "channeling_proficiency_negate_calculate",
"num_args": 2,
"return": "_0 - ((((u_proficiency('prof_magic_channel_beginner', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_channel_apprentice', 'format': 'percent') * 1) / 10) - ((u_proficiency('prof_magic_channel_master', 'format': 'percent') * 1) / 10)) * _1 )"
"return": "_0 - (((((u_proficiency('prof_magic_channel_beginner', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_channel_apprentice', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_channel_master', 'format': 'percent') * 1) / 10))) * _1 )"
},
{
"type": "jmath_function",
"id": "channeling_proficiency_bonus_calculate",
"num_args": 2,
"return": "_0 + ((((u_proficiency('prof_magic_channel_beginner', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_channel_apprentice', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_channel_master', 'format': 'percent') * 1) / 10)) * _1 )"
"return": "_0 + (((((u_proficiency('prof_magic_channel_beginner', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_channel_apprentice', 'format': 'percent') * 1) / 10) + ((u_proficiency('prof_magic_channel_master', 'format': 'percent') * 1) / 10))) * _1 )"
},
{
"type": "jmath_function",
Expand Down

0 comments on commit d5bef15

Please sign in to comment.