mirror of
https://github.com/babalae/bettergi-scripts-list.git
synced 2026-03-15 03:23:22 +08:00
js:锄地一条龙1.21.1 (#2759)
* js:锄地一条龙1.21.1 1.调整忽略精英逻辑 2.优化日志输出 * js:锄地一条龙1.21.2 应用打标完成的锄地 #2739 * 重整路线文件结构 * Delete 52092枫丹露景泉东.json
This commit is contained in:
@@ -78,7 +78,7 @@ let lastEatBuff = 0;
|
||||
disableSelfOptimization: settings.disableSelfOptimization ?? false,
|
||||
eEfficiencyIndex: settings.eEfficiencyIndex ?? 2.5,
|
||||
mEfficiencyIndex: settings.mEfficiencyIndex ?? 0.5,
|
||||
ignoreFactor: settings.ignoreFactor ?? 0,
|
||||
ignoreRate: settings.ignoreRate ?? 0,
|
||||
targetEliteNum: settings.targetEliteNum ?? 400,
|
||||
targetMonsterNum: settings.targetMonsterNum ?? 2000,
|
||||
priorityTags: settings.priorityTags ?? "",
|
||||
@@ -117,7 +117,7 @@ let lastEatBuff = 0;
|
||||
settings.disableSelfOptimization = cfg.disableSelfOptimization ?? false;
|
||||
settings.eEfficiencyIndex = cfg.eEfficiencyIndex ?? 2.5;
|
||||
settings.mEfficiencyIndex = cfg.mEfficiencyIndex ?? 0.5;
|
||||
settings.ignoreFactor = cfg.ignoreFactor ?? 0;
|
||||
settings.ignoreRate = cfg.ignoreRate ?? 0;
|
||||
settings.targetEliteNum = cfg.targetEliteNum ?? 400;
|
||||
settings.targetMonsterNum = cfg.targetMonsterNum ?? 2000;
|
||||
settings.priorityTags = cfg.priorityTags ?? "";
|
||||
@@ -217,6 +217,35 @@ let lastEatBuff = 0;
|
||||
|
||||
//根据操作模式选择不同的处理方式
|
||||
if (operationMode === "调试路线分配") {
|
||||
|
||||
/* ===== 新增:各组信息一览(只列有路线的组) ===== */
|
||||
const groupNames = ['路径组一', '路径组二', '路径组三', '路径组四', '路径组五',
|
||||
'路径组六', '路径组七', '路径组八', '路径组九', '路径组十'];
|
||||
for (let g = 1; g <= 10; g++) {
|
||||
const groupPath = pathings.filter(p => p.group === g && p.selected);
|
||||
if (groupPath.length === 0) continue; // 跳过空组
|
||||
let elites = 0,
|
||||
monsters = 0,
|
||||
gain = 0,
|
||||
time = 0;
|
||||
for (const p of groupPath) {
|
||||
elites += p.e || 0;
|
||||
monsters += p.m || 0;
|
||||
gain += p.G1 || 0;
|
||||
time += p.t || 0;
|
||||
}
|
||||
const h = Math.floor(time / 3600);
|
||||
const m = Math.floor((time % 3600) / 60);
|
||||
const s = time % 60;
|
||||
log.info(`${groupNames[g - 1]} 总计:`);
|
||||
log.info(` 路线条数: ${groupPath.length}`);
|
||||
log.info(` 精英怪数: ${elites.toFixed(0)}`);
|
||||
log.info(` 小怪数 : ${monsters.toFixed(0)}`);
|
||||
log.info(` 预计收益: ${gain.toFixed(0)} 摩拉`);
|
||||
log.info(` 预计用时: ${h} 时 ${m} 分 ${s.toFixed(0)} 秒`);
|
||||
}
|
||||
/* =================================================== */
|
||||
|
||||
log.info("开始复制并输出地图追踪文件\n请前往js文件夹查看");
|
||||
await copyPathingsByGroup(pathings);
|
||||
await updateRecords(pathings, accountName);
|
||||
@@ -378,19 +407,18 @@ async function processPathings(groupTags) {
|
||||
}
|
||||
}
|
||||
|
||||
// ===== 根据 settings.ignoreFactor 过滤 =====
|
||||
const ignoreFactor = Number(settings.ignoreFactor);
|
||||
if (Number.isInteger(ignoreFactor) && ignoreFactor > 0) {
|
||||
// 新增保护标签
|
||||
// ===== 根据 settings.ignoreRate 过滤 =====
|
||||
const ignoreRate = Number(settings.ignoreRate) || 100;
|
||||
if (Number.isInteger(ignoreRate) && ignoreRate > 0) {
|
||||
const protectTags = ['精英高收益', '高危', '传奇'];
|
||||
const hasProtectTag = protectTags.some(tag => pathing.tags.includes(tag));
|
||||
|
||||
if (!hasProtectTag && // 不含保护标签
|
||||
pathing.e <= ignoreFactor && // 精英数达标
|
||||
pathing.m >= 5 * pathing.e) { // 普通数足够
|
||||
// 清零
|
||||
pathing.e = 0;
|
||||
pathing.mora_e = 0;
|
||||
if (!hasProtectTag && pathing.e > 0) { // ① 先保证有精英
|
||||
const ratio = pathing.m / pathing.e; // ② 再计算比例(e 已 > 0)
|
||||
if (ratio >= ignoreRate) { // ③ 比例达标才清零
|
||||
pathing.e = 0;
|
||||
pathing.mora_e = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1572,6 +1600,17 @@ async function processPathingsByGroup(pathings, accountName) {
|
||||
} catch (error) {
|
||||
break;
|
||||
}
|
||||
const pathTime = new Date() - now;
|
||||
pathing.records = [...pathing.records, pathTime / 1000].slice(-7);
|
||||
|
||||
remainingEstimatedTime -= pathing.t;
|
||||
const actualUsedTime = (new Date() - groupStartTime) / 1000;
|
||||
const predictRemainingTime = remainingEstimatedTime * actualUsedTime / (totalEstimatedTime - remainingEstimatedTime - skippedTime);
|
||||
// 将预计剩余时间转换为时、分、秒表示
|
||||
const remaininghours = Math.floor(predictRemainingTime / 3600);
|
||||
const remainingminutes = Math.floor((predictRemainingTime % 3600) / 60);
|
||||
const remainingseconds = predictRemainingTime % 60;
|
||||
log.info(`当前进度:第 ${targetGroup} 组第 ${groupPathCount}/${totalPathsInGroup} 个 ${pathing.fileName}已完成,该组预计剩余: ${remaininghours} 时 ${remainingminutes} 分 ${remainingseconds.toFixed(0)} 秒`);
|
||||
|
||||
let fileEndX = 0, fileEndY = 0;
|
||||
try {
|
||||
@@ -1635,18 +1674,6 @@ async function processPathingsByGroup(pathings, accountName) {
|
||||
pathing.cdTime = newCDTime.toLocaleString();
|
||||
if (!localeWorks) pathing.cdTime = newCDTime.toISOString();
|
||||
|
||||
const pathTime = new Date() - now;
|
||||
pathing.records = [...pathing.records, pathTime / 1000].slice(-7);
|
||||
|
||||
remainingEstimatedTime -= pathing.t;
|
||||
const actualUsedTime = (new Date() - groupStartTime) / 1000;
|
||||
const predictRemainingTime = remainingEstimatedTime * actualUsedTime / (totalEstimatedTime - remainingEstimatedTime - skippedTime);
|
||||
// 将预计剩余时间转换为时、分、秒表示
|
||||
const remaininghours = Math.floor(predictRemainingTime / 3600);
|
||||
const remainingminutes = Math.floor((predictRemainingTime % 3600) / 60);
|
||||
const remainingseconds = predictRemainingTime % 60;
|
||||
log.info(`当前进度:第 ${targetGroup} 组第 ${groupPathCount}/${totalPathsInGroup} 个 ${pathing.fileName}已完成,该组预计剩余: ${remaininghours} 时 ${remainingminutes} 分 ${remainingseconds.toFixed(0)} 秒`);
|
||||
|
||||
await updateRecords(pathings, accountName);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"manifest_version": 1,
|
||||
"name": "锄地一条龙",
|
||||
"version": "1.21.0",
|
||||
"version": "1.21.2",
|
||||
"description": "一站式解决自动化锄地,支持只拾取狗粮,请仔细阅读README.md后使用",
|
||||
"authors": [
|
||||
{
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "思"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时139.76秒,包含以下怪物:3只精英传奇倍率二。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1768044083724,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "006挪德卡莱苔骨荒原西格德 传奇",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 9222.552735170353,
|
||||
"y": 1894.3904553088596
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 9175.597393783086,
|
||||
"y": 1930.4038689445097
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "1000",
|
||||
"id": 3,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 9080.405748201347,
|
||||
"y": 1950.8751155765822
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(f)",
|
||||
"id": 4,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": 9080.437011763472,
|
||||
"y": 1951.1251386918993
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "target",
|
||||
"x": 9079.688910461078,
|
||||
"y": 1957.747457315174
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "target",
|
||||
"x": 9079.688910461078,
|
||||
"y": 1957.747457315174
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,114 +0,0 @@
|
||||
{
|
||||
"info": {
|
||||
"author": "汐",
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/jiegedabaobei",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时137.15秒,包含以下怪物:1只丘丘岩盔王、2只幼岩龙蜥、2只玄文兽。",
|
||||
"hash_res": "01480954",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1763017893890,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "232璃月沉玉谷灵濛山南(600_1,200_4)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 2002.369999999999,
|
||||
"y": 2081.0300000000007
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1979.2900000000009,
|
||||
"y": 2074.01
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1969.369999999999,
|
||||
"y": 2066.49
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1938.4599999999991,
|
||||
"y": 2042.7799999999988
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 1905.0107421875,
|
||||
"y": 2030.8798828125
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(f);伊涅芙 e;芙宁娜 e;玛薇卡 e;爱可菲 e;",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1872.421875,
|
||||
"y": 2036.94580078125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1868.6900000000005,
|
||||
"y": 2059.630000000001
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 2002.3899999999994,
|
||||
"y": 2081.040000000001
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 9,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1973.8600000000006,
|
||||
"y": 2117.49
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 10,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1967.8400000000001,
|
||||
"y": 2151.3899999999994
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,92 +0,0 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "301稻妻镇守之森(600_1,200_1)",
|
||||
"type": "collect",
|
||||
"author": "汐",
|
||||
"version": "1.0",
|
||||
"description": " 路线信息:该路线预计用时91.03秒,包含以下怪物:1只打手丘丘人、2只射手丘丘人、2只火箭丘丘人、1只雷斧丘丘暴徒、1只丘丘雷兜王、2只雷丘丘萨满。",
|
||||
"hash_res": "58290120",
|
||||
"map_name": "Teyvat",
|
||||
"bgi_version": "0.45.0",
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
]
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": -4429.9,
|
||||
"y": -2798.51,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": -4404.69,
|
||||
"y": -2794.31,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": -4371.18,
|
||||
"y": -2820.31,
|
||||
"action": "combat_script",
|
||||
"move_mode": "dash",
|
||||
"action_params": "attack(0.3)",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": -4391.32,
|
||||
"y": -2820.65,
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": -4362.91,
|
||||
"y": -2835.52,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": -4348.19,
|
||||
"y": -2840.75,
|
||||
"action": "stop_flying",
|
||||
"move_mode": "fly",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": -4275.03,
|
||||
"y": -2857.22,
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": -4275.03,
|
||||
"y": -2857.19,
|
||||
"action": "combat_script",
|
||||
"move_mode": "dash",
|
||||
"action_params": "wait(0.2)",
|
||||
"type": "orientation"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,146 +0,0 @@
|
||||
{
|
||||
"info": {
|
||||
"name": "312稻妻清赖丸(600_1,200_4)",
|
||||
"type": "collect",
|
||||
"author": "汐",
|
||||
"version": "1.0",
|
||||
"description": " 路线信息:该路线预计用时166.38秒,包含以下怪物:1只打手丘丘人、1只木盾丘丘人、2只雷箭丘丘人、1只丘丘雷兜王、1只愚人众·冰萤术士、1只遗迹巡弋者、2只遗迹防卫者。",
|
||||
"hash_res": "93649028",
|
||||
"bgi_version": "0.42.3",
|
||||
"authors": [
|
||||
{
|
||||
"name": "汐",
|
||||
"links": "https://github.com/jiegedabaobei"
|
||||
}
|
||||
]
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"id": 1,
|
||||
"x": -3684.81,
|
||||
"y": -4278.52,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"x": -3689.65,
|
||||
"y": -4290.01,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"x": -3697.88,
|
||||
"y": -4328.07,
|
||||
"type": "path",
|
||||
"move_mode": "dash",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"x": -3686.68,
|
||||
"y": -4360.99,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"x": -3697.25,
|
||||
"y": -4353.51,
|
||||
"type": "path",
|
||||
"move_mode": "jump",
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"locked": false
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"x": -3697.25,
|
||||
"y": -4353.51,
|
||||
"type": "path",
|
||||
"move_mode": "walk",
|
||||
"action": "",
|
||||
"action_params": ""
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"x": -3661.41,
|
||||
"y": -4391.4,
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"x": -3661.41,
|
||||
"y": -4391.4,
|
||||
"action": "combat_script",
|
||||
"move_mode": "dash",
|
||||
"action_params": "wait(0.2)",
|
||||
"type": "orientation"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"x": -3684.81,
|
||||
"y": -4278.52,
|
||||
"action": "",
|
||||
"move_mode": "walk",
|
||||
"action_params": "",
|
||||
"type": "teleport"
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"x": -3727.96,
|
||||
"y": -4306.87,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"x": -3757.29,
|
||||
"y": -4324.82,
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"x": -3796.32,
|
||||
"y": -4301.01,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"x": -3776.73,
|
||||
"y": -4240.8,
|
||||
"action": "",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"x": -3764.18,
|
||||
"y": -4254.63,
|
||||
"action": "fight",
|
||||
"move_mode": "dash",
|
||||
"action_params": "",
|
||||
"type": "path"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -8,12 +8,12 @@
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时112.68秒,包含以下怪物:1只丘丘人、1只冲锋丘丘人、2只射手丘丘人、1只火箭丘丘人、1只爆弹丘丘人、1只火斧丘丘暴徒、1只丘丘岩盔王、1只火深渊法师。",
|
||||
"description": " 路线信息:该路线预计用时90.4秒,包含以下怪物:1只丘丘人、1只射手丘丘人、1只火箭丘丘人、1只丘丘岩盔王、1只火深渊法师。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1768385971525,
|
||||
"last_modified_time": 1768831127945,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "201璃月离沙郊(600_1,200_2)",
|
||||
"name": "201璃月离沙郊(600_1,200_1)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
@@ -30,53 +30,17 @@
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "2500",
|
||||
"action_params": "2700",
|
||||
"id": 2,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 866.7099999999991,
|
||||
"y": -521.1700000000001
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(f);钟离 a(0.1),e(hold);茜特菈莉 e;莱依拉 e;伊涅芙 e;芙宁娜 e;玛薇卡 e;爱可菲 e;",
|
||||
"id": 3,
|
||||
"move_mode": "climb",
|
||||
"type": "path",
|
||||
"x": 853.2600000000002,
|
||||
"y": -522
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "climb",
|
||||
"type": "path",
|
||||
"x": 858.2600000000002,
|
||||
"y": -522
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "climb",
|
||||
"type": "path",
|
||||
"x": 866.7099999999991,
|
||||
"y": -521.1700000000001
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack(0.3)",
|
||||
"id": 6,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": 882.150390625,
|
||||
"y": -506.0859375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": ";钟离 d(0.1),e(hold);茜特菈莉 e;莱依拉 e;伊涅芙 e;芙宁娜 e;玛薇卡 e;爱可菲 e;菈乌玛 e;attack(0.3)",
|
||||
"id": 7,
|
||||
"id": 3,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": 884.9033203125,
|
||||
@@ -85,7 +49,7 @@
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(1.5)",
|
||||
"id": 8,
|
||||
"id": 4,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": 903.9400000000005,
|
||||
@@ -94,8 +58,7 @@
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 9,
|
||||
"locked": false,
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 931.9580078125,
|
||||
@@ -104,7 +67,7 @@
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.2)",
|
||||
"id": 10,
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 931.9580078125,
|
||||
@@ -8,13 +8,12 @@
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时115.19秒,包含以下怪物:1只愚人众·雷莹术士、3只幼岩龙蜥、1只岩龙蜥。",
|
||||
"hash_res": "73186224",
|
||||
"description": " 路线信息:该路线预计用时74.84秒,包含以下怪物:1只幼岩龙蜥、1只岩龙蜥。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1762170245838,
|
||||
"last_modified_time": 1768831136716,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "209璃月天遒谷(600_1,200_4)",
|
||||
"name": "209-1璃月天遒谷(600_1,200_1)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
@@ -33,7 +32,7 @@
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": 1290.25,
|
||||
"y": -44.710000000000036
|
||||
@@ -42,7 +41,7 @@
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": 1292.2800000000007,
|
||||
"y": -11.579999999999927
|
||||
@@ -69,7 +68,6 @@
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1273.6689453125,
|
||||
@@ -83,33 +81,6 @@
|
||||
"type": "orientation",
|
||||
"x": 1273.6689453125,
|
||||
"y": 103.78125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 1152.880000000001,
|
||||
"y": 141.6300000000001
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(f);芙宁娜 e;玛薇卡 e;爱可菲 e;伊涅芙 e;",
|
||||
"id": 9,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1139.0263671875,
|
||||
"y": 113.17578125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 10,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1078.4599999999991,
|
||||
"y": 132.3199999999997
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"info": {
|
||||
"author": "汐",
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/jiegedabaobei",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时55.42秒,包含以下怪物:1只愚人众·雷莹术士、2只幼岩龙蜥。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1768831149957,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "209-2璃月天遒谷(200_3)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 1152.880000000001,
|
||||
"y": 141.6300000000001
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(f);芙宁娜 e;玛薇卡 e;爱可菲 e;伊涅芙 e;",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1139.0263671875,
|
||||
"y": 113.17578125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1078.4599999999991,
|
||||
"y": 132.3199999999997
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"info": {
|
||||
"author": "汐",
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/jiegedabaobei",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时61.51秒,包含以下怪物:1只丘丘岩盔王。",
|
||||
"enable_monster_loot_split": false,
|
||||
"hash_res": "01480954",
|
||||
"last_modified_time": 1768831161039,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "232-1璃月沉玉谷灵濛山南(600_1)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 2002.369999999999,
|
||||
"y": 2081.0300000000007
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1979.2900000000009,
|
||||
"y": 2074.01
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": 1969.369999999999,
|
||||
"y": 2066.49
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.1)",
|
||||
"id": 4,
|
||||
"move_mode": "run",
|
||||
"type": "orientation",
|
||||
"x": 1969.369999999999,
|
||||
"y": 2066.49
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"info": {
|
||||
"author": "汐",
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/jiegedabaobei",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时95.68秒,包含以下怪物:2只玄文兽、1只幼岩龙蜥。",
|
||||
"enable_monster_loot_split": false,
|
||||
"hash_res": "01480954",
|
||||
"last_modified_time": 1768808404669,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "232-2璃月沉玉谷灵濛山南(200_4)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 2002.3899999999994,
|
||||
"y": 2081.040000000001
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1973.8600000000006,
|
||||
"y": 2117.49
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1967.8400000000001,
|
||||
"y": 2151.3899999999994
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1944.17578125,
|
||||
"y": 2142.263671875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack(0.3);伊涅芙 e;芙宁娜 e;玛薇卡 e;爱可菲 e;菈乌玛 e;",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1898.65625,
|
||||
"y": 2074.1845703125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1862.185546875,
|
||||
"y": 2053.9951171875
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -8,13 +8,13 @@
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时88.01秒,包含以下怪物:2只射手丘丘人、2只雷箭丘丘人、1只丘丘岩盔王、1只丘丘水行游侠。",
|
||||
"hash_res": "83034565",
|
||||
"description": " 路线信息:该路线预计用时70.35秒,包含以下怪物:2只射手丘丘人、1只丘丘岩盔王。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1763450489390,
|
||||
"hash_res": "83034565",
|
||||
"last_modified_time": 1768806551596,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "233璃月沉玉谷灵濛山东北(600_1,200_1)",
|
||||
"name": "233璃月沉玉谷灵濛山东北(600_1)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
@@ -51,37 +51,20 @@
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"locked": false,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": 1913.48828125,
|
||||
"y": 2310.720703125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1900.5556640625,
|
||||
"y": 2311.19921875
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(f);钟离 a(0.1),e(hold);茜特菈莉 e;莱依拉 e;伊涅芙 e;",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1871.6100000000006,
|
||||
"y": 2301.4699999999993
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 1850.3999999999996,
|
||||
"y": 2297.58
|
||||
"action_params": "wait(0.1)",
|
||||
"id": 5,
|
||||
"move_mode": "run",
|
||||
"type": "orientation",
|
||||
"x": 1913.48828125,
|
||||
"y": 2310.720703125
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"info": {
|
||||
"author": "汐",
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/jiegedabaobei",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时57.34秒,包含以下怪物:1只打手丘丘人、2只射手丘丘人、1只丘丘雷兜王。",
|
||||
"enable_monster_loot_split": false,
|
||||
"hash_res": "58290120",
|
||||
"last_modified_time": 1768808798552,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "301-1稻妻镇守之森(600_1)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -4222.263671875,
|
||||
"y": -3004.4013671875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -4254.1796875,
|
||||
"y": -2949.2783203125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -4270.728515625,
|
||||
"y": -2866.177734375
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.1)",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": -4270.728515625,
|
||||
"y": -2866.177734375
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"info": {
|
||||
"author": "汐",
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/jiegedabaobei",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时51.98秒,包含以下怪物:2只火箭丘丘人、1只雷斧丘丘暴徒、2只雷丘丘萨满。",
|
||||
"enable_monster_loot_split": false,
|
||||
"hash_res": "58290120",
|
||||
"last_modified_time": 1768808835070,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "301-2稻妻镇守之森(200_1)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -4429.9,
|
||||
"y": -2798.51
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -4404.69,
|
||||
"y": -2794.31
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "attack(0.3)",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -4371.18,
|
||||
"y": -2820.31
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -4391.32,
|
||||
"y": -2820.65
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,140 @@
|
||||
{
|
||||
"info": {
|
||||
"author": "汐",
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/jiegedabaobei",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时197.12秒,包含以下怪物:1只打手丘丘人、1只火箭丘丘人、1只雷箭丘丘人、1只冰箭丘丘人、3只岩盾丘丘暴徒、2只火斧丘丘暴徒、2只雷斧丘丘暴徒、1只丘丘雷兜王、1只草丘丘萨满、1只火深渊法师、1只水深渊法师、2只雷深渊法师。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1768812269522,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "306-1稻妻踏鞴砂(600_1,200_11)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -3156.5999999999985,
|
||||
"y": -3886.1000000000004
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3126.5800000000017,
|
||||
"y": -3872.5200000000004
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "4500",
|
||||
"id": 3,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": -3067.498046875,
|
||||
"y": -3933.599609375
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3036.73828125,
|
||||
"y": -3985.33203125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3010.4000000000015,
|
||||
"y": -3995.4799999999996
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2958.66,
|
||||
"y": -3950.9699999999993
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2919.040000000001,
|
||||
"y": -3889.7700000000004
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 8,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2903.209999999999,
|
||||
"y": -3870.5300000000007
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 9,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2953.66,
|
||||
"y": -3831.3199999999997
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(x);茜特菈莉 e;伊涅芙 e;",
|
||||
"id": 10,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2961.529999999999,
|
||||
"y": -3843.0300000000007
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 11,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -2970.869999999999,
|
||||
"y": -3855.9400000000005
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 12,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2972.75,
|
||||
"y": -3856.2199999999993
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.2)",
|
||||
"id": 13,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": -2972.75,
|
||||
"y": -3856.2199999999993
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -8,12 +8,12 @@
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时348.88秒,包含以下怪物:1只打手丘丘人、2只火箭丘丘人、2只雷箭丘丘人、1只冰箭丘丘人、1只爆弹丘丘人、1只冰弹丘丘人、1只木盾丘丘暴徒、3只岩盾丘丘暴徒、2只火斧丘丘暴徒、2只雷斧丘丘暴徒、1只丘丘雷兜王、1只水丘丘萨满、1只风丘丘萨满、1只草丘丘萨满、1只火深渊法师、1只水深渊法师、3只雷深渊法师、1只冰深渊法师、2只愚人众·火之债务处理人、1只愚人众·雷莹术士、1只愚人众·冰萤术士。",
|
||||
"description": " 路线信息:该路线预计用时209.36秒,包含以下怪物:1只打手丘丘人、2只射手丘丘人、1只冰弹丘丘人、1只火斧丘丘暴徒、1只水丘丘萨满、1只风丘丘萨满、1只雷深渊法师、1只冰深渊法师、2只愚人众·火之债务处理人、1只愚人众·雷莹术士、1只愚人众·冰萤术士。",
|
||||
"enable_monster_loot_split": false,
|
||||
"last_modified_time": 1768120885834,
|
||||
"last_modified_time": 1768812667954,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "306稻妻踏鞴砂(600_1,200_18)",
|
||||
"name": "306-2稻妻踏鞴砂(200_7)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
@@ -74,8 +74,8 @@
|
||||
"y": -3876.8099999999995
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.5)",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
@@ -128,108 +128,9 @@
|
||||
"y": -3918.5599999999995
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(x);芙宁娜 e;",
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 13,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3086.029999999999,
|
||||
"y": -3924.7800000000007
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 14,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3036.73828125,
|
||||
"y": -3985.33203125
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 15,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3010.4000000000015,
|
||||
"y": -3995.4799999999996
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 16,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2958.66,
|
||||
"y": -3950.9699999999993
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 17,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2919.040000000001,
|
||||
"y": -3889.7700000000004
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 18,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2903.209999999999,
|
||||
"y": -3870.5300000000007
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 19,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2953.66,
|
||||
"y": -3831.3199999999997
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(x);茜特菈莉 e;伊涅芙 e;",
|
||||
"id": 20,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2961.529999999999,
|
||||
"y": -3843.0300000000007
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 21,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -2970.869999999999,
|
||||
"y": -3855.9400000000005
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 22,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -2972.75,
|
||||
"y": -3856.2199999999993
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.876)",
|
||||
"id": 23,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": -2972.75,
|
||||
"y": -3856.2199999999993
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 24,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -3016.8600000000006,
|
||||
@@ -238,7 +139,7 @@
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "",
|
||||
"id": 25,
|
||||
"id": 14,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": -2986.09,
|
||||
@@ -247,7 +148,7 @@
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(x);茜特菈莉 e;伊涅芙 e;wait(0.5);",
|
||||
"id": 26,
|
||||
"id": 15,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": -2984.470000000001,
|
||||
@@ -256,7 +157,7 @@
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 27,
|
||||
"id": 16,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": -2984.470000000001,
|
||||
@@ -265,7 +166,7 @@
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 28,
|
||||
"id": 17,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -3233.25,
|
||||
@@ -274,7 +175,7 @@
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "",
|
||||
"id": 29,
|
||||
"id": 18,
|
||||
"move_mode": "fly",
|
||||
"type": "path",
|
||||
"x": -3214.540000000001,
|
||||
@@ -283,7 +184,7 @@
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "keypress(x);茜特菈莉 e;伊涅芙 e;wait(0.5);",
|
||||
"id": 30,
|
||||
"id": 19,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3198.5499999999993,
|
||||
@@ -292,20 +193,11 @@
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 31,
|
||||
"id": 20,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3198.5499999999993,
|
||||
"y": -3517.1000000000004
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.899)",
|
||||
"id": 32,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": -3198.5499999999993,
|
||||
"y": -3517.1000000000004
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
{
|
||||
"info": {
|
||||
"author": "汐",
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/jiegedabaobei",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时77.08秒,包含以下怪物:2只打手丘丘人、1只木盾丘丘人、2只雷箭丘丘人、1只丘丘雷兜王、1只愚人众·冰萤术士。",
|
||||
"enable_monster_loot_split": false,
|
||||
"hash_res": "93649028",
|
||||
"last_modified_time": 1768830630025,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "312-1稻妻清赖丸(600_1,200_1)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -3684.81,
|
||||
"y": -4278.52
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -3689.65,
|
||||
"y": -4290.01
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -3697.88,
|
||||
"y": -4328.07
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -3686.68,
|
||||
"y": -4360.99
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "jump",
|
||||
"type": "path",
|
||||
"x": -3697.25,
|
||||
"y": -4353.51
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "walk",
|
||||
"type": "path",
|
||||
"x": -3697.25,
|
||||
"y": -4353.51
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 7,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -3661.41,
|
||||
"y": -4391.4
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.2)",
|
||||
"id": 8,
|
||||
"move_mode": "run",
|
||||
"type": "orientation",
|
||||
"x": -3661.41,
|
||||
"y": -4391.4
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,78 @@
|
||||
{
|
||||
"info": {
|
||||
"author": "汐",
|
||||
"authors": [
|
||||
{
|
||||
"links": "https://github.com/jiegedabaobei",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时77.85秒,包含以下怪物:1只遗迹巡弋者、2只遗迹防卫者。",
|
||||
"enable_monster_loot_split": false,
|
||||
"hash_res": "93649028",
|
||||
"last_modified_time": 1768830672217,
|
||||
"map_match_method": "",
|
||||
"map_name": "Teyvat",
|
||||
"name": "312-2稻妻清赖丸(200_3)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": -3684.81,
|
||||
"y": -4278.52
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -3727.96,
|
||||
"y": -4306.87
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 3,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": -3757.29,
|
||||
"y": -4324.82
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3796.32,
|
||||
"y": -4301.01
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3776.73,
|
||||
"y": -4240.8
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": -3764.18,
|
||||
"y": -4254.63
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"info": {
|
||||
"authors": [
|
||||
{
|
||||
"links": "",
|
||||
"name": "汐"
|
||||
}
|
||||
],
|
||||
"bgi_version": "0.45.0",
|
||||
"description": " 路线信息:该路线预计用时115.96秒,包含以下怪物:1只深渊使徒·激流、2只遗迹守卫。",
|
||||
"enable_monster_loot_split": false,
|
||||
"hash_res": "91626154",
|
||||
"last_modified_time": 1768836342216,
|
||||
"map_match_method": "",
|
||||
"map_name": "Enkanomiya",
|
||||
"name": "330-1【水免】【高危】稻妻渊下宫大日御舆西(600_1,200_2)",
|
||||
"tags": [],
|
||||
"type": "collect",
|
||||
"version": "1.0"
|
||||
},
|
||||
"positions": [
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 1,
|
||||
"move_mode": "walk",
|
||||
"type": "teleport",
|
||||
"x": 285.2601318359375,
|
||||
"y": 277.391357421875
|
||||
},
|
||||
{
|
||||
"action": "",
|
||||
"action_params": "",
|
||||
"id": 2,
|
||||
"move_mode": "run",
|
||||
"type": "path",
|
||||
"x": 301.4364013671875,
|
||||
"y": 277.8603515625
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(3)",
|
||||
"id": 3,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 281.2237548828125,
|
||||
"y": 276.62158203125
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 4,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 281.2237548828125,
|
||||
"y": 276.62158203125
|
||||
},
|
||||
{
|
||||
"action": "stop_flying",
|
||||
"action_params": "",
|
||||
"id": 5,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 361.71875,
|
||||
"y": 290.812699197714
|
||||
},
|
||||
{
|
||||
"action": "fight",
|
||||
"action_params": "",
|
||||
"id": 6,
|
||||
"locked": false,
|
||||
"move_mode": "dash",
|
||||
"type": "path",
|
||||
"x": 351.125,
|
||||
"y": 289.2494245399373
|
||||
},
|
||||
{
|
||||
"action": "combat_script",
|
||||
"action_params": "wait(0.1)",
|
||||
"id": 7,
|
||||
"move_mode": "dash",
|
||||
"type": "orientation",
|
||||
"x": 351.125,
|
||||
"y": 289.2494245399373
|
||||
}
|
||||
]
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user