1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 09:48:20 +08:00

Add: Gems farming config

This commit is contained in:
LmeSzinc
2021-07-10 10:49:09 +08:00
parent 292c5d12be
commit b3f70b3cb6
2 changed files with 12 additions and 1 deletions

View File

@@ -129,7 +129,7 @@ class AzurLaneConfig:
"""
gems_farming
"""
GEMS_STAGE = 'A3'
GEMS_STAGE = '2-4'
GEMS_FLEET_1 = 3
GEMS_FLEET_2 = 5
@@ -811,6 +811,12 @@ class AzurLaneConfig:
self.C124_NON_S3_WITHDRAW_TOLERANCE = int(option['non_s3_enemy_withdraw_tolerance'])
self.C124_AMMO_PICK_UP = int(option['ammo_pick_up_124'])
# Gems_farming
option = config['Gems_farming']
self.GEMS_STAGE = option['gems_stage']
self.GEMS_FLEET_1 = int(option['gems_fleet_1'])
self.GEMS_FLEET_2 = int(option['gems_fleet_2'])
# OS semi auto
option = config['Os_semi_auto']
self.ENABLE_OS_SEMI_STORY_SKIP = to_bool(option['enable_os_semi_story_skip'])