1
Fork 0

Allow configuring a few more game mechanics

- stamina recovery speed
- fatalis recovery time
- course stamina cost
This commit is contained in:
prescientmoon 2025-02-09 14:59:19 +01:00
commit d3a9651620
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U
2 changed files with 6 additions and 3 deletions

View file

@ -77,6 +77,9 @@ class Config:
WORLD_SCENERY_FULL_UNLOCK = True
SAVE_FULL_UNLOCK = False
STAMINA_RECOVER_TICK = 1800000
SKILL_FATALIS_WORLD_LOCKED_TIME = 3600000
COURSE_STAMINA_COST = 4
ALLOW_SELF_ACCOUNT_DELETE = False

View file

@ -11,10 +11,10 @@ class Constant:
MAX_STAMINA = 12
STAMINA_RECOVER_TICK = 1800000
STAMINA_RECOVER_TICK = Config.STAMINA_RECOVER_TICK
FRAGSTAM_RECOVER_TICK = 23 * 3600 * 1000
COURSE_STAMINA_COST = 4
COURSE_STAMINA_COST = Config.COURSE_STAMINA_COST
CORE_EXP = 250
@ -29,7 +29,7 @@ class Constant:
ETO_UNCAP_BONUS_PROGRESS = 7
LUNA_UNCAP_BONUS_PROGRESS = 7
AYU_UNCAP_BONUS_PROGRESS = 5
SKILL_FATALIS_WORLD_LOCKED_TIME = 3600000
SKILL_FATALIS_WORLD_LOCKED_TIME = Config.SKILL_FATALIS_WORLD_LOCKED_TIME
SKILL_MIKA_SONGS = ['aprilshowers', 'seventhsense', 'oshamascramble', 'breakbreak', 'straightintolights', 'virtus', 'yomibitoshirazu',
'amazingmightyyyy', 'cycles', 'maxrage', 'infinity', 'temptation']
FATALIS_MAX_VALUE = 100