修复第一个点不是传送点的pathing文件
This commit is contained in:
52
build/other/firstPosTp.js
Normal file
52
build/other/firstPosTp.js
Normal file
@@ -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('处理完成');
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"id": 1,
|
"id": 1,
|
||||||
"x": 3595.5517578125,
|
"x": 3595.5517578125,
|
||||||
"y": 3254.333251953125,
|
"y": 3254.333251953125,
|
||||||
"type": "path",
|
"type": "teleport",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": ""
|
"action": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,54 +1,54 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"小灯草-晨曦酒庄-蒙德4个",
|
"name": "小灯草-晨曦酒庄-蒙德4个",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"不瘦五十斤不改名"
|
"author": "不瘦五十斤不改名"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":-201.20703125,
|
"x": -201.20703125,
|
||||||
"y":1861.82958984375,
|
"y": 1861.82958984375,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-125.4638671875,
|
"x": -125.4638671875,
|
||||||
"y":1875.52197265625,
|
"y": 1875.52197265625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-120.5341796875,
|
"x": -120.5341796875,
|
||||||
"y":1876.8720703125,
|
"y": 1876.8720703125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-116.94921875,
|
"x": -116.94921875,
|
||||||
"y":1873.3349609375,
|
"y": 1873.3349609375,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-117.626953125,
|
"x": -117.626953125,
|
||||||
"y":1870.197265625,
|
"y": 1870.197265625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-119.4970703125,
|
"x": -119.4970703125,
|
||||||
"y":1869.9794921875,
|
"y": 1869.9794921875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"id": 1,
|
"id": 1,
|
||||||
"x": 4984.80078125,
|
"x": 4984.80078125,
|
||||||
"y": 4463.00048828125,
|
"y": 4463.00048828125,
|
||||||
"type": "path",
|
"type": "teleport",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": ""
|
"action": ""
|
||||||
},
|
},
|
||||||
@@ -73,4 +73,4 @@
|
|||||||
"action": ""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"id": 1,
|
"id": 1,
|
||||||
"x": 1043.1806640625,
|
"x": 1043.1806640625,
|
||||||
"y": -558.06298828125,
|
"y": -558.06298828125,
|
||||||
"type": "path",
|
"type": "teleport",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": ""
|
"action": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
"id": 1,
|
"id": 1,
|
||||||
"x": 2703.53955078125,
|
"x": 2703.53955078125,
|
||||||
"y": -761.19091796875,
|
"y": -761.19091796875,
|
||||||
"type": "path",
|
"type": "teleport",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": ""
|
"action": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,142 +1,142 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"name":"浪沫羽鳃1-流泉之众上-11个",
|
"name": "浪沫羽鳃1-流泉之众上-11个",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"黎歌"
|
"author": "黎歌"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":8918.9560546875,
|
"x": 8918.9560546875,
|
||||||
"y":-2679.0810546875,
|
"y": -2679.0810546875,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8877.21484375,
|
"x": 8877.21484375,
|
||||||
"y":-2724.689453125,
|
"y": -2724.689453125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8886.08984375,
|
"x": 8886.08984375,
|
||||||
"y":-2858.322265625,
|
"y": -2858.322265625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8886.08984375,
|
"x": 8886.08984375,
|
||||||
"y":-2858.322265625,
|
"y": -2858.322265625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":"stop_flying"
|
"action": "stop_flying"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8884.4150390625,
|
"x": 8884.4150390625,
|
||||||
"y":-2858.046875,
|
"y": -2858.046875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8879.9091796875,
|
"x": 8879.9091796875,
|
||||||
"y":-2861.529296875,
|
"y": -2861.529296875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8875.4892578125,
|
"x": 8875.4892578125,
|
||||||
"y":-2864.3974609375,
|
"y": -2864.3974609375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8837.703125,
|
"x": 8837.703125,
|
||||||
"y":-2891.904296875,
|
"y": -2891.904296875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8856.499301863947,
|
"x": 8856.499301863947,
|
||||||
"y":-2946.489155489824,
|
"y": -2946.489155489824,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8841.3486328125,
|
"x": 8841.3486328125,
|
||||||
"y":-2947.5869140625,
|
"y": -2947.5869140625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8820.6904296875,
|
"x": 8820.6904296875,
|
||||||
"y":-2946.0986328125,
|
"y": -2946.0986328125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8817.1953125,
|
"x": 8817.1953125,
|
||||||
"y":-2941.5517578125,
|
"y": -2941.5517578125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8813.1259765625,
|
"x": 8813.1259765625,
|
||||||
"y":-2939.8759765625,
|
"y": -2939.8759765625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8806.92578125,
|
"x": 8806.92578125,
|
||||||
"y":-2931.4462890625,
|
"y": -2931.4462890625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8805.9482421875,
|
"x": 8805.9482421875,
|
||||||
"y":-2891.3486328125,
|
"y": -2891.3486328125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8798.9375,
|
"x": 8798.9375,
|
||||||
"y":-2856.0009765625,
|
"y": -2856.0009765625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8781.01953125,
|
"x": 8781.01953125,
|
||||||
"y":-2820.23046875,
|
"y": -2820.23046875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8769.5302734375,
|
"x": 8769.5302734375,
|
||||||
"y":-2824.3251953125,
|
"y": -2824.3251953125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8771.05859375,
|
"x": 8771.05859375,
|
||||||
"y":-2829.9208984375,
|
"y": -2829.9208984375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"id": 1,
|
"id": 1,
|
||||||
"action": "",
|
"action": "",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"type": "path",
|
"type": "teleport",
|
||||||
"x": 489.7939453125,
|
"x": 489.7939453125,
|
||||||
"y": 1435.13525390625
|
"y": 1435.13525390625
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
"y": 1435.14208984375,
|
"y": 1435.14208984375,
|
||||||
"action": "",
|
"action": "",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"type": "path"
|
"type": "teleport"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": 2,
|
"id": 2,
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
"id": 1,
|
"id": 1,
|
||||||
"action": "",
|
"action": "",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"type": "path",
|
"type": "teleport",
|
||||||
"x": -416.15234375,
|
"x": -416.15234375,
|
||||||
"y": 729.060546875
|
"y": 729.060546875
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
"id": 1,
|
"id": 1,
|
||||||
"x": -188.5517578125,
|
"x": -188.5517578125,
|
||||||
"y": 972.47998046875,
|
"y": 972.47998046875,
|
||||||
"type": "path",
|
"type": "teleport",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": ""
|
"action": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,54 +1,54 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"虎牢山1",
|
"name": "虎牢山1",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":1806.029296875,
|
"x": 1806.029296875,
|
||||||
"y":699.9052734375,
|
"y": 699.9052734375,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1819.9977299555067,
|
"x": 1819.9977299555067,
|
||||||
"y":680.75,
|
"y": 680.75,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":"stop_flying"
|
"action": "stop_flying"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1829.0029296875,
|
"x": 1829.0029296875,
|
||||||
"y":666.88720703125,
|
"y": 666.88720703125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":"nahida_collect"
|
"action": "nahida_collect"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1829.15234375,
|
"x": 1829.15234375,
|
||||||
"y":667.8740234375,
|
"y": 667.8740234375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1825.28125,
|
"x": 1825.28125,
|
||||||
"y":670.03759765625,
|
"y": 670.03759765625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1826.4404296875,
|
"x": 1826.4404296875,
|
||||||
"y":665.189453125,
|
"y": 665.189453125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,96 +1,96 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"巫王珀1-2",
|
"name": "巫王珀1-2",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":289.466796875,
|
"x": 289.466796875,
|
||||||
"y":1667.30517578125,
|
"y": 1667.30517578125,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":286.6298828125,
|
"x": 286.6298828125,
|
||||||
"y":1666.24609375,
|
"y": 1666.24609375,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":283.0439453125,
|
"x": 283.0439453125,
|
||||||
"y":1664.419921875,
|
"y": 1664.419921875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":282.3515625,
|
"x": 282.3515625,
|
||||||
"y":1661.42578125,
|
"y": 1661.42578125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":281.755859375,
|
"x": 281.755859375,
|
||||||
"y":1658.455078125,
|
"y": 1658.455078125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":280.33203125,
|
"x": 280.33203125,
|
||||||
"y":1654.89306640625,
|
"y": 1654.89306640625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":278.1640625,
|
"x": 278.1640625,
|
||||||
"y":1652.96240234375,
|
"y": 1652.96240234375,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":276.59765625,
|
"x": 276.59765625,
|
||||||
"y":1651.6884765625,
|
"y": 1651.6884765625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":273.7265625,
|
"x": 273.7265625,
|
||||||
"y":1646.73681640625,
|
"y": 1646.73681640625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":273.0556640625,
|
"x": 273.0556640625,
|
||||||
"y":1645.92724609375,
|
"y": 1645.92724609375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":"nahida_collect"
|
"action": "nahida_collect"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":278.109375,
|
"x": 278.109375,
|
||||||
"y":1643.64990234375,
|
"y": 1643.64990234375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":268.560546875,
|
"x": 268.560546875,
|
||||||
"y":1649.67822265625,
|
"y": 1649.67822265625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,54 +1,54 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"虎牢山2",
|
"name": "虎牢山2",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":1794.19140625,
|
"x": 1794.19140625,
|
||||||
"y":717.47314453125,
|
"y": 717.47314453125,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1799.2568359375,
|
"x": 1799.2568359375,
|
||||||
"y":738.9970703125,
|
"y": 738.9970703125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1796.544921875,
|
"x": 1796.544921875,
|
||||||
"y":750.96044921875,
|
"y": 750.96044921875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":"stop_flying"
|
"action": "stop_flying"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1800.0947265625,
|
"x": 1800.0947265625,
|
||||||
"y":748.8349609375,
|
"y": 748.8349609375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":"nahida_collect"
|
"action": "nahida_collect"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1795.55078125,
|
"x": 1795.55078125,
|
||||||
"y":749.1826171875,
|
"y": 749.1826171875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1804.2109375,
|
"x": 1804.2109375,
|
||||||
"y":750.05322265625,
|
"y": 750.05322265625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,103 +1,103 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"虎牢山2-4",
|
"name": "虎牢山2-4",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":1813.3720703125,
|
"x": 1813.3720703125,
|
||||||
"y":712.63818359375,
|
"y": 712.63818359375,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1828.9697265625,
|
"x": 1828.9697265625,
|
||||||
"y":711.7939453125,
|
"y": 711.7939453125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":"stop_flying"
|
"action": "stop_flying"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1854.9052734375,
|
"x": 1854.9052734375,
|
||||||
"y":710.45654296875,
|
"y": 710.45654296875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1859.2705078125,
|
"x": 1859.2705078125,
|
||||||
"y":710.43701171875,
|
"y": 710.43701171875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":"nahida_collect"
|
"action": "nahida_collect"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1858.2978515625,
|
"x": 1858.2978515625,
|
||||||
"y":711.3203125,
|
"y": 711.3203125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1855.3671875,
|
"x": 1855.3671875,
|
||||||
"y":712.6943359375,
|
"y": 712.6943359375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1857.8056640625,
|
"x": 1857.8056640625,
|
||||||
"y":714.37939453125,
|
"y": 714.37939453125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1856.2548828125,
|
"x": 1856.2548828125,
|
||||||
"y":715.322265625,
|
"y": 715.322265625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1858.19921875,
|
"x": 1858.19921875,
|
||||||
"y":712.96826171875,
|
"y": 712.96826171875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1860.3681640625,
|
"x": 1860.3681640625,
|
||||||
"y":709.51025390625,
|
"y": 709.51025390625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1864.3818359375,
|
"x": 1864.3818359375,
|
||||||
"y":705.3603515625,
|
"y": 705.3603515625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1860.369140625,
|
"x": 1860.369140625,
|
||||||
"y":704.39111328125,
|
"y": 704.39111328125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1855.73828125,
|
"x": 1855.73828125,
|
||||||
"y":703.3154296875,
|
"y": 703.3154296875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,33 +1,33 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"曾言剧院1",
|
"name": "曾言剧院1",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":1998.1064453125,
|
"x": 1998.1064453125,
|
||||||
"y":-678.54541015625,
|
"y": -678.54541015625,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1998.115234375,
|
"x": 1998.115234375,
|
||||||
"y":-644.91259765625,
|
"y": -644.91259765625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":"nahida_collect"
|
"action": "nahida_collect"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":1999.69140625,
|
"x": 1999.69140625,
|
||||||
"y":-648.62841796875,
|
"y": -648.62841796875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,40 +1,40 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"清册装2",
|
"name": "清册装2",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":839.8701171875,
|
"x": 839.8701171875,
|
||||||
"y":1532.546875,
|
"y": 1532.546875,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":845.435546875,
|
"x": 845.435546875,
|
||||||
"y":1567.111328125,
|
"y": 1567.111328125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":837.392578125,
|
"x": 837.392578125,
|
||||||
"y":1593.37744140625,
|
"y": 1593.37744140625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":836.771484375,
|
"x": 836.771484375,
|
||||||
"y":1596.21337890625,
|
"y": 1596.21337890625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":"nahida_collect"
|
"action": "nahida_collect"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,33 +1,33 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"清册装3完成1个",
|
"name": "清册装3完成1个",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":547.7353515625,
|
"x": 547.7353515625,
|
||||||
"y":1766.80908203125,
|
"y": 1766.80908203125,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":509.052734375,
|
"x": 509.052734375,
|
||||||
"y":1826.19677734375,
|
"y": 1826.19677734375,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":508.8544921875,
|
"x": 508.8544921875,
|
||||||
"y":1826.0107421875,
|
"y": 1826.0107421875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":"nahida_collect"
|
"action": "nahida_collect"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,47 +1,47 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"清册装32个",
|
"name": "清册装32个",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":547.689453125,
|
"x": 547.689453125,
|
||||||
"y":1766.78662109375,
|
"y": 1766.78662109375,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":540.6123046875,
|
"x": 540.6123046875,
|
||||||
"y":1770.8388671875,
|
"y": 1770.8388671875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":520.9853515625,
|
"x": 520.9853515625,
|
||||||
"y":1810.00244140625,
|
"y": 1810.00244140625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":"stop_flying"
|
"action": "stop_flying"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":517.25390625,
|
"x": 517.25390625,
|
||||||
"y":1823.44970703125,
|
"y": 1823.44970703125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":"nahida_collect"
|
"action": "nahida_collect"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":516.3916015625,
|
"x": 516.3916015625,
|
||||||
"y":1821.6552734375,
|
"y": 1821.6552734375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,191 +1,191 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"name":"肉龙掌2-坚岩隘谷上-18个",
|
"name": "肉龙掌2-坚岩隘谷上-18个",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"黎歌"
|
"author": "黎歌"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":8400.6953125,
|
"x": 8400.6953125,
|
||||||
"y":-1221.4111328125,
|
"y": -1221.4111328125,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8357.0625,
|
"x": 8357.0625,
|
||||||
"y":-1225.69091796875,
|
"y": -1225.69091796875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8277.7294921875,
|
"x": 8277.7294921875,
|
||||||
"y":-1188.48681640625,
|
"y": -1188.48681640625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8296.201171875,
|
"x": 8296.201171875,
|
||||||
"y":-1213.18212890625,
|
"y": -1213.18212890625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8330.904296875,
|
"x": 8330.904296875,
|
||||||
"y":-1291.4462890625,
|
"y": -1291.4462890625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8318.240234375,
|
"x": 8318.240234375,
|
||||||
"y":-1293.9248046875,
|
"y": -1293.9248046875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8259.1259765625,
|
"x": 8259.1259765625,
|
||||||
"y":-1307.67041015625,
|
"y": -1307.67041015625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8263.49759150458,
|
"x": 8263.49759150458,
|
||||||
"y":-1314.0,
|
"y": -1314,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8255.6689453125,
|
"x": 8255.6689453125,
|
||||||
"y":-1313.23681640625,
|
"y": -1313.23681640625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8164.14599609375,
|
"x": 8164.14599609375,
|
||||||
"y":-1311.05517578125,
|
"y": -1311.05517578125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8163.5556640625,
|
"x": 8163.5556640625,
|
||||||
"y":-1307.1376953125,
|
"y": -1307.1376953125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8115.750602123855,
|
"x": 8115.750602123855,
|
||||||
"y":-1309.25,
|
"y": -1309.25,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8071.000200707951,
|
"x": 8071.000200707951,
|
||||||
"y":-1291.75,
|
"y": -1291.75,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8026.0003010619275,
|
"x": 8026.0003010619275,
|
||||||
"y":-1274.0,
|
"y": -1274,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7965.515354158304,
|
"x": 7965.515354158304,
|
||||||
"y":-1259.75,
|
"y": -1259.75,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7981.57421875,
|
"x": 7981.57421875,
|
||||||
"y":-1296.32177734375,
|
"y": -1296.32177734375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7976.802734375,
|
"x": 7976.802734375,
|
||||||
"y":-1295.435546875,
|
"y": -1295.435546875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8042.765625,
|
"x": 8042.765625,
|
||||||
"y":-1349.9892578125,
|
"y": -1349.9892578125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8048.0322265625,
|
"x": 8048.0322265625,
|
||||||
"y":-1354.607421875,
|
"y": -1354.607421875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7916.3916015625,
|
"x": 7916.3916015625,
|
||||||
"y":-1292.61865234375,
|
"y": -1292.61865234375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7908.474609375,
|
"x": 7908.474609375,
|
||||||
"y":-1291.779296875,
|
"y": -1291.779296875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7880.013246724811,
|
"x": 7880.013246724811,
|
||||||
"y":-1326.5,
|
"y": -1326.5,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7917.04296875,
|
"x": 7917.04296875,
|
||||||
"y":-1394.6494140625,
|
"y": -1394.6494140625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7930.5751953125,
|
"x": 7930.5751953125,
|
||||||
"y":-1402.87158203125,
|
"y": -1402.87158203125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7962.3779296875,
|
"x": 7962.3779296875,
|
||||||
"y":-1419.95458984375,
|
"y": -1419.95458984375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7968.7685546875,
|
"x": 7968.7685546875,
|
||||||
"y":-1425.8544921875,
|
"y": -1425.8544921875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,107 +1,107 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"name":"肉龙掌3-坚岩隘谷右-14个",
|
"name": "肉龙掌3-坚岩隘谷右-14个",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"黎歌"
|
"author": "黎歌"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":7973.6591796875,
|
"x": 7973.6591796875,
|
||||||
"y":-1557.6474609375,
|
"y": -1557.6474609375,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8098.841796875,
|
"x": 8098.841796875,
|
||||||
"y":-1542.27099609375,
|
"y": -1542.27099609375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8098.8779296875,
|
"x": 8098.8779296875,
|
||||||
"y":-1536.9892578125,
|
"y": -1536.9892578125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8120.52734375,
|
"x": 8120.52734375,
|
||||||
"y":-1548.83642578125,
|
"y": -1548.83642578125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8121.89306640625,
|
"x": 8121.89306640625,
|
||||||
"y":-1547.82080078125,
|
"y": -1547.82080078125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8118.91015625,
|
"x": 8118.91015625,
|
||||||
"y":-1523.75927734375,
|
"y": -1523.75927734375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8193.224710798087,
|
"x": 8193.224710798087,
|
||||||
"y":-1477.25,
|
"y": -1477.25,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8141.720703125,
|
"x": 8141.720703125,
|
||||||
"y":-1419.4267578125,
|
"y": -1419.4267578125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8117.8154296875,
|
"x": 8117.8154296875,
|
||||||
"y":-1399.94677734375,
|
"y": -1399.94677734375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8117.248896106266,
|
"x": 8117.248896106266,
|
||||||
"y":-1391.75,
|
"y": -1391.75,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8111.20703125,
|
"x": 8111.20703125,
|
||||||
"y":-1388.3515625,
|
"y": -1388.3515625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8081.8125,
|
"x": 8081.8125,
|
||||||
"y":-1383.92724609375,
|
"y": -1383.92724609375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8070.499197168194,
|
"x": 8070.499197168194,
|
||||||
"y":-1399.5,
|
"y": -1399.5,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8055.1865234375,
|
"x": 8055.1865234375,
|
||||||
"y":-1393.951171875,
|
"y": -1393.951171875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,65 +1,65 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"name":"肉龙掌5-硫晶支脉左-5个",
|
"name": "肉龙掌5-硫晶支脉左-5个",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"黎歌"
|
"author": "黎歌"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":8452.509765625,
|
"x": 8452.509765625,
|
||||||
"y":-1477.23046875,
|
"y": -1477.23046875,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8443.138671875,
|
"x": 8443.138671875,
|
||||||
"y":-1495.28662109375,
|
"y": -1495.28662109375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8437.236328125,
|
"x": 8437.236328125,
|
||||||
"y":-1497.9099999999999,
|
"y": -1497.9099999999999,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8445.0400390625,
|
"x": 8445.0400390625,
|
||||||
"y":-1531.3720703125,
|
"y": -1531.3720703125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8450.256422654455,
|
"x": 8450.256422654455,
|
||||||
"y":-1517.75,
|
"y": -1517.75,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8486.763671875,
|
"x": 8486.763671875,
|
||||||
"y":-1516.75732421875,
|
"y": -1516.75732421875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8481.252007079516,
|
"x": 8481.252007079516,
|
||||||
"y":-1515.0,
|
"y": -1515,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":8485.919921875,
|
"x": 8485.919921875,
|
||||||
"y":-1513.4580078125,
|
"y": -1513.4580078125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,170 +1,170 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"name":"肉龙掌7-隆崛坡-13个",
|
"name": "肉龙掌7-隆崛坡-13个",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"黎歌"
|
"author": "黎歌"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":7857.5,
|
"x": 7857.5,
|
||||||
"y":-1751.31982421875,
|
"y": -1751.31982421875,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7808.752910265299,
|
"x": 7808.752910265299,
|
||||||
"y":-1724.0,
|
"y": -1724,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7791.250200707951,
|
"x": 7791.250200707951,
|
||||||
"y":-1648.5,
|
"y": -1648.5,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7791.99638725687,
|
"x": 7791.99638725687,
|
||||||
"y":-1613.25,
|
"y": -1613.25,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7774.509765625,
|
"x": 7774.509765625,
|
||||||
"y":-1611.37939453125,
|
"y": -1611.37939453125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7767.994681239281,
|
"x": 7767.994681239281,
|
||||||
"y":-1594.5,
|
"y": -1594.5,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7744.752709557348,
|
"x": 7744.752709557348,
|
||||||
"y":-1612.25,
|
"y": -1612.25,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7734.8583984375,
|
"x": 7734.8583984375,
|
||||||
"y":-1600.625,
|
"y": -1600.625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7731.6201171875,
|
"x": 7731.6201171875,
|
||||||
"y":-1599.73193359375,
|
"y": -1599.73193359375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7727.2822265625,
|
"x": 7727.2822265625,
|
||||||
"y":-1602.2294921875,
|
"y": -1602.2294921875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7714.2822265625,
|
"x": 7714.2822265625,
|
||||||
"y":-1556.46875,
|
"y": -1556.46875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7718.744140625,
|
"x": 7718.744140625,
|
||||||
"y":-1552.44287109375,
|
"y": -1552.44287109375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7736.500200707951,
|
"x": 7736.500200707951,
|
||||||
"y":-1567.0,
|
"y": -1567,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7755.50439453125,
|
"x": 7755.50439453125,
|
||||||
"y":-1557.8193359375,
|
"y": -1557.8193359375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7759.68896484375,
|
"x": 7759.68896484375,
|
||||||
"y":-1557.2021484375,
|
"y": -1557.2021484375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7769.8515625,
|
"x": 7769.8515625,
|
||||||
"y":-1555.51806640625,
|
"y": -1555.51806640625,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7764.250903185783,
|
"x": 7764.250903185783,
|
||||||
"y":-1542.5,
|
"y": -1542.5,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7766.24879575229,
|
"x": 7766.24879575229,
|
||||||
"y":-1523.25,
|
"y": -1523.25,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7745.7685546875,
|
"x": 7745.7685546875,
|
||||||
"y":-1500.830078125,
|
"y": -1500.830078125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7743.749498230121,
|
"x": 7743.749498230121,
|
||||||
"y":-1491.75,
|
"y": -1491.75,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7736.5947265625,
|
"x": 7736.5947265625,
|
||||||
"y":-1489.6162109375,
|
"y": -1489.6162109375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7705.5048169908405,
|
"x": 7705.5048169908405,
|
||||||
"y":-1493.25,
|
"y": -1493.25,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":7698.30419921875,
|
"x": 7698.30419921875,
|
||||||
"y":-1498.427734375,
|
"y": -1498.427734375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"id": 1,
|
"id": 1,
|
||||||
"x": 4749.6357421875,
|
"x": 4749.6357421875,
|
||||||
"y": 2636.186767578125,
|
"y": 2636.186767578125,
|
||||||
"type": "path",
|
"type": "teleport",
|
||||||
"move_mode": "walk",
|
"move_mode": "walk",
|
||||||
"action": ""
|
"action": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,110 +1,110 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"望风山地1x24",
|
"name": "望风山地1x24",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":-1272.5078125,
|
"x": -1272.5078125,
|
||||||
"y":2722.89111328125,
|
"y": 2722.89111328125,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1263.2421875,
|
"x": -1263.2421875,
|
||||||
"y":2750.99560546875,
|
"y": 2750.99560546875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1254.302734375,
|
"x": -1254.302734375,
|
||||||
"y":2764.2880859375,
|
"y": 2764.2880859375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1219.087890625,
|
"x": -1219.087890625,
|
||||||
"y":2753.079833984375,
|
"y": 2753.079833984375,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1142.9013671875,
|
"x": -1142.9013671875,
|
||||||
"y":2778.504638671875,
|
"y": 2778.504638671875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1122.6328125,
|
"x": -1122.6328125,
|
||||||
"y":2786.236572265625,
|
"y": 2786.236572265625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1099.109375,
|
"x": -1099.109375,
|
||||||
"y":2778.91357421875,
|
"y": 2778.91357421875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":"stop_flying"
|
"action": "stop_flying"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1062.796875,
|
"x": -1062.796875,
|
||||||
"y":2779.894287109375,
|
"y": 2779.894287109375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1095.2402388086812,
|
"x": -1095.2402388086812,
|
||||||
"y":2718.5,
|
"y": 2718.5,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1084.7060546875,
|
"x": -1084.7060546875,
|
||||||
"y":2649.568603515625,
|
"y": 2649.568603515625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1074.6552734375,
|
"x": -1074.6552734375,
|
||||||
"y":2640.092529296875,
|
"y": 2640.092529296875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1118.29296875,
|
"x": -1118.29296875,
|
||||||
"y":2603.93115234375,
|
"y": 2603.93115234375,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1156.6181640625,
|
"x": -1156.6181640625,
|
||||||
"y":2658.3427734375,
|
"y": 2658.3427734375,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1176.8037109375,
|
"x": -1176.8037109375,
|
||||||
"y":2685.01171875,
|
"y": 2685.01171875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -1,152 +1,152 @@
|
|||||||
{
|
{
|
||||||
"info":{
|
"info": {
|
||||||
"bgi_version":"0.34.5",
|
"bgi_version": "0.34.5",
|
||||||
"version":"1.0",
|
"version": "1.0",
|
||||||
"name":"望风山地3x16",
|
"name": "望风山地3x16",
|
||||||
"description":"",
|
"description": "",
|
||||||
"type":"collect",
|
"type": "collect",
|
||||||
"author":"yulalaa"
|
"author": "yulalaa"
|
||||||
},
|
},
|
||||||
"positions":[
|
"positions": [
|
||||||
{
|
{
|
||||||
"x":-1629.3642578125,
|
"x": -1629.3642578125,
|
||||||
"y":2834.408203125,
|
"y": 2834.408203125,
|
||||||
"type":"path",
|
"type": "teleport",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1640.2412109375,
|
"x": -1640.2412109375,
|
||||||
"y":2868.231201171875,
|
"y": 2868.231201171875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1626.0022700444933,
|
"x": -1626.0022700444933,
|
||||||
"y":2910.5,
|
"y": 2910.5,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":"stop_flying"
|
"action": "stop_flying"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1622.078125,
|
"x": -1622.078125,
|
||||||
"y":2923.192626953125,
|
"y": 2923.192626953125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1631.078125,
|
"x": -1631.078125,
|
||||||
"y":2927.06494140625,
|
"y": 2927.06494140625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1650.080078125,
|
"x": -1650.080078125,
|
||||||
"y":2929.49658203125,
|
"y": 2929.49658203125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1666.3515625,
|
"x": -1666.3515625,
|
||||||
"y":2933.884521484375,
|
"y": 2933.884521484375,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1707.9934168709715,
|
"x": -1707.9934168709715,
|
||||||
"y":2934.0,
|
"y": 2934,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"fly",
|
"move_mode": "fly",
|
||||||
"action":"stop_flying"
|
"action": "stop_flying"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1720.3017578125,
|
"x": -1720.3017578125,
|
||||||
"y":2934.336669921875,
|
"y": 2934.336669921875,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1727.1533203125,
|
"x": -1727.1533203125,
|
||||||
"y":2920.980712890625,
|
"y": 2920.980712890625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1739.77734375,
|
"x": -1739.77734375,
|
||||||
"y":2913.212158203125,
|
"y": 2913.212158203125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1774.2646484375,
|
"x": -1774.2646484375,
|
||||||
"y":2907.720703125,
|
"y": 2907.720703125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1790.306640625,
|
"x": -1790.306640625,
|
||||||
"y":2918.33056640625,
|
"y": 2918.33056640625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1769.3798828125,
|
"x": -1769.3798828125,
|
||||||
"y":2932.182373046875,
|
"y": 2932.182373046875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1763.775390625,
|
"x": -1763.775390625,
|
||||||
"y":2933.12939453125,
|
"y": 2933.12939453125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1810.21484375,
|
"x": -1810.21484375,
|
||||||
"y":2929.4658203125,
|
"y": 2929.4658203125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1850.5244140625,
|
"x": -1850.5244140625,
|
||||||
"y":2915.93017578125,
|
"y": 2915.93017578125,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1862.1005859375,
|
"x": -1862.1005859375,
|
||||||
"y":2895.688232421875,
|
"y": 2895.688232421875,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1857.900390625,
|
"x": -1857.900390625,
|
||||||
"y":2870.1259765625,
|
"y": 2870.1259765625,
|
||||||
"type":"path",
|
"type": "path",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"x":-1846.8193359375,
|
"x": -1846.8193359375,
|
||||||
"y":2847.69970703125,
|
"y": 2847.69970703125,
|
||||||
"type":"target",
|
"type": "target",
|
||||||
"move_mode":"walk",
|
"move_mode": "walk",
|
||||||
"action":""
|
"action": ""
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user