From df0ebb44b3613a2a8ecf4b4ee8f28091a28337e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=A8=E6=8B=89=E6=89=98=E5=8A=A0?= <151550168+Saratoga-Official@users.noreply.github.com> Date: Wed, 22 Oct 2025 15:34:53 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=95=8C=E5=9B=ADDLC=E6=96=B0=E5=85=B3?= =?UTF-8?q?=E5=8D=A1=E6=88=98=E6=96=97=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../JieGarden/autopilot/凭票入内.json | 56 +++++++++ .../JieGarden/autopilot/救援行动.json | 110 ++++++++++++++++++ .../JieGarden/autopilot/玩具兵将.json | 87 ++++++++++++++ .../roguelike/JieGarden/autopilot/驱虫.json | 56 +++++++++ 4 files changed, 309 insertions(+) create mode 100644 resource/roguelike/JieGarden/autopilot/凭票入内.json create mode 100644 resource/roguelike/JieGarden/autopilot/救援行动.json create mode 100644 resource/roguelike/JieGarden/autopilot/玩具兵将.json create mode 100644 resource/roguelike/JieGarden/autopilot/驱虫.json diff --git a/resource/roguelike/JieGarden/autopilot/凭票入内.json b/resource/roguelike/JieGarden/autopilot/凭票入内.json new file mode 100644 index 0000000000..8c81843437 --- /dev/null +++ b/resource/roguelike/JieGarden/autopilot/凭票入内.json @@ -0,0 +1,56 @@ +{ + "stage_name": "凭票入内", + "replacement_home": [ + { + "location": [4, 1], + "direction": "down" + } + ], + "deploy_plan": [ + { + "groups": ["召唤", "益达", "提丰", "焰苇", "高台输出"], + "location": [5, 3], + "direction": "down" + }, + { + "groups": ["鱼", "地面远程", "地面阻挡", "处决者", "回费", "其他地面"], + "location": [4, 2], + "direction": "down" + }, + { + "groups": ["鱼", "玛恩纳", "地面远程", "重装", "地面阻挡", "回费", "处决者", "其他地面"], + "location": [5, 2], + "direction": "left" + }, + { + "groups": ["单奶", "群奶", "益达", "提丰", "焰苇", "高台输出"], + "location": [4, 1], + "direction": "down" + }, + { + "groups": ["鱼"], + "location": [6, 2], + "direction": "down" + }, + { + "groups": ["高台输出"], + "location": [3, 3], + "direction": "down" + }, + { + "groups": ["补给站"], + "location": [3, 2], + "direction": "down" + }, + { + "groups": ["处决者", "鱼"], + "location": [4, 4], + "direction": "Right" + }, + { + "groups": ["处决者"], + "location": [5, 4], + "direction": "left" + } + ] +} diff --git a/resource/roguelike/JieGarden/autopilot/救援行动.json b/resource/roguelike/JieGarden/autopilot/救援行动.json new file mode 100644 index 0000000000..c5b18c8980 --- /dev/null +++ b/resource/roguelike/JieGarden/autopilot/救援行动.json @@ -0,0 +1,110 @@ +{ + "stage_name": "救援行动", + "replacement_home": [ + { + "location": [8, 2], + "direction": "left" + } + ], + "deploy_plan": [ + { + "groups": ["召唤"], + "location": [8, 5], + "direction": "left" + }, + { + "groups": ["鱼"], + "location": [5, 4], + "direction": "up" + }, + { + "groups": ["鱼"], + "location": [3, 4], + "direction": "left" + }, + { + "groups": ["益达", "提丰", "焰苇", "高台输出"], + "location": [7, 3], + "direction": "left" + }, + { + "groups": ["鱼"], + "location": [6, 1], + "direction": "left" + }, + { + "groups": ["鱼"], + "location": [8, 2], + "direction": "left" + }, + { + "groups": ["鱼"], + "location": [3, 5], + "direction": "left" + }, + { + "groups": ["地刺"], + "location": [2, 3], + "direction": "down" + }, + { + "groups": ["地面远程", "地面阻挡", "处决者", "回费", "其他地面"], + "location": [3, 4], + "direction": "left" + }, + { + "groups": ["玛恩纳", "地面远程", "重装", "地面阻挡", "回费", "处决者", "其他地面"], + "location": [3, 5], + "direction": "left" + }, + { + "groups": ["玛恩纳", "地面远程", "重装", "地面阻挡", "回费", "处决者", "其他地面"], + "location": [2, 3], + "direction": "down" + }, + { + "groups": ["单奶", "群奶", "益达", "提丰", "焰苇", "高台输出"], + "location": [3, 3], + "direction": "down" + }, + { + "groups": ["鱼"], + "location": [3, 2], + "direction": "left" + }, + { + "groups": ["高台输出"], + "location": [4, 3], + "direction": "up" + }, + { + "groups": ["补给站"], + "location": [8, 3], + "direction": "left" + }, + { + "groups": ["处决者"], + "location": [5, 2], + "direction": "down" + }, + { + "groups": ["处决者"], + "location": [5, 4], + "direction": "up" + } + ], + "retreat_plan": [ + { + "location": [5, 4], + "condition": [3, 5] + }, + { + "location": [6, 1], + "condition": [4, 6] + }, + { + "location": [8, 2], + "condition": [5, 7] + } + ] +} diff --git a/resource/roguelike/JieGarden/autopilot/玩具兵将.json b/resource/roguelike/JieGarden/autopilot/玩具兵将.json new file mode 100644 index 0000000000..665e6120ee --- /dev/null +++ b/resource/roguelike/JieGarden/autopilot/玩具兵将.json @@ -0,0 +1,87 @@ +{ + "stage_name": "玩具兵将", + "replacement_home": [ + { + "location": [5, 5], + "direction": "left" + } + ], + "deploy_plan": [ + { + "groups": ["召唤"], + "location": [6, 4], + "direction": "left" + }, + { + "groups": ["鱼"], + "location": [3, 3], + "direction": "left" + }, + { + "groups": ["鱼"], + "location": [5, 1], + "direction": "down" + }, + { + "groups": ["鱼"], + "location": [4, 1], + "direction": "left" + }, + { + "groups": ["益达", "提丰", "焰苇", "高台输出"], + "location": [4, 4], + "direction": "up" + }, + { + "groups": ["地面远程", "地面阻挡", "处决者", "回费", "其他地面"], + "location": [3, 5], + "direction": "up" + }, + { + "groups": ["玛恩纳", "地面远程", "重装", "地面阻挡", "回费", "处决者", "其他地面"], + "location": [4, 1], + "direction": "left" + }, + { + "groups": ["玛恩纳", "地面远程", "重装", "地面阻挡", "回费", "处决者", "其他地面"], + "location": [3, 3], + "direction": "left" + }, + { + "groups": ["单奶", "群奶"], + "location": [5, 3], + "direction": "up" + }, + { + "groups": ["鱼"], + "location": [5, 1], + "direction": "left" + }, + { + "groups": ["高台输出"], + "location": [4, 3], + "direction": "left" + }, + { + "groups": ["补给站"], + "location": [4, 5], + "direction": "up" + }, + { + "groups": ["处决者"], + "location": [2, 1], + "direction": "left" + }, + { + "groups": ["处决者"], + "location": [2, 3], + "direction": "left" + } + ], + "retreat_plan": [ + { + "location": [5, 1], + "condition": [5, 7] + } + ] +} diff --git a/resource/roguelike/JieGarden/autopilot/驱虫.json b/resource/roguelike/JieGarden/autopilot/驱虫.json new file mode 100644 index 0000000000..37de275eef --- /dev/null +++ b/resource/roguelike/JieGarden/autopilot/驱虫.json @@ -0,0 +1,56 @@ +{ + "stage_name": "驱虫", + "replacement_home": [ + { + "location": [5, 4], + "direction": "down" + } + ], + "deploy_plan": [ + { + "groups": ["召唤", "益达", "提丰", "焰苇", "高台输出"], + "location": [8, 5], + "direction": "left" + }, + { + "groups": ["鱼", "地面远程", "地面阻挡", "处决者", "回费", "其他地面"], + "location": [5, 4], + "direction": "down" + }, + { + "groups": ["鱼", "玛恩纳", "地面远程", "重装", "地面阻挡", "回费", "处决者", "其他地面"], + "location": [6, 5], + "direction": "left" + }, + { + "groups": ["单奶", "群奶", "益达", "提丰", "焰苇", "高台输出"], + "location": [8, 4], + "direction": "left" + }, + { + "groups": ["鱼"], + "location": [6, 3], + "direction": "up" + }, + { + "groups": ["高台输出"], + "location": [5, 2], + "direction": "down" + }, + { + "groups": ["补给站"], + "location": [6, 4], + "direction": "left" + }, + { + "groups": ["处决者", "鱼"], + "location": [7, 2], + "direction": "down" + }, + { + "groups": ["处决者"], + "location": [3, 4], + "direction": "down" + } + ] +}