From aa9772ffd9a8d5bf44a6e4ef6302aa9bd84d2462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BE=89=E9=B8=AD=E8=9B=8B?= Date: Sat, 26 Oct 2024 12:30:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=AC=AC=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E7=82=B9=E4=B8=8D=E6=98=AF=E4=BC=A0=E9=80=81=E7=82=B9=E7=9A=84?= =?UTF-8?q?pathing=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/other/firstPosTp.js | 52 +++ .../狗粮_枫丹_欧庇克莱歌剧院东南_2.json | 2 +- .../小灯草/小灯草-晨曦酒庄-蒙德4个.json | 104 ++--- .../幽光星星/幽光星星@jbcaaa/幽光星星2.json | 4 +- .../日落果/日落果18-灵矩关-璃月3个.json | 2 +- .../日落果/日落果19-化城郭-须弥4个.json | 2 +- .../浪沫羽鳃/浪沫羽鳃1-流泉之众上-11个.json | 280 ++++++------- repo/pathing/琉璃袋/琉璃袋-无妄坡-3个.json | 2 +- repo/pathing/琉璃袋/琉璃袋-无妄坡2-6个.json | 2 +- repo/pathing/琉璃袋/琉璃袋-明蕴镇-6个.json | 2 +- repo/pathing/琉璃袋/琉璃袋-池中盐水-5个.json | 2 +- repo/pathing/石珀/石珀1-虎牢山1-4个.json | 104 ++--- repo/pathing/石珀/石珀10-无妄坡1-2个.json | 188 ++++----- repo/pathing/石珀/石珀2-虎牢山2-2个.json | 104 ++--- repo/pathing/石珀/石珀3-虎牢山2-4个.json | 202 +++++----- repo/pathing/石珀/石珀4-层岩巨渊1-2个.json | 62 +-- repo/pathing/石珀/石珀6-清策庄2-2个.json | 76 ++-- repo/pathing/石珀/石珀7-清策庄3-1个.json | 62 +-- repo/pathing/石珀/石珀8-清策庄4-2个.json | 90 ++--- .../肉龙掌/肉龙掌2-坚岩隘谷上-18个.json | 378 +++++++++--------- .../肉龙掌/肉龙掌3-坚岩隘谷右-14个.json | 210 +++++----- .../肉龙掌/肉龙掌5-硫晶支脉左-5个.json | 126 +++--- repo/pathing/肉龙掌/肉龙掌7-隆崛坡-13个.json | 336 ++++++++-------- .../茉洁草08-厄里那斯神像-枫丹13个.json | 2 +- repo/pathing/落落莓/望风山地1x24.json | 216 +++++----- repo/pathing/落落莓/望风山地3x16.json | 300 +++++++------- 26 files changed, 1481 insertions(+), 1429 deletions(-) create mode 100644 build/other/firstPosTp.js diff --git a/build/other/firstPosTp.js b/build/other/firstPosTp.js new file mode 100644 index 00000000..5cba81be --- /dev/null +++ b/build/other/firstPosTp.js @@ -0,0 +1,52 @@ +const fs = require('fs'); +const path = require('path'); + +// 定义pathing目录的路径 +const pathingDir = path.resolve(__dirname, '..', '..', 'repo', 'pathing'); + +// 递归读取目录下的所有JSON文件 +function readJsonFilesRecursively(dir) { + const files = fs.readdirSync(dir, { withFileTypes: true }); + + files.forEach(file => { + const filePath = path.join(dir, file.name); + + if (file.isDirectory()) { + readJsonFilesRecursively(filePath); + } else if (path.extname(file.name).toLowerCase() === '.json') { + processJsonFile(filePath); + } + }); +} + +// 处理单个JSON文件 +function processJsonFile(filePath) { + try { + const data = fs.readFileSync(filePath, 'utf8'); + const jsonData = JSON.parse(data); + + // 检查并修改第一个position的type + if (jsonData.positions && jsonData.positions.length > 0) { + const firstPosition = jsonData.positions[0]; + if (firstPosition.type !== 'teleport') { + firstPosition.type = 'teleport'; + console.log(`文件 ${filePath} 中的第一个position的type已更改为teleport`); + + // 将修改后的数据写回文件 + fs.writeFileSync(filePath, JSON.stringify(jsonData, null, 2), 'utf8'); + console.log(`文件 ${filePath} 已成功更新`); + } else { + console.log(`文件 ${filePath} 中的第一个position的type已经是teleport`); + } + } else { + console.log(`文件 ${filePath} 中没有positions数组或数组为空`); + } + } catch (err) { + console.error(`处理文件 ${filePath} 时出错:`, err); + } +} + +// 开始递归读取文件 +console.log(`开始处理 ${pathingDir} 目录下的所有JSON文件`); +readJsonFilesRecursively(pathingDir); +console.log('处理完成'); diff --git a/repo/pathing/圣遗物/狗粮_枫丹_欧庇克莱歌剧院东南_2.json b/repo/pathing/圣遗物/狗粮_枫丹_欧庇克莱歌剧院东南_2.json index 2bb710f9..cf430e69 100644 --- a/repo/pathing/圣遗物/狗粮_枫丹_欧庇克莱歌剧院东南_2.json +++ b/repo/pathing/圣遗物/狗粮_枫丹_欧庇克莱歌剧院东南_2.json @@ -12,7 +12,7 @@ "id": 1, "x": 3595.5517578125, "y": 3254.333251953125, - "type": "path", + "type": "teleport", "move_mode": "walk", "action": "" }, diff --git a/repo/pathing/小灯草/小灯草-晨曦酒庄-蒙德4个.json b/repo/pathing/小灯草/小灯草-晨曦酒庄-蒙德4个.json index 70338533..50ab137c 100644 --- a/repo/pathing/小灯草/小灯草-晨曦酒庄-蒙德4个.json +++ b/repo/pathing/小灯草/小灯草-晨曦酒庄-蒙德4个.json @@ -1,54 +1,54 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"小灯草-晨曦酒庄-蒙德4个", - "description":"", - "type":"collect", - "author":"不瘦五十斤不改名" - }, - "positions":[ - { - "x":-201.20703125, - "y":1861.82958984375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-125.4638671875, - "y":1875.52197265625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-120.5341796875, - "y":1876.8720703125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-116.94921875, - "y":1873.3349609375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-117.626953125, - "y":1870.197265625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-119.4970703125, - "y":1869.9794921875, - "type":"path", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "小灯草-晨曦酒庄-蒙德4个", + "description": "", + "type": "collect", + "author": "不瘦五十斤不改名" + }, + "positions": [ + { + "x": -201.20703125, + "y": 1861.82958984375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": -125.4638671875, + "y": 1875.52197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -120.5341796875, + "y": 1876.8720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -116.94921875, + "y": 1873.3349609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -117.626953125, + "y": 1870.197265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -119.4970703125, + "y": 1869.9794921875, + "type": "path", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/幽光星星/幽光星星@jbcaaa/幽光星星2.json b/repo/pathing/幽光星星/幽光星星@jbcaaa/幽光星星2.json index 234eb0a2..ac413995 100644 --- a/repo/pathing/幽光星星/幽光星星@jbcaaa/幽光星星2.json +++ b/repo/pathing/幽光星星/幽光星星@jbcaaa/幽光星星2.json @@ -12,7 +12,7 @@ "id": 1, "x": 4984.80078125, "y": 4463.00048828125, - "type": "path", + "type": "teleport", "move_mode": "walk", "action": "" }, @@ -73,4 +73,4 @@ "action": "" } ] -} +} \ No newline at end of file diff --git a/repo/pathing/日落果/日落果18-灵矩关-璃月3个.json b/repo/pathing/日落果/日落果18-灵矩关-璃月3个.json index a51e9610..68d0b63b 100644 --- a/repo/pathing/日落果/日落果18-灵矩关-璃月3个.json +++ b/repo/pathing/日落果/日落果18-灵矩关-璃月3个.json @@ -12,7 +12,7 @@ "id": 1, "x": 1043.1806640625, "y": -558.06298828125, - "type": "path", + "type": "teleport", "move_mode": "walk", "action": "" }, diff --git a/repo/pathing/日落果/日落果19-化城郭-须弥4个.json b/repo/pathing/日落果/日落果19-化城郭-须弥4个.json index afaabef9..398b4045 100644 --- a/repo/pathing/日落果/日落果19-化城郭-须弥4个.json +++ b/repo/pathing/日落果/日落果19-化城郭-须弥4个.json @@ -12,7 +12,7 @@ "id": 1, "x": 2703.53955078125, "y": -761.19091796875, - "type": "path", + "type": "teleport", "move_mode": "walk", "action": "" }, diff --git a/repo/pathing/浪沫羽鳃/浪沫羽鳃1-流泉之众上-11个.json b/repo/pathing/浪沫羽鳃/浪沫羽鳃1-流泉之众上-11个.json index 691c08d6..eadb14f0 100644 --- a/repo/pathing/浪沫羽鳃/浪沫羽鳃1-流泉之众上-11个.json +++ b/repo/pathing/浪沫羽鳃/浪沫羽鳃1-流泉之众上-11个.json @@ -1,142 +1,142 @@ { - "info":{ - "name":"浪沫羽鳃1-流泉之众上-11个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":8918.9560546875, - "y":-2679.0810546875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8877.21484375, - "y":-2724.689453125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8886.08984375, - "y":-2858.322265625, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":8886.08984375, - "y":-2858.322265625, - "type":"target", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":8884.4150390625, - "y":-2858.046875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8879.9091796875, - "y":-2861.529296875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8875.4892578125, - "y":-2864.3974609375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8837.703125, - "y":-2891.904296875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8856.499301863947, - "y":-2946.489155489824, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8841.3486328125, - "y":-2947.5869140625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8820.6904296875, - "y":-2946.0986328125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8817.1953125, - "y":-2941.5517578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8813.1259765625, - "y":-2939.8759765625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8806.92578125, - "y":-2931.4462890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8805.9482421875, - "y":-2891.3486328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8798.9375, - "y":-2856.0009765625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8781.01953125, - "y":-2820.23046875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8769.5302734375, - "y":-2824.3251953125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8771.05859375, - "y":-2829.9208984375, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "浪沫羽鳃1-流泉之众上-11个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 8918.9560546875, + "y": -2679.0810546875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 8877.21484375, + "y": -2724.689453125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8886.08984375, + "y": -2858.322265625, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "x": 8886.08984375, + "y": -2858.322265625, + "type": "target", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 8884.4150390625, + "y": -2858.046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8879.9091796875, + "y": -2861.529296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8875.4892578125, + "y": -2864.3974609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8837.703125, + "y": -2891.904296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8856.499301863947, + "y": -2946.489155489824, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8841.3486328125, + "y": -2947.5869140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8820.6904296875, + "y": -2946.0986328125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8817.1953125, + "y": -2941.5517578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8813.1259765625, + "y": -2939.8759765625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8806.92578125, + "y": -2931.4462890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8805.9482421875, + "y": -2891.3486328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8798.9375, + "y": -2856.0009765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8781.01953125, + "y": -2820.23046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8769.5302734375, + "y": -2824.3251953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8771.05859375, + "y": -2829.9208984375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/琉璃袋/琉璃袋-无妄坡-3个.json b/repo/pathing/琉璃袋/琉璃袋-无妄坡-3个.json index d78d2a81..19d708d2 100644 --- a/repo/pathing/琉璃袋/琉璃袋-无妄坡-3个.json +++ b/repo/pathing/琉璃袋/琉璃袋-无妄坡-3个.json @@ -12,7 +12,7 @@ "id": 1, "action": "", "move_mode": "walk", - "type": "path", + "type": "teleport", "x": 489.7939453125, "y": 1435.13525390625 }, diff --git a/repo/pathing/琉璃袋/琉璃袋-无妄坡2-6个.json b/repo/pathing/琉璃袋/琉璃袋-无妄坡2-6个.json index 500cc38c..3b9738c2 100644 --- a/repo/pathing/琉璃袋/琉璃袋-无妄坡2-6个.json +++ b/repo/pathing/琉璃袋/琉璃袋-无妄坡2-6个.json @@ -14,7 +14,7 @@ "y": 1435.14208984375, "action": "", "move_mode": "walk", - "type": "path" + "type": "teleport" }, { "id": 2, diff --git a/repo/pathing/琉璃袋/琉璃袋-明蕴镇-6个.json b/repo/pathing/琉璃袋/琉璃袋-明蕴镇-6个.json index 6b1fe6dc..254f881f 100644 --- a/repo/pathing/琉璃袋/琉璃袋-明蕴镇-6个.json +++ b/repo/pathing/琉璃袋/琉璃袋-明蕴镇-6个.json @@ -12,7 +12,7 @@ "id": 1, "action": "", "move_mode": "walk", - "type": "path", + "type": "teleport", "x": -416.15234375, "y": 729.060546875 }, diff --git a/repo/pathing/琉璃袋/琉璃袋-池中盐水-5个.json b/repo/pathing/琉璃袋/琉璃袋-池中盐水-5个.json index a1e403c5..606e3558 100644 --- a/repo/pathing/琉璃袋/琉璃袋-池中盐水-5个.json +++ b/repo/pathing/琉璃袋/琉璃袋-池中盐水-5个.json @@ -12,7 +12,7 @@ "id": 1, "x": -188.5517578125, "y": 972.47998046875, - "type": "path", + "type": "teleport", "move_mode": "walk", "action": "" }, diff --git a/repo/pathing/石珀/石珀1-虎牢山1-4个.json b/repo/pathing/石珀/石珀1-虎牢山1-4个.json index 3ca7f815..916c2633 100644 --- a/repo/pathing/石珀/石珀1-虎牢山1-4个.json +++ b/repo/pathing/石珀/石珀1-虎牢山1-4个.json @@ -1,54 +1,54 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"虎牢山1", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":1806.029296875, - "y":699.9052734375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1819.9977299555067, - "y":680.75, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":1829.0029296875, - "y":666.88720703125, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":1829.15234375, - "y":667.8740234375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1825.28125, - "y":670.03759765625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1826.4404296875, - "y":665.189453125, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "虎牢山1", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": 1806.029296875, + "y": 699.9052734375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 1819.9977299555067, + "y": 680.75, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1829.0029296875, + "y": 666.88720703125, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "x": 1829.15234375, + "y": 667.8740234375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1825.28125, + "y": 670.03759765625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1826.4404296875, + "y": 665.189453125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/石珀/石珀10-无妄坡1-2个.json b/repo/pathing/石珀/石珀10-无妄坡1-2个.json index e5a27a96..5bb09fb0 100644 --- a/repo/pathing/石珀/石珀10-无妄坡1-2个.json +++ b/repo/pathing/石珀/石珀10-无妄坡1-2个.json @@ -1,96 +1,96 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"巫王珀1-2", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":289.466796875, - "y":1667.30517578125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":286.6298828125, - "y":1666.24609375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":283.0439453125, - "y":1664.419921875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":282.3515625, - "y":1661.42578125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":281.755859375, - "y":1658.455078125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":280.33203125, - "y":1654.89306640625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":278.1640625, - "y":1652.96240234375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":276.59765625, - "y":1651.6884765625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":273.7265625, - "y":1646.73681640625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":273.0556640625, - "y":1645.92724609375, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":278.109375, - "y":1643.64990234375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":268.560546875, - "y":1649.67822265625, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "巫王珀1-2", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": 289.466796875, + "y": 1667.30517578125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 286.6298828125, + "y": 1666.24609375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 283.0439453125, + "y": 1664.419921875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 282.3515625, + "y": 1661.42578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 281.755859375, + "y": 1658.455078125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 280.33203125, + "y": 1654.89306640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 278.1640625, + "y": 1652.96240234375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 276.59765625, + "y": 1651.6884765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 273.7265625, + "y": 1646.73681640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 273.0556640625, + "y": 1645.92724609375, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "x": 278.109375, + "y": 1643.64990234375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 268.560546875, + "y": 1649.67822265625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/石珀/石珀2-虎牢山2-2个.json b/repo/pathing/石珀/石珀2-虎牢山2-2个.json index 2bf80bcc..229d6cf0 100644 --- a/repo/pathing/石珀/石珀2-虎牢山2-2个.json +++ b/repo/pathing/石珀/石珀2-虎牢山2-2个.json @@ -1,54 +1,54 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"虎牢山2", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":1794.19140625, - "y":717.47314453125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1799.2568359375, - "y":738.9970703125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1796.544921875, - "y":750.96044921875, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":1800.0947265625, - "y":748.8349609375, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":1795.55078125, - "y":749.1826171875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1804.2109375, - "y":750.05322265625, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "虎牢山2", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": 1794.19140625, + "y": 717.47314453125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 1799.2568359375, + "y": 738.9970703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 1796.544921875, + "y": 750.96044921875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1800.0947265625, + "y": 748.8349609375, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "x": 1795.55078125, + "y": 749.1826171875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1804.2109375, + "y": 750.05322265625, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/石珀/石珀3-虎牢山2-4个.json b/repo/pathing/石珀/石珀3-虎牢山2-4个.json index 82e12c45..3598c6d0 100644 --- a/repo/pathing/石珀/石珀3-虎牢山2-4个.json +++ b/repo/pathing/石珀/石珀3-虎牢山2-4个.json @@ -1,103 +1,103 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"虎牢山2-4", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":1813.3720703125, - "y":712.63818359375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1828.9697265625, - "y":711.7939453125, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":1854.9052734375, - "y":710.45654296875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1859.2705078125, - "y":710.43701171875, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":1858.2978515625, - "y":711.3203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1855.3671875, - "y":712.6943359375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1857.8056640625, - "y":714.37939453125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1856.2548828125, - "y":715.322265625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1858.19921875, - "y":712.96826171875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1860.3681640625, - "y":709.51025390625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1864.3818359375, - "y":705.3603515625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":1860.369140625, - "y":704.39111328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1855.73828125, - "y":703.3154296875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "虎牢山2-4", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": 1813.3720703125, + "y": 712.63818359375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 1828.9697265625, + "y": 711.7939453125, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 1854.9052734375, + "y": 710.45654296875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 1859.2705078125, + "y": 710.43701171875, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "x": 1858.2978515625, + "y": 711.3203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 1855.3671875, + "y": 712.6943359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1857.8056640625, + "y": 714.37939453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1856.2548828125, + "y": 715.322265625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1858.19921875, + "y": 712.96826171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 1860.3681640625, + "y": 709.51025390625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 1864.3818359375, + "y": 705.3603515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 1860.369140625, + "y": 704.39111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 1855.73828125, + "y": 703.3154296875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/石珀/石珀4-层岩巨渊1-2个.json b/repo/pathing/石珀/石珀4-层岩巨渊1-2个.json index cbe3cd53..60976a5d 100644 --- a/repo/pathing/石珀/石珀4-层岩巨渊1-2个.json +++ b/repo/pathing/石珀/石珀4-层岩巨渊1-2个.json @@ -1,33 +1,33 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"曾言剧院1", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":1998.1064453125, - "y":-678.54541015625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":1998.115234375, - "y":-644.91259765625, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":1999.69140625, - "y":-648.62841796875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "曾言剧院1", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": 1998.1064453125, + "y": -678.54541015625, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 1998.115234375, + "y": -644.91259765625, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "x": 1999.69140625, + "y": -648.62841796875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/石珀/石珀6-清策庄2-2个.json b/repo/pathing/石珀/石珀6-清策庄2-2个.json index 8940a7e4..b9591376 100644 --- a/repo/pathing/石珀/石珀6-清策庄2-2个.json +++ b/repo/pathing/石珀/石珀6-清策庄2-2个.json @@ -1,40 +1,40 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"清册装2", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":839.8701171875, - "y":1532.546875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":845.435546875, - "y":1567.111328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":837.392578125, - "y":1593.37744140625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":836.771484375, - "y":1596.21337890625, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "清册装2", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": 839.8701171875, + "y": 1532.546875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 845.435546875, + "y": 1567.111328125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 837.392578125, + "y": 1593.37744140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 836.771484375, + "y": 1596.21337890625, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + } + ] } \ No newline at end of file diff --git a/repo/pathing/石珀/石珀7-清策庄3-1个.json b/repo/pathing/石珀/石珀7-清策庄3-1个.json index fbc0791b..ed996c5e 100644 --- a/repo/pathing/石珀/石珀7-清策庄3-1个.json +++ b/repo/pathing/石珀/石珀7-清策庄3-1个.json @@ -1,33 +1,33 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"清册装3完成1个", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":547.7353515625, - "y":1766.80908203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":509.052734375, - "y":1826.19677734375, - "type":"path", - "move_mode":"fly", - "action":"" - }, - { - "x":508.8544921875, - "y":1826.0107421875, - "type":"path", - "move_mode":"walk", - "action":"nahida_collect" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "清册装3完成1个", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": 547.7353515625, + "y": 1766.80908203125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 509.052734375, + "y": 1826.19677734375, + "type": "path", + "move_mode": "fly", + "action": "" + }, + { + "x": 508.8544921875, + "y": 1826.0107421875, + "type": "path", + "move_mode": "walk", + "action": "nahida_collect" + } + ] } \ No newline at end of file diff --git a/repo/pathing/石珀/石珀8-清策庄4-2个.json b/repo/pathing/石珀/石珀8-清策庄4-2个.json index 198c5eb8..df96fe99 100644 --- a/repo/pathing/石珀/石珀8-清策庄4-2个.json +++ b/repo/pathing/石珀/石珀8-清策庄4-2个.json @@ -1,47 +1,47 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"清册装32个", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":547.689453125, - "y":1766.78662109375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":540.6123046875, - "y":1770.8388671875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":520.9853515625, - "y":1810.00244140625, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":517.25390625, - "y":1823.44970703125, - "type":"target", - "move_mode":"walk", - "action":"nahida_collect" - }, - { - "x":516.3916015625, - "y":1821.6552734375, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "清册装32个", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": 547.689453125, + "y": 1766.78662109375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 540.6123046875, + "y": 1770.8388671875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 520.9853515625, + "y": 1810.00244140625, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": 517.25390625, + "y": 1823.44970703125, + "type": "target", + "move_mode": "walk", + "action": "nahida_collect" + }, + { + "x": 516.3916015625, + "y": 1821.6552734375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/肉龙掌/肉龙掌2-坚岩隘谷上-18个.json b/repo/pathing/肉龙掌/肉龙掌2-坚岩隘谷上-18个.json index 16c30f2e..380189d3 100644 --- a/repo/pathing/肉龙掌/肉龙掌2-坚岩隘谷上-18个.json +++ b/repo/pathing/肉龙掌/肉龙掌2-坚岩隘谷上-18个.json @@ -1,191 +1,191 @@ { - "info":{ - "name":"肉龙掌2-坚岩隘谷上-18个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":8400.6953125, - "y":-1221.4111328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8357.0625, - "y":-1225.69091796875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8277.7294921875, - "y":-1188.48681640625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8296.201171875, - "y":-1213.18212890625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8330.904296875, - "y":-1291.4462890625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8318.240234375, - "y":-1293.9248046875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8259.1259765625, - "y":-1307.67041015625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8263.49759150458, - "y":-1314.0, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8255.6689453125, - "y":-1313.23681640625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8164.14599609375, - "y":-1311.05517578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8163.5556640625, - "y":-1307.1376953125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8115.750602123855, - "y":-1309.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8071.000200707951, - "y":-1291.75, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8026.0003010619275, - "y":-1274.0, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7965.515354158304, - "y":-1259.75, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7981.57421875, - "y":-1296.32177734375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7976.802734375, - "y":-1295.435546875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8042.765625, - "y":-1349.9892578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8048.0322265625, - "y":-1354.607421875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7916.3916015625, - "y":-1292.61865234375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7908.474609375, - "y":-1291.779296875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7880.013246724811, - "y":-1326.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7917.04296875, - "y":-1394.6494140625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7930.5751953125, - "y":-1402.87158203125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7962.3779296875, - "y":-1419.95458984375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7968.7685546875, - "y":-1425.8544921875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "肉龙掌2-坚岩隘谷上-18个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 8400.6953125, + "y": -1221.4111328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 8357.0625, + "y": -1225.69091796875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8277.7294921875, + "y": -1188.48681640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8296.201171875, + "y": -1213.18212890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8330.904296875, + "y": -1291.4462890625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8318.240234375, + "y": -1293.9248046875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8259.1259765625, + "y": -1307.67041015625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8263.49759150458, + "y": -1314, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8255.6689453125, + "y": -1313.23681640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8164.14599609375, + "y": -1311.05517578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8163.5556640625, + "y": -1307.1376953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8115.750602123855, + "y": -1309.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8071.000200707951, + "y": -1291.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8026.0003010619275, + "y": -1274, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7965.515354158304, + "y": -1259.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7981.57421875, + "y": -1296.32177734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7976.802734375, + "y": -1295.435546875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8042.765625, + "y": -1349.9892578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8048.0322265625, + "y": -1354.607421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7916.3916015625, + "y": -1292.61865234375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7908.474609375, + "y": -1291.779296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7880.013246724811, + "y": -1326.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7917.04296875, + "y": -1394.6494140625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7930.5751953125, + "y": -1402.87158203125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7962.3779296875, + "y": -1419.95458984375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7968.7685546875, + "y": -1425.8544921875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/肉龙掌/肉龙掌3-坚岩隘谷右-14个.json b/repo/pathing/肉龙掌/肉龙掌3-坚岩隘谷右-14个.json index b78747ad..ad6622f7 100644 --- a/repo/pathing/肉龙掌/肉龙掌3-坚岩隘谷右-14个.json +++ b/repo/pathing/肉龙掌/肉龙掌3-坚岩隘谷右-14个.json @@ -1,107 +1,107 @@ { - "info":{ - "name":"肉龙掌3-坚岩隘谷右-14个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":7973.6591796875, - "y":-1557.6474609375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8098.841796875, - "y":-1542.27099609375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8098.8779296875, - "y":-1536.9892578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8120.52734375, - "y":-1548.83642578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8121.89306640625, - "y":-1547.82080078125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8118.91015625, - "y":-1523.75927734375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8193.224710798087, - "y":-1477.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8141.720703125, - "y":-1419.4267578125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8117.8154296875, - "y":-1399.94677734375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8117.248896106266, - "y":-1391.75, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8111.20703125, - "y":-1388.3515625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8081.8125, - "y":-1383.92724609375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8070.499197168194, - "y":-1399.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8055.1865234375, - "y":-1393.951171875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "肉龙掌3-坚岩隘谷右-14个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 7973.6591796875, + "y": -1557.6474609375, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 8098.841796875, + "y": -1542.27099609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8098.8779296875, + "y": -1536.9892578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8120.52734375, + "y": -1548.83642578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8121.89306640625, + "y": -1547.82080078125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8118.91015625, + "y": -1523.75927734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8193.224710798087, + "y": -1477.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8141.720703125, + "y": -1419.4267578125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8117.8154296875, + "y": -1399.94677734375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8117.248896106266, + "y": -1391.75, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8111.20703125, + "y": -1388.3515625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8081.8125, + "y": -1383.92724609375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8070.499197168194, + "y": -1399.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8055.1865234375, + "y": -1393.951171875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/肉龙掌/肉龙掌5-硫晶支脉左-5个.json b/repo/pathing/肉龙掌/肉龙掌5-硫晶支脉左-5个.json index bb36e107..850ef380 100644 --- a/repo/pathing/肉龙掌/肉龙掌5-硫晶支脉左-5个.json +++ b/repo/pathing/肉龙掌/肉龙掌5-硫晶支脉左-5个.json @@ -1,65 +1,65 @@ { - "info":{ - "name":"肉龙掌5-硫晶支脉左-5个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":8452.509765625, - "y":-1477.23046875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8443.138671875, - "y":-1495.28662109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8437.236328125, - "y":-1497.9099999999999, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8445.0400390625, - "y":-1531.3720703125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8450.256422654455, - "y":-1517.75, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8486.763671875, - "y":-1516.75732421875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":8481.252007079516, - "y":-1515.0, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":8485.919921875, - "y":-1513.4580078125, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "肉龙掌5-硫晶支脉左-5个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 8452.509765625, + "y": -1477.23046875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 8443.138671875, + "y": -1495.28662109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8437.236328125, + "y": -1497.9099999999999, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8445.0400390625, + "y": -1531.3720703125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8450.256422654455, + "y": -1517.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8486.763671875, + "y": -1516.75732421875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 8481.252007079516, + "y": -1515, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 8485.919921875, + "y": -1513.4580078125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/肉龙掌/肉龙掌7-隆崛坡-13个.json b/repo/pathing/肉龙掌/肉龙掌7-隆崛坡-13个.json index d5d73e4c..bd8568b3 100644 --- a/repo/pathing/肉龙掌/肉龙掌7-隆崛坡-13个.json +++ b/repo/pathing/肉龙掌/肉龙掌7-隆崛坡-13个.json @@ -1,170 +1,170 @@ { - "info":{ - "name":"肉龙掌7-隆崛坡-13个", - "type":"collect", - "author":"黎歌" - }, - "positions":[ - { - "x":7857.5, - "y":-1751.31982421875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7808.752910265299, - "y":-1724.0, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7791.250200707951, - "y":-1648.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7791.99638725687, - "y":-1613.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7774.509765625, - "y":-1611.37939453125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7767.994681239281, - "y":-1594.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7744.752709557348, - "y":-1612.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7734.8583984375, - "y":-1600.625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7731.6201171875, - "y":-1599.73193359375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7727.2822265625, - "y":-1602.2294921875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7714.2822265625, - "y":-1556.46875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7718.744140625, - "y":-1552.44287109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7736.500200707951, - "y":-1567.0, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7755.50439453125, - "y":-1557.8193359375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7759.68896484375, - "y":-1557.2021484375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7769.8515625, - "y":-1555.51806640625, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7764.250903185783, - "y":-1542.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7766.24879575229, - "y":-1523.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7745.7685546875, - "y":-1500.830078125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7743.749498230121, - "y":-1491.75, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7736.5947265625, - "y":-1489.6162109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":7705.5048169908405, - "y":-1493.25, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":7698.30419921875, - "y":-1498.427734375, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "name": "肉龙掌7-隆崛坡-13个", + "type": "collect", + "author": "黎歌" + }, + "positions": [ + { + "x": 7857.5, + "y": -1751.31982421875, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": 7808.752910265299, + "y": -1724, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7791.250200707951, + "y": -1648.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7791.99638725687, + "y": -1613.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7774.509765625, + "y": -1611.37939453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7767.994681239281, + "y": -1594.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7744.752709557348, + "y": -1612.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7734.8583984375, + "y": -1600.625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7731.6201171875, + "y": -1599.73193359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7727.2822265625, + "y": -1602.2294921875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7714.2822265625, + "y": -1556.46875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7718.744140625, + "y": -1552.44287109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7736.500200707951, + "y": -1567, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7755.50439453125, + "y": -1557.8193359375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7759.68896484375, + "y": -1557.2021484375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7769.8515625, + "y": -1555.51806640625, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7764.250903185783, + "y": -1542.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7766.24879575229, + "y": -1523.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7745.7685546875, + "y": -1500.830078125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7743.749498230121, + "y": -1491.75, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7736.5947265625, + "y": -1489.6162109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": 7705.5048169908405, + "y": -1493.25, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": 7698.30419921875, + "y": -1498.427734375, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/茉洁草/茉洁草08-厄里那斯神像-枫丹13个.json b/repo/pathing/茉洁草/茉洁草08-厄里那斯神像-枫丹13个.json index 1bca776c..aa5c54f7 100644 --- a/repo/pathing/茉洁草/茉洁草08-厄里那斯神像-枫丹13个.json +++ b/repo/pathing/茉洁草/茉洁草08-厄里那斯神像-枫丹13个.json @@ -12,7 +12,7 @@ "id": 1, "x": 4749.6357421875, "y": 2636.186767578125, - "type": "path", + "type": "teleport", "move_mode": "walk", "action": "" }, diff --git a/repo/pathing/落落莓/望风山地1x24.json b/repo/pathing/落落莓/望风山地1x24.json index bf801995..23fa0790 100644 --- a/repo/pathing/落落莓/望风山地1x24.json +++ b/repo/pathing/落落莓/望风山地1x24.json @@ -1,110 +1,110 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"望风山地1x24", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":-1272.5078125, - "y":2722.89111328125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1263.2421875, - "y":2750.99560546875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1254.302734375, - "y":2764.2880859375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1219.087890625, - "y":2753.079833984375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1142.9013671875, - "y":2778.504638671875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1122.6328125, - "y":2786.236572265625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1099.109375, - "y":2778.91357421875, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-1062.796875, - "y":2779.894287109375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1095.2402388086812, - "y":2718.5, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1084.7060546875, - "y":2649.568603515625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1074.6552734375, - "y":2640.092529296875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1118.29296875, - "y":2603.93115234375, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1156.6181640625, - "y":2658.3427734375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1176.8037109375, - "y":2685.01171875, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "望风山地1x24", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": -1272.5078125, + "y": 2722.89111328125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": -1263.2421875, + "y": 2750.99560546875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1254.302734375, + "y": 2764.2880859375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1219.087890625, + "y": 2753.079833984375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1142.9013671875, + "y": 2778.504638671875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1122.6328125, + "y": 2786.236572265625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1099.109375, + "y": 2778.91357421875, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -1062.796875, + "y": 2779.894287109375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1095.2402388086812, + "y": 2718.5, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1084.7060546875, + "y": 2649.568603515625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1074.6552734375, + "y": 2640.092529296875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1118.29296875, + "y": 2603.93115234375, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1156.6181640625, + "y": 2658.3427734375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1176.8037109375, + "y": 2685.01171875, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file diff --git a/repo/pathing/落落莓/望风山地3x16.json b/repo/pathing/落落莓/望风山地3x16.json index b4187873..dfdd7d68 100644 --- a/repo/pathing/落落莓/望风山地3x16.json +++ b/repo/pathing/落落莓/望风山地3x16.json @@ -1,152 +1,152 @@ { - "info":{ - "bgi_version":"0.34.5", - "version":"1.0", - "name":"望风山地3x16", - "description":"", - "type":"collect", - "author":"yulalaa" - }, - "positions":[ - { - "x":-1629.3642578125, - "y":2834.408203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1640.2412109375, - "y":2868.231201171875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1626.0022700444933, - "y":2910.5, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-1622.078125, - "y":2923.192626953125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1631.078125, - "y":2927.06494140625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1650.080078125, - "y":2929.49658203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1666.3515625, - "y":2933.884521484375, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1707.9934168709715, - "y":2934.0, - "type":"path", - "move_mode":"fly", - "action":"stop_flying" - }, - { - "x":-1720.3017578125, - "y":2934.336669921875, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1727.1533203125, - "y":2920.980712890625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1739.77734375, - "y":2913.212158203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1774.2646484375, - "y":2907.720703125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1790.306640625, - "y":2918.33056640625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1769.3798828125, - "y":2932.182373046875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1763.775390625, - "y":2933.12939453125, - "type":"target", - "move_mode":"walk", - "action":"" - }, - { - "x":-1810.21484375, - "y":2929.4658203125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1850.5244140625, - "y":2915.93017578125, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1862.1005859375, - "y":2895.688232421875, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1857.900390625, - "y":2870.1259765625, - "type":"path", - "move_mode":"walk", - "action":"" - }, - { - "x":-1846.8193359375, - "y":2847.69970703125, - "type":"target", - "move_mode":"walk", - "action":"" - } - ] + "info": { + "bgi_version": "0.34.5", + "version": "1.0", + "name": "望风山地3x16", + "description": "", + "type": "collect", + "author": "yulalaa" + }, + "positions": [ + { + "x": -1629.3642578125, + "y": 2834.408203125, + "type": "teleport", + "move_mode": "walk", + "action": "" + }, + { + "x": -1640.2412109375, + "y": 2868.231201171875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1626.0022700444933, + "y": 2910.5, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -1622.078125, + "y": 2923.192626953125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1631.078125, + "y": 2927.06494140625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1650.080078125, + "y": 2929.49658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1666.3515625, + "y": 2933.884521484375, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1707.9934168709715, + "y": 2934, + "type": "path", + "move_mode": "fly", + "action": "stop_flying" + }, + { + "x": -1720.3017578125, + "y": 2934.336669921875, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1727.1533203125, + "y": 2920.980712890625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1739.77734375, + "y": 2913.212158203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1774.2646484375, + "y": 2907.720703125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1790.306640625, + "y": 2918.33056640625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1769.3798828125, + "y": 2932.182373046875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1763.775390625, + "y": 2933.12939453125, + "type": "target", + "move_mode": "walk", + "action": "" + }, + { + "x": -1810.21484375, + "y": 2929.4658203125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1850.5244140625, + "y": 2915.93017578125, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1862.1005859375, + "y": 2895.688232421875, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1857.900390625, + "y": 2870.1259765625, + "type": "path", + "move_mode": "walk", + "action": "" + }, + { + "x": -1846.8193359375, + "y": 2847.69970703125, + "type": "target", + "move_mode": "walk", + "action": "" + } + ] } \ No newline at end of file