diff --git a/assets/.maay/control.json b/assets/.maay/control.json index 05c138be..528498a9 100644 --- a/assets/.maay/control.json +++ b/assets/.maay/control.json @@ -371,7 +371,7 @@ }, { "name": "活动:洞穴的囚徒 证明启示 05(活动已结束)", - "task": "dummyThePrisonerintheCave", + "task": "ThePrisonerintheCave", "option": [ "combat_times", "all_in", diff --git a/source/cli/main.cpp b/source/cli/main.cpp index 88713989..93657363 100644 --- a/source/cli/main.cpp +++ b/source/cli/main.cpp @@ -271,6 +271,14 @@ json::value combat_param(int index) difficulty = "dummyStageDifficulty_None"; times = "1"; break; + + case 21: + //"21. 活动:复兴乌卢鲁运动会 13 艰难\n" + chapter = "RevivalTheUluruGames"; + stage = "13"; + difficulty = "ActivityStageDifficulty"; + times = "1"; + break; } return param; @@ -380,7 +388,8 @@ bool proc_argv(int argc, char** argv, bool& debug, std::string& adb, std::string "17. 荒兽之野 06(洞悉 兽)\n" "18. 活动:绿湖噩梦 17 艰难(活动已结束)\n" "19. 活动:行至摩卢旁卡 16 艰难(活动已结束)\n" - "20. 活动:洞穴的囚徒 证明启示 05(活动已结束)\n") + "20. 活动:洞穴的囚徒 证明启示 05(活动已结束)\n" + "21. 活动:复兴乌卢鲁运动会 13 艰难\n") << std::endl << std::endl << utf8_to_crt("请输入要执行的任务序号,可自定义顺序,以空格分隔,例如 1 2 4 12 3: ") << std::endl; @@ -450,6 +459,11 @@ bool proc_argv(int argc, char** argv, bool& debug, std::string& adb, std::string task_obj.param = combat_param(id); break; + case 21: + task_obj.type = "RevivalTheUluruGames"; + task_obj.param = combat_param(id); + break; + default: std::cout << "Unknown task: " << id << std::endl; return false;