Allow configuring a few more game mechanics
- stamina recovery speed - fatalis recovery time - course stamina cost
This commit is contained in:
parent
a15d9c95f5
commit
d3a9651620
2 changed files with 6 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue