-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MoM] Jmathify and variable-ize power learning times (#73529)
* Initial commit * Reduce insight proficiency learning time * Implement variables for biokinesis * Clair + Electro + Photo * Pyro + telekin + telepathy * Didn't commit the Teleportation/Vitakinesis changes, oops
- Loading branch information
1 parent
3bb1d34
commit 08a8580
Showing
14 changed files
with
611 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[ | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_MOM_GAMELOAD_POWER_LEARNING_VARIABLES_UPDATER", | ||
"eoc_type": "EVENT", | ||
"required_event": "game_load", | ||
"condition": { "math": [ "global_updated_power_learning_variables", "!=", "1" ] }, | ||
"effect": [ | ||
{ "math": [ "global_insight_power_learning_time_low", "=", "43200" ] }, | ||
{ "math": [ "global_insight_power_learning_time_high", "=", "604800" ] }, | ||
{ "math": [ "global_tier_one_power_learning_time_low", "=", "43200" ] }, | ||
{ "math": [ "global_tier_one_power_learning_time_high", "=", "86400" ] }, | ||
{ "math": [ "global_tier_two_power_learning_time_low", "=", "129600" ] }, | ||
{ "math": [ "global_tier_two_power_learning_time_high", "=", "259200" ] }, | ||
{ "math": [ "global_tier_three_power_learning_time_low", "=", "345600" ] }, | ||
{ "math": [ "global_tier_three_power_learning_time_high", "=", "604800" ] }, | ||
{ "math": [ "global_updated_power_learning_variables", "=", "1" ] } | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.