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

Merge branch 'master' into dev

This commit is contained in:
LmeSzinc
2020-07-17 00:15:31 +08:00
17 changed files with 776 additions and 3 deletions

View File

@@ -321,7 +321,7 @@ def main(ini_name=''):
event = event_parser.add_argument_group(
'选择关卡', '\n'.join([line.strip() for line in description.strip().split('\n')]))
event.add_argument('--活动地图', default=default('--活动地图'),
choices=['a1', 'a2', 'a3', 'b1', 'b2', 'b3', 'c1', 'c2', 'c3', 'd1', 'd2', 'd3'],
choices=['a1', 'a2', 'a3', 'a4', 'b1', 'b2', 'b3', 'b4', 'c1', 'c2', 'c3', 'c4', 'd1', 'd2', 'd3', 'd4'],
help='例如 d3')
event.add_argument('--sp地图', default=default('--sp地图'),
choices=['sp1', 'sp2', 'sp3'],

View File

@@ -322,7 +322,7 @@ def main(ini_name=''):
event = event_parser.add_argument_group(
'Choose a level', '\n'.join([line.strip() for line in description.strip().split('\n')]))
event.add_argument('--event_stage', default=default('--event_stage'),
choices=['a1', 'a2', 'a3', 'b1', 'b2', 'b3', 'c1', 'c2', 'c3', 'd1', 'd2', 'd3'],
choices=['a1', 'a2', 'a3', 'a4', 'b1', 'b2', 'b3', 'b4', 'c1', 'c2', 'c3', 'c4', 'd1', 'd2', 'd3', 'd4'],
help='E.g d3')
event.add_argument('--sp_stage', default=default('--sp_stage'),
choices=['sp1', 'sp2', 'sp3'],

View File

@@ -322,7 +322,7 @@ def main(ini_name=''):
event = event_parser.add_argument_group(
'Choose a level', '\n'.join([line.strip() for line in description.strip().split('\n')]))
event.add_argument('--event_stage', default=default('--event_stage'),
choices=['a1', 'a2', 'a3', 'b1', 'b2', 'b3', 'c1', 'c2', 'c3', 'd1', 'd2', 'd3'],
choices=['a1', 'a2', 'a3', 'a4', 'b1', 'b2', 'b3', 'b4', 'c1', 'c2', 'c3', 'c4', 'd1', 'd2', 'd3', 'd4'],
help='E.g d3')
event.add_argument('--sp_stage', default=default('--sp_stage'),
choices=['sp1', 'sp2', 'sp3'],

View File

@@ -226,6 +226,7 @@ dic_true_eng_to_eng = {
'Skybound_Oratorio': 'event_20200611_en',
'Prelude_under_the_Moon': 'event_20200603_en',
'Air_Raid_Drills_with_Essex': 'raid_20200624',
'Ink_Stained_Steel_Sakura_Rerun': 'event_20200716_en',
}
dic_eng_to_true_eng = {v: k for k, v in dic_true_eng_to_eng.items()}