feat: 校验编码

This commit is contained in:
起个名字好难的喵
2025-07-26 10:30:48 +08:00
parent 37b859e26a
commit a24eb4d2ee
8 changed files with 599 additions and 534 deletions

View File

@@ -4,6 +4,7 @@ import json
import os
import subprocess
import re
import chardet
from packaging.version import parse
from semver import VersionInfo
@@ -414,6 +415,68 @@ def check_position_ids(positions):
return validation_issues, corrections
# ==================== 验证修复编码 ====================
def detect_encoding(file_path, read_size=2048):
try:
with open(file_path, 'rb') as f:
raw = f.read(read_size)
result = chardet.detect(raw)
return result['encoding'], result['confidence']
except:
return None, 0
def fix_encoding_name(enc, file_path=None):
if not enc:
return None
enc = enc.lower()
if enc in ['ascii']:
try:
with open(file_path, 'rb') as f:
raw = f.read()
raw.decode('utf-8')
return 'utf-8'
except:
return 'gb18030'
if enc in ['gb2312', 'gbk', 'windows-1252', 'iso-8859-1', 'gb18030']:
return 'gb18030'
return enc
def convert_to_utf8(file_path, original_encoding):
try:
encoding = fix_encoding_name(original_encoding, file_path)
with open(file_path, 'r', encoding=encoding, errors='replace') as f:
content = f.read()
with open(file_path, 'w', encoding='utf-8') as f:
f.write(content)
print(f"[✔] Converted to UTF-8: {file_path} (from {original_encoding}{encoding})")
except Exception as e:
print(f"[✖] Failed to convert: {file_path} | Error: {e}")
def process_file(file_path, target_extensions=None):
if target_extensions and not any(file_path.lower().endswith(ext) for ext in target_extensions):
return
encoding, confidence = detect_encoding(file_path)
if encoding is None or confidence < 0.7:
print(f"[⚠️] Unknown encoding: {file_path} | Detected: {encoding}, Conf: {confidence:.2f}")
return
if encoding.lower() == 'utf-8':
return # Skip already UTF-8
convert_to_utf8(file_path, encoding)
def scan_and_convert(path, target_extensions=None):
if os.path.isfile(path):
process_file(path, target_extensions)
elif os.path.isdir(path):
for dirpath, _, filenames in os.walk(path):
for filename in filenames:
filepath = os.path.join(dirpath, filename)
process_file(filepath, target_extensions)
else:
print(f"❌ Path not found: {path}")
# ==================== 主验证逻辑 ====================
def initialize_data(data, file_path):
@@ -614,6 +677,7 @@ def main():
all_notices = [] # 初始化 all_notices 变量
if os.path.isfile(path) and path.endswith('.json'):
scan_and_convert(path)
# print(f"\n🔍 校验文件: {path}")
notices = validate_file(path, auto_fix)
if notices:
@@ -629,6 +693,7 @@ def main():
if file.endswith('.json'):
file_path = os.path.join(root, file)
print(f"\n🔍 校验文件: {file_path}")
scan_and_convert(file_path)
notices = validate_file(file_path, auto_fix)
if notices:
all_notices.extend([f"{file_path}: {n}" for n in notices])

View File

@@ -1,4 +1,4 @@
{
{
"info": {
"name": "07-树王圣体菇-降诸魔山地下-6个",
"type": "collect",
@@ -22,14 +22,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 2289.212890625,
"y": -1598.9521484375,
"x": 2289.21,
"y": -1598.95,
"action_params": ""
},
{
"id": 2,
"x": 2291.970703125,
"y": -1603.1650390625,
"x": 2291.97,
"y": -1603.17,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 3,
"x": 2299.8310546875,
"y": -1620.0869140625,
"x": 2299.83,
"y": -1620.09,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -46,8 +46,8 @@
},
{
"id": 4,
"x": 2303.6142578125,
"y": -1637.69677734375,
"x": 2303.61,
"y": -1637.7,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -55,8 +55,8 @@
},
{
"id": 5,
"x": 2294.6484375,
"y": -1666.84619140625,
"x": 2294.65,
"y": -1666.85,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -64,8 +64,8 @@
},
{
"id": 6,
"x": 2281.509765625,
"y": -1685.4453125,
"x": 2281.51,
"y": -1685.45,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -73,8 +73,8 @@
},
{
"id": 7,
"x": 2280.2734375,
"y": -1718.3603515625,
"x": 2280.27,
"y": -1718.36,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -82,8 +82,8 @@
},
{
"id": 8,
"x": 2260.091796875,
"y": -1729.17578125,
"x": 2260.09,
"y": -1729.18,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -91,8 +91,8 @@
},
{
"id": 9,
"x": 2229.333984375,
"y": -1743.10400390625,
"x": 2229.33,
"y": -1743.1,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -100,8 +100,8 @@
},
{
"id": 10,
"x": 2193.6103515625,
"y": -1739.107421875,
"x": 2193.61,
"y": -1739.11,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -109,8 +109,8 @@
},
{
"id": 11,
"x": 2156.1923828125,
"y": -1734.05126953125,
"x": 2156.19,
"y": -1734.05,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -118,8 +118,8 @@
},
{
"id": 12,
"x": 2156.197265625,
"y": -1734.04296875,
"x": 2156.2,
"y": -1734.04,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -127,8 +127,8 @@
},
{
"id": 13,
"x": 2150.740234375,
"y": -1730.45751953125,
"x": 2150.74,
"y": -1730.46,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -136,8 +136,8 @@
},
{
"id": 14,
"x": 2141.41015625,
"y": -1723.76513671875,
"x": 2141.41,
"y": -1723.77,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -145,8 +145,8 @@
},
{
"id": 15,
"x": 2124.09375,
"y": -1713.771484375,
"x": 2124.09,
"y": -1713.77,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -154,8 +154,8 @@
},
{
"id": 16,
"x": 2115.03125,
"y": -1708.2568359375,
"x": 2115.03,
"y": -1708.26,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -163,8 +163,8 @@
},
{
"id": 17,
"x": 2111.2265625,
"y": -1700.63671875,
"x": 2111.23,
"y": -1700.64,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -172,8 +172,8 @@
},
{
"id": 18,
"x": 2109.248046875,
"y": -1664.27734375,
"x": 2109.25,
"y": -1664.28,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -181,8 +181,8 @@
},
{
"id": 19,
"x": 2109.248046875,
"y": -1664.27734375,
"x": 2109.25,
"y": -1664.28,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -190,8 +190,8 @@
},
{
"id": 20,
"x": 2104.720703125,
"y": -1665.1923828125,
"x": 2104.72,
"y": -1665.19,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -199,8 +199,8 @@
},
{
"id": 21,
"x": 2101.74609375,
"y": -1669.3447265625,
"x": 2101.75,
"y": -1669.34,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -208,8 +208,8 @@
},
{
"id": 22,
"x": 2104.7353515625,
"y": -1665.81005859375,
"x": 2104.74,
"y": -1665.81,
"type": "path",
"move_mode": "jump",
"action": "",
@@ -217,8 +217,8 @@
},
{
"id": 23,
"x": 2115.0244140625,
"y": -1664.447265625,
"x": 2115.02,
"y": -1664.45,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -226,8 +226,8 @@
},
{
"id": 24,
"x": 2128.638671875,
"y": -1658.5849609375,
"x": 2128.64,
"y": -1658.58,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
@@ -235,8 +235,8 @@
},
{
"id": 25,
"x": 2108.849609375,
"y": -1630.99072265625,
"x": 2108.85,
"y": -1630.99,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -244,8 +244,8 @@
},
{
"id": 26,
"x": 2107.216796875,
"y": -1628.96630859375,
"x": 2107.22,
"y": -1628.97,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -253,8 +253,8 @@
},
{
"id": 27,
"x": 2105.7626953125,
"y": -1625.30712890625,
"x": 2105.76,
"y": -1625.31,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -262,8 +262,8 @@
},
{
"id": 28,
"x": 2107.3505859375,
"y": -1629.7412109375,
"x": 2107.35,
"y": -1629.74,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -271,8 +271,8 @@
},
{
"id": 29,
"x": 2107.15234375,
"y": -1638.21923828125,
"x": 2107.15,
"y": -1638.22,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -280,8 +280,8 @@
},
{
"id": 30,
"x": 2112.744140625,
"y": -1640.50390625,
"x": 2112.74,
"y": -1640.5,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -289,8 +289,8 @@
},
{
"id": 31,
"x": 2114.12890625,
"y": -1635.853515625,
"x": 2114.13,
"y": -1635.85,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -298,8 +298,8 @@
},
{
"id": 32,
"x": 2118.455078125,
"y": -1605.1865234375,
"x": 2118.46,
"y": -1605.19,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -307,8 +307,8 @@
},
{
"id": 33,
"x": 2120.841796875,
"y": -1593.10986328125,
"x": 2120.84,
"y": -1593.11,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -316,8 +316,8 @@
},
{
"id": 34,
"x": 2122.1142578125,
"y": -1563.3212890625,
"x": 2122.11,
"y": -1563.32,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -325,8 +325,8 @@
},
{
"id": 35,
"x": 2132.9482421875,
"y": -1564.119140625,
"x": 2132.95,
"y": -1564.12,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -334,8 +334,8 @@
},
{
"id": 36,
"x": 2145.1953125,
"y": -1555.892578125,
"x": 2145.2,
"y": -1555.89,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
@@ -343,8 +343,8 @@
},
{
"id": 37,
"x": 2152.1796875,
"y": -1559.05419921875,
"x": 2152.18,
"y": -1559.05,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -352,8 +352,8 @@
},
{
"id": 38,
"x": 2160.755859375,
"y": -1558.38916015625,
"x": 2160.76,
"y": -1558.39,
"type": "path",
"move_mode": "jump",
"action": "",
@@ -361,8 +361,8 @@
},
{
"id": 39,
"x": 2195.40234375,
"y": -1566.45751953125,
"x": 2195.4,
"y": -1566.46,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -370,8 +370,8 @@
},
{
"id": 40,
"x": 2223.3916015625,
"y": -1572.7734375,
"x": 2223.39,
"y": -1572.77,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -379,8 +379,8 @@
},
{
"id": 41,
"x": 2223.6572265625,
"y": -1572.83203125,
"x": 2223.66,
"y": -1572.83,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -388,8 +388,8 @@
},
{
"id": 42,
"x": 2223.595703125,
"y": -1570.24267578125,
"x": 2223.6,
"y": -1570.24,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -1,4 +1,4 @@
{
{
"info": {
"name": "08-树王圣体菇-荼河之座地下-5个",
"type": "collect",
@@ -19,8 +19,8 @@
"positions": [
{
"id": 1,
"x": 3467.1484375,
"y": -1746.7548828125,
"x": 3467.15,
"y": -1746.75,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 2,
"x": 3429.1572265625,
"y": -1757.7529296875,
"x": 3429.16,
"y": -1757.75,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -37,8 +37,8 @@
},
{
"id": 3,
"x": 3415.728515625,
"y": -1758.7255859375,
"x": 3415.73,
"y": -1758.73,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 4,
"x": 3391.4443359375,
"y": -1759.296875,
"x": 3391.44,
"y": -1759.3,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -55,8 +55,8 @@
},
{
"id": 5,
"x": 3384.24609375,
"y": -1760.8271484375,
"x": 3384.25,
"y": -1760.83,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -64,8 +64,8 @@
},
{
"id": 6,
"x": 3375.0205078125,
"y": -1765.41845703125,
"x": 3375.02,
"y": -1765.42,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -73,8 +73,8 @@
},
{
"id": 7,
"x": 3369.77734375,
"y": -1772.318359375,
"x": 3369.78,
"y": -1772.32,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -82,8 +82,8 @@
},
{
"id": 8,
"x": 3369.91796875,
"y": -1777.81201171875,
"x": 3369.92,
"y": -1777.81,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -91,8 +91,8 @@
},
{
"id": 9,
"x": 3375.271484375,
"y": -1782.7255859375,
"x": 3375.27,
"y": -1782.73,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -100,8 +100,8 @@
},
{
"id": 10,
"x": 3381.5595703125,
"y": -1787.44873046875,
"x": 3381.56,
"y": -1787.45,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -109,8 +109,8 @@
},
{
"id": 11,
"x": 3396.890625,
"y": -1784.8515625,
"x": 3396.89,
"y": -1784.85,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -118,8 +118,8 @@
},
{
"id": 12,
"x": 3414.1669921875,
"y": -1786.46337890625,
"x": 3414.17,
"y": -1786.46,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -127,8 +127,8 @@
},
{
"id": 13,
"x": 3419.6298828125,
"y": -1785.61376953125,
"x": 3419.63,
"y": -1785.61,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -136,8 +136,8 @@
},
{
"id": 14,
"x": 3434.466796875,
"y": -1806.01318359375,
"x": 3434.47,
"y": -1806.01,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -145,8 +145,8 @@
},
{
"id": 15,
"x": 3437.53125,
"y": -1810.2509765625,
"x": 3437.53,
"y": -1810.25,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -154,8 +154,8 @@
},
{
"id": 16,
"x": 3440.5517578125,
"y": -1808.2314453125,
"x": 3440.55,
"y": -1808.23,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -163,8 +163,8 @@
},
{
"id": 17,
"x": 3444.5400390625,
"y": -1803.4794921875,
"x": 3444.54,
"y": -1803.48,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -172,8 +172,8 @@
},
{
"id": 18,
"x": 3449.7158203125,
"y": -1804.5615234375,
"x": 3449.72,
"y": -1804.56,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -181,8 +181,8 @@
},
{
"id": 19,
"x": 3445.2109375,
"y": -1803.6845703125,
"x": 3445.21,
"y": -1803.68,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -190,8 +190,8 @@
},
{
"id": 20,
"x": 3452.3955078125,
"y": -1798.70849609375,
"x": 3452.4,
"y": -1798.71,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -199,8 +199,8 @@
},
{
"id": 21,
"x": 3462.763671875,
"y": -1793.8388671875,
"x": 3462.76,
"y": -1793.84,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -208,8 +208,8 @@
},
{
"id": 22,
"x": 3474.1328125,
"y": -1794.7900390625,
"x": 3474.13,
"y": -1794.79,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -217,8 +217,8 @@
},
{
"id": 23,
"x": 3483.958984375,
"y": -1796.07958984375,
"x": 3483.96,
"y": -1796.08,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -226,8 +226,8 @@
},
{
"id": 24,
"x": 3490.2578125,
"y": -1794.810546875,
"x": 3490.26,
"y": -1794.81,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -235,8 +235,8 @@
},
{
"id": 25,
"x": 3496.509765625,
"y": -1794.150390625,
"x": 3496.51,
"y": -1794.15,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -244,8 +244,8 @@
},
{
"id": 26,
"x": 3488.8125,
"y": -1797.74169921875,
"x": 3488.81,
"y": -1797.74,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -253,8 +253,8 @@
},
{
"id": 27,
"x": 3488.521484375,
"y": -1805.97216796875,
"x": 3488.52,
"y": -1805.97,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -262,8 +262,8 @@
},
{
"id": 28,
"x": 3493.314453125,
"y": -1804.07861328125,
"x": 3493.31,
"y": -1804.08,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -1,4 +1,4 @@
{
{
"info": {
"name": "09-树王圣体菇-往昔的桓那兰那上方地下-4个",
"type": "collect",
@@ -19,8 +19,8 @@
"positions": [
{
"id": 1,
"x": 3705.8671875,
"y": -497.1376953125,
"x": 3705.87,
"y": -497.14,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 2,
"x": 3715.4951171875,
"y": -479.73876953125,
"x": 3715.5,
"y": -479.74,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 3,
"x": 3718.8876953125,
"y": -444.2392578125,
"x": 3718.89,
"y": -444.24,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 4,
"x": 3805.6748046875,
"y": -351.685546875,
"x": 3805.67,
"y": -351.69,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 5,
"x": 3821.359375,
"y": -337.966796875,
"x": 3821.36,
"y": -337.97,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -64,8 +64,8 @@
},
{
"id": 6,
"x": 3824.66015625,
"y": -312.55615234375,
"x": 3824.66,
"y": -312.56,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -73,8 +73,8 @@
},
{
"id": 7,
"x": 3828.376953125,
"y": -310.8154296875,
"x": 3828.38,
"y": -310.82,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -82,8 +82,8 @@
},
{
"id": 8,
"x": 3839.791015625,
"y": -309.02734375,
"x": 3839.79,
"y": -309.03,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -91,8 +91,8 @@
},
{
"id": 9,
"x": 3846.994140625,
"y": -302.68505859375,
"x": 3846.99,
"y": -302.69,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -100,8 +100,8 @@
},
{
"id": 10,
"x": 3860.583984375,
"y": -314.0966796875,
"x": 3860.58,
"y": -314.1,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -109,8 +109,8 @@
},
{
"id": 11,
"x": 3872.0302734375,
"y": -324.791015625,
"x": 3872.03,
"y": -324.79,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -118,8 +118,8 @@
},
{
"id": 12,
"x": 3872.2763671875,
"y": -330.21875,
"x": 3872.28,
"y": -330.22,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -127,8 +127,8 @@
},
{
"id": 13,
"x": 3860.9189453125,
"y": -347.81298828125,
"x": 3860.92,
"y": -347.81,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -136,8 +136,8 @@
},
{
"id": 14,
"x": 3862.1337890625,
"y": -361.6767578125,
"x": 3862.13,
"y": -361.68,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -145,8 +145,8 @@
},
{
"id": 15,
"x": 3876.265625,
"y": -366.048828125,
"x": 3876.27,
"y": -366.05,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -154,8 +154,8 @@
},
{
"id": 16,
"x": 3913.4970703125,
"y": -376.78759765625,
"x": 3913.5,
"y": -376.79,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -163,8 +163,8 @@
},
{
"id": 17,
"x": 3918.3984375,
"y": -395.5498046875,
"x": 3918.4,
"y": -395.55,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -172,8 +172,8 @@
},
{
"id": 18,
"x": 3922.3837890625,
"y": -420.8232421875,
"x": 3922.38,
"y": -420.82,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -181,8 +181,8 @@
},
{
"id": 19,
"x": 3913.5244140625,
"y": -426.5068359375,
"x": 3913.52,
"y": -426.51,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -190,8 +190,8 @@
},
{
"id": 20,
"x": 3921.498046875,
"y": -431.228515625,
"x": 3921.5,
"y": -431.23,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -199,8 +199,8 @@
},
{
"id": 21,
"x": 3925.419921875,
"y": -432.2705078125,
"x": 3925.42,
"y": -432.27,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -208,8 +208,8 @@
},
{
"id": 22,
"x": 3932.015625,
"y": -436.68115234375,
"x": 3932.02,
"y": -436.68,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -217,8 +217,8 @@
},
{
"id": 23,
"x": 3926.216796875,
"y": -163.984375,
"x": 3926.22,
"y": -163.98,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -226,8 +226,8 @@
},
{
"id": 24,
"x": 3922.896484375,
"y": -160.0732421875,
"x": 3922.9,
"y": -160.07,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -235,8 +235,8 @@
},
{
"id": 25,
"x": 3913.3740234375,
"y": -129.43505859375,
"x": 3913.37,
"y": -129.44,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -244,8 +244,8 @@
},
{
"id": 26,
"x": 3902.55078125,
"y": -127.14794921875,
"x": 3902.55,
"y": -127.15,
"type": "path",
"move_mode": "jump",
"action": "",
@@ -253,8 +253,8 @@
},
{
"id": 27,
"x": 3891.1494140625,
"y": -114.89404296875,
"x": 3891.15,
"y": -114.89,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -262,8 +262,8 @@
},
{
"id": 28,
"x": 3888.3046875,
"y": -107.3134765625,
"x": 3888.3,
"y": -107.31,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -271,8 +271,8 @@
},
{
"id": 29,
"x": 3882.294921875,
"y": -106.400390625,
"x": 3882.29,
"y": -106.4,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -280,8 +280,8 @@
},
{
"id": 30,
"x": 3926.216796875,
"y": -163.984375,
"x": 3926.22,
"y": -163.98,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -289,8 +289,8 @@
},
{
"id": 31,
"x": 3933.259765625,
"y": -192.4814453125,
"x": 3933.26,
"y": -192.48,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -298,8 +298,8 @@
},
{
"id": 32,
"x": 3924.3681640625,
"y": -219.40625,
"x": 3924.37,
"y": -219.41,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -307,8 +307,8 @@
},
{
"id": 33,
"x": 3937.828125,
"y": -240.0068359375,
"x": 3937.83,
"y": -240.01,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -316,8 +316,8 @@
},
{
"id": 34,
"x": 3944.234375,
"y": -274.87744140625,
"x": 3944.23,
"y": -274.88,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -325,8 +325,8 @@
},
{
"id": 35,
"x": 3953.779296875,
"y": -286.15771484375,
"x": 3953.78,
"y": -286.16,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -334,8 +334,8 @@
},
{
"id": 36,
"x": 3956.5859375,
"y": -290.8994140625,
"x": 3956.59,
"y": -290.9,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -343,8 +343,8 @@
},
{
"id": 37,
"x": 3954.2109375,
"y": -285.66357421875,
"x": 3954.21,
"y": -285.66,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",

View File

@@ -1,4 +1,4 @@
{
{
"info": {
"name": "10-树王圣体菇-觉王之殿-3个",
"type": "collect",
@@ -19,8 +19,8 @@
"positions": [
{
"id": 1,
"x": 3491.4111328125,
"y": -598.69873046875,
"x": 3491.41,
"y": -598.7,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 2,
"x": 3507.689453125,
"y": -600.49609375,
"x": 3507.69,
"y": -600.5,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 3,
"x": 3519.626953125,
"y": -605.71142578125,
"x": 3519.63,
"y": -605.71,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 4,
"x": 3532.58984375,
"y": -618.37890625,
"x": 3532.59,
"y": -618.38,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 5,
"x": 3548.669921875,
"y": -625.6220703125,
"x": 3548.67,
"y": -625.62,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -64,8 +64,8 @@
},
{
"id": 6,
"x": 3568.462890625,
"y": -615.26953125,
"x": 3568.46,
"y": -615.27,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -73,8 +73,8 @@
},
{
"id": 7,
"x": 3580.658203125,
"y": -608.15380859375,
"x": 3580.66,
"y": -608.15,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -82,8 +82,8 @@
},
{
"id": 8,
"x": 3579.845703125,
"y": -602.44677734375,
"x": 3579.85,
"y": -602.45,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -91,8 +91,8 @@
},
{
"id": 9,
"x": 3587.8037109375,
"y": -604.91552734375,
"x": 3587.8,
"y": -604.92,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -100,8 +100,8 @@
},
{
"id": 10,
"x": 3594.2236328125,
"y": -603.64794921875,
"x": 3594.22,
"y": -603.65,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -109,8 +109,8 @@
},
{
"id": 11,
"x": 3604.013671875,
"y": -610.4423828125,
"x": 3604.01,
"y": -610.44,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -118,8 +118,8 @@
},
{
"id": 12,
"x": 3603.630859375,
"y": -623.8984375,
"x": 3603.63,
"y": -623.9,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -127,8 +127,8 @@
},
{
"id": 13,
"x": 3601.1875,
"y": -633.10302734375,
"x": 3601.19,
"y": -633.1,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -1,4 +1,4 @@
{
{
"info": {
"name": "11-树王圣体菇-无郁稠林地下-4个",
"type": "collect",
@@ -19,8 +19,8 @@
"positions": [
{
"id": 1,
"x": 2483.12890625,
"y": 6.4052734375,
"x": 2483.13,
"y": 6.41,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 2,
"x": 2477.583984375,
"y": 1.5078125,
"x": 2477.58,
"y": 1.51,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 3,
"x": 2456.6142578125,
"y": 8.3427734375,
"x": 2456.61,
"y": 8.34,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 4,
"x": 2439.8671875,
"y": 26.78369140625,
"x": 2439.87,
"y": 26.78,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 5,
"x": 2453.3232421875,
"y": 50.64208984375,
"x": 2453.32,
"y": 50.64,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -64,8 +64,8 @@
},
{
"id": 6,
"x": 2443.5498046875,
"y": 71.54052734375,
"x": 2443.55,
"y": 71.54,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -73,8 +73,8 @@
},
{
"id": 7,
"x": 2440.412109375,
"y": 71.81884765625,
"x": 2440.41,
"y": 71.82,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -82,8 +82,8 @@
},
{
"id": 8,
"x": 2431.42578125,
"y": 86.96240234375,
"x": 2431.43,
"y": 86.96,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -91,8 +91,8 @@
},
{
"id": 9,
"x": 2427.0205078125,
"y": 93.01513671875,
"x": 2427.02,
"y": 93.02,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -100,8 +100,8 @@
},
{
"id": 10,
"x": 2427.0703125,
"y": 92.26513671875,
"x": 2427.07,
"y": 92.27,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -109,8 +109,8 @@
},
{
"id": 11,
"x": 2425.5908203125,
"y": 107.63720703125,
"x": 2425.59,
"y": 107.64,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -118,8 +118,8 @@
},
{
"id": 12,
"x": 2425.7236328125,
"y": 108.72607421875,
"x": 2425.72,
"y": 108.73,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -127,8 +127,8 @@
},
{
"id": 13,
"x": 2418.0185546875,
"y": 114.43359375,
"x": 2418.02,
"y": 114.43,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -136,8 +136,8 @@
},
{
"id": 14,
"x": 2409.0263671875,
"y": 110.39501953125,
"x": 2409.03,
"y": 110.4,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -145,8 +145,8 @@
},
{
"id": 15,
"x": 2402.3828125,
"y": 104.45263671875,
"x": 2402.38,
"y": 104.45,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -154,8 +154,8 @@
},
{
"id": 16,
"x": 2392.779296875,
"y": 106.52783203125,
"x": 2392.78,
"y": 106.53,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -163,8 +163,8 @@
},
{
"id": 17,
"x": 2385.7861328125,
"y": 122.982421875,
"x": 2385.79,
"y": 122.98,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -172,8 +172,8 @@
},
{
"id": 18,
"x": 2385.73828125,
"y": 140.80078125,
"x": 2385.74,
"y": 140.8,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -181,8 +181,8 @@
},
{
"id": 19,
"x": 2386.4140625,
"y": 149.29638671875,
"x": 2386.41,
"y": 149.3,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -190,8 +190,8 @@
},
{
"id": 20,
"x": 2384.724609375,
"y": 145.99755859375,
"x": 2384.72,
"y": 146.0,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -199,8 +199,8 @@
},
{
"id": 21,
"x": 2383.59765625,
"y": 152.2724609375,
"x": 2383.6,
"y": 152.27,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -208,8 +208,8 @@
},
{
"id": 22,
"x": 2387.7177734375,
"y": 160.38671875,
"x": 2387.72,
"y": 160.39,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -217,8 +217,8 @@
},
{
"id": 23,
"x": 2401.3662109375,
"y": 165.970703125,
"x": 2401.37,
"y": 165.97,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -226,8 +226,8 @@
},
{
"id": 24,
"x": 2409.1015625,
"y": 171.3154296875,
"x": 2409.1,
"y": 171.32,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -235,8 +235,8 @@
},
{
"id": 25,
"x": 2413.451171875,
"y": 175.0458984375,
"x": 2413.45,
"y": 175.05,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -244,8 +244,8 @@
},
{
"id": 26,
"x": 2414.822265625,
"y": 172.1767578125,
"x": 2414.82,
"y": 172.18,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -253,8 +253,8 @@
},
{
"id": 27,
"x": 2423.818359375,
"y": 179.57080078125,
"x": 2423.82,
"y": 179.57,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -262,8 +262,8 @@
},
{
"id": 28,
"x": 2439.4833984375,
"y": 188.119140625,
"x": 2439.48,
"y": 188.12,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -271,8 +271,8 @@
},
{
"id": 29,
"x": 2450.455078125,
"y": 202.052734375,
"x": 2450.46,
"y": 202.05,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -280,8 +280,8 @@
},
{
"id": 30,
"x": 2453.8203125,
"y": 209.49462890625,
"x": 2453.82,
"y": 209.49,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -289,8 +289,8 @@
},
{
"id": 31,
"x": 2469.130859375,
"y": 227.0576171875,
"x": 2469.13,
"y": 227.06,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -298,8 +298,8 @@
},
{
"id": 32,
"x": 2472.15234375,
"y": 235.23828125,
"x": 2472.15,
"y": 235.24,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -307,8 +307,8 @@
},
{
"id": 33,
"x": 2471.55859375,
"y": 245.2802734375,
"x": 2471.56,
"y": 245.28,
"type": "path",
"move_mode": "jump",
"action": "",
@@ -316,8 +316,8 @@
},
{
"id": 34,
"x": 2481.11328125,
"y": 255.232421875,
"x": 2481.11,
"y": 255.23,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -325,8 +325,8 @@
},
{
"id": 35,
"x": 2487.7900390625,
"y": 269.501953125,
"x": 2487.79,
"y": 269.5,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -334,8 +334,8 @@
},
{
"id": 36,
"x": 2487.67578125,
"y": 276.17919921875,
"x": 2487.68,
"y": 276.18,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -343,8 +343,8 @@
},
{
"id": 37,
"x": 2500.787109375,
"y": 286.9287109375,
"x": 2500.79,
"y": 286.93,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -352,8 +352,8 @@
},
{
"id": 38,
"x": 2492.8935546875,
"y": 289.07470703125,
"x": 2492.89,
"y": 289.07,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -1,4 +1,4 @@
{
{
"info": {
"name": "12-树王圣体菇-禅那园地下1-4个",
"type": "collect",
@@ -19,8 +19,8 @@
"positions": [
{
"id": 1,
"x": 3204.994140625,
"y": -911.2919921875,
"x": 3204.99,
"y": -911.29,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 2,
"x": 3246.3359375,
"y": -907.10107421875,
"x": 3246.34,
"y": -907.1,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 3,
"x": 3314.0400390625,
"y": -895.38916015625,
"x": 3314.04,
"y": -895.39,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -46,8 +46,8 @@
},
{
"id": 4,
"x": 3302.2177734375,
"y": -901.3466796875,
"x": 3302.22,
"y": -901.35,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 5,
"x": 3293.7734375,
"y": -911.47021484375,
"x": 3293.77,
"y": -911.47,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -64,8 +64,8 @@
},
{
"id": 6,
"x": 3284.1015625,
"y": -918.4951171875,
"x": 3284.1,
"y": -918.5,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -73,8 +73,8 @@
},
{
"id": 7,
"x": 3276.052734375,
"y": -920.166015625,
"x": 3276.05,
"y": -920.17,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -82,8 +82,8 @@
},
{
"id": 8,
"x": 3263.2373046875,
"y": -919.71484375,
"x": 3263.24,
"y": -919.71,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -91,8 +91,8 @@
},
{
"id": 9,
"x": 3257.947265625,
"y": -902.85302734375,
"x": 3257.95,
"y": -902.85,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -100,8 +100,8 @@
},
{
"id": 10,
"x": 3271.919921875,
"y": -927.59228515625,
"x": 3271.92,
"y": -927.59,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -109,8 +109,8 @@
},
{
"id": 11,
"x": 3289.650390625,
"y": -914.19140625,
"x": 3289.65,
"y": -914.19,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -118,8 +118,8 @@
},
{
"id": 12,
"x": 3301.2587890625,
"y": -898.4970703125,
"x": 3301.26,
"y": -898.5,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -127,8 +127,8 @@
},
{
"id": 13,
"x": 3311.15234375,
"y": -884.89453125,
"x": 3311.15,
"y": -884.89,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -136,8 +136,8 @@
},
{
"id": 14,
"x": 3321.33203125,
"y": -866.490234375,
"x": 3321.33,
"y": -866.49,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -145,8 +145,8 @@
},
{
"id": 15,
"x": 3330.9375,
"y": -848.8466796875,
"x": 3330.94,
"y": -848.85,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -154,8 +154,8 @@
},
{
"id": 16,
"x": 3331.060546875,
"y": -838.55712890625,
"x": 3331.06,
"y": -838.56,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -163,8 +163,8 @@
},
{
"id": 17,
"x": 3329.45703125,
"y": -817.4365234375,
"x": 3329.46,
"y": -817.44,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -172,8 +172,8 @@
},
{
"id": 18,
"x": 3320.3359375,
"y": -807.6484375,
"x": 3320.34,
"y": -807.65,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -181,8 +181,8 @@
},
{
"id": 19,
"x": 3318.689453125,
"y": -812.9306640625,
"x": 3318.69,
"y": -812.93,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -190,8 +190,8 @@
},
{
"id": 20,
"x": 3296.599609375,
"y": -817.2255859375,
"x": 3296.6,
"y": -817.23,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -199,8 +199,8 @@
},
{
"id": 21,
"x": 3283.3076171875,
"y": -818.671875,
"x": 3283.31,
"y": -818.67,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -208,8 +208,8 @@
},
{
"id": 22,
"x": 3251.037109375,
"y": -833.88134765625,
"x": 3251.04,
"y": -833.88,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -218,8 +218,8 @@
},
{
"id": 23,
"x": 3251.037109375,
"y": -833.88134765625,
"x": 3251.04,
"y": -833.88,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -227,8 +227,8 @@
},
{
"id": 24,
"x": 3249.111328125,
"y": -858.8955078125,
"x": 3249.11,
"y": -858.9,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -236,8 +236,8 @@
},
{
"id": 25,
"x": 3219.3544921875,
"y": -867.22021484375,
"x": 3219.35,
"y": -867.22,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -245,8 +245,8 @@
},
{
"id": 26,
"x": 3208.6396484375,
"y": -873.74560546875,
"x": 3208.64,
"y": -873.75,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -255,8 +255,8 @@
},
{
"id": 27,
"x": 3208.6396484375,
"y": -873.74560546875,
"x": 3208.64,
"y": -873.75,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -264,8 +264,8 @@
},
{
"id": 28,
"x": 3223.8359375,
"y": -906.2236328125,
"x": 3223.84,
"y": -906.22,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -273,8 +273,8 @@
},
{
"id": 29,
"x": 3237.40234375,
"y": -909.9892578125,
"x": 3237.4,
"y": -909.99,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -282,8 +282,8 @@
},
{
"id": 30,
"x": 3243.595703125,
"y": -916.13818359375,
"x": 3243.6,
"y": -916.14,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -291,8 +291,8 @@
},
{
"id": 31,
"x": 3231.828125,
"y": -921.447265625,
"x": 3231.83,
"y": -921.45,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -300,8 +300,8 @@
},
{
"id": 32,
"x": 3221.8515625,
"y": -915.4794921875,
"x": 3221.85,
"y": -915.48,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -309,7 +309,7 @@
},
{
"id": 33,
"x": 3214.541015625,
"x": 3214.54,
"y": -927.5,
"type": "path",
"move_mode": "walk",
@@ -318,8 +318,8 @@
},
{
"id": 34,
"x": 3190.3828125,
"y": -931.09765625,
"x": 3190.38,
"y": -931.1,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -327,8 +327,8 @@
},
{
"id": 35,
"x": 3168.17578125,
"y": -924.7744140625,
"x": 3168.18,
"y": -924.77,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -336,8 +336,8 @@
},
{
"id": 36,
"x": 3141.12109375,
"y": -935.1044921875,
"x": 3141.12,
"y": -935.1,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -345,8 +345,8 @@
},
{
"id": 37,
"x": 3130.958984375,
"y": -922.3583984375,
"x": 3130.96,
"y": -922.36,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -354,8 +354,8 @@
},
{
"id": 38,
"x": 3122.4443359375,
"y": -914.1416015625,
"x": 3122.44,
"y": -914.14,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -363,8 +363,8 @@
},
{
"id": 39,
"x": 3117.0283203125,
"y": -881.14990234375,
"x": 3117.03,
"y": -881.15,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -372,8 +372,8 @@
},
{
"id": 40,
"x": 3122.951171875,
"y": -871.3720703125,
"x": 3122.95,
"y": -871.37,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -381,8 +381,8 @@
},
{
"id": 41,
"x": 3133.4736328125,
"y": -862.66162109375,
"x": 3133.47,
"y": -862.66,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -390,8 +390,8 @@
},
{
"id": 42,
"x": 3137.3681640625,
"y": -854.7236328125,
"x": 3137.37,
"y": -854.72,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -399,8 +399,8 @@
},
{
"id": 43,
"x": 3133.0390625,
"y": -861.16748046875,
"x": 3133.04,
"y": -861.17,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -408,8 +408,8 @@
},
{
"id": 44,
"x": 3137.173828125,
"y": -881.7919921875,
"x": 3137.17,
"y": -881.79,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -417,8 +417,8 @@
},
{
"id": 45,
"x": 3142.64453125,
"y": -900.73193359375,
"x": 3142.64,
"y": -900.73,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -426,8 +426,8 @@
},
{
"id": 46,
"x": 3142.806640625,
"y": -914.642578125,
"x": 3142.81,
"y": -914.64,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -435,8 +435,8 @@
},
{
"id": 47,
"x": 3136.83203125,
"y": -919.13330078125,
"x": 3136.83,
"y": -919.13,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -444,8 +444,8 @@
},
{
"id": 48,
"x": 3136.6201171875,
"y": -911.37255859375,
"x": 3136.62,
"y": -911.37,
"type": "path",
"move_mode": "walk",
"action": "",

View File

@@ -1,4 +1,4 @@
{
{
"info": {
"name": "13-树王圣体菇-禅那园地下2-5个",
"type": "collect",
@@ -19,8 +19,8 @@
"positions": [
{
"id": 1,
"x": 3491.4111328125,
"y": -598.69873046875,
"x": 3491.41,
"y": -598.7,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 2,
"x": 3478.849609375,
"y": -607.11572265625,
"x": 3478.85,
"y": -607.12,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 3,
"x": 3467.9208984375,
"y": -621.25244140625,
"x": 3467.92,
"y": -621.25,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 4,
"x": 3448.28515625,
"y": -630.2958984375,
"x": 3448.29,
"y": -630.3,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 5,
"x": 3448.7744140625,
"y": -662.50927734375,
"x": 3448.77,
"y": -662.51,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -64,8 +64,8 @@
},
{
"id": 6,
"x": 3448.7744140625,
"y": -662.50927734375,
"x": 3448.77,
"y": -662.51,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -73,8 +73,8 @@
},
{
"id": 7,
"x": 3435.142578125,
"y": -678.80029296875,
"x": 3435.14,
"y": -678.8,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -82,8 +82,8 @@
},
{
"id": 8,
"x": 3440.9208984375,
"y": -692.38427734375,
"x": 3440.92,
"y": -692.38,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -91,8 +91,8 @@
},
{
"id": 9,
"x": 3455.314453125,
"y": -695.5185546875,
"x": 3455.31,
"y": -695.52,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -100,8 +100,8 @@
},
{
"id": 10,
"x": 3462.451171875,
"y": -708.873046875,
"x": 3462.45,
"y": -708.87,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -109,8 +109,8 @@
},
{
"id": 11,
"x": 3448.837890625,
"y": -734.14697265625,
"x": 3448.84,
"y": -734.15,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -118,8 +118,8 @@
},
{
"id": 12,
"x": 3434.41796875,
"y": -744.9345703125,
"x": 3434.42,
"y": -744.93,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -127,8 +127,8 @@
},
{
"id": 13,
"x": 3426.025390625,
"y": -755.94140625,
"x": 3426.03,
"y": -755.94,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -136,8 +136,8 @@
},
{
"id": 14,
"x": 3430.939453125,
"y": -757.7802734375,
"x": 3430.94,
"y": -757.78,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -145,8 +145,8 @@
},
{
"id": 15,
"x": 3398.912109375,
"y": -746.1943359375,
"x": 3398.91,
"y": -746.19,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -154,8 +154,8 @@
},
{
"id": 16,
"x": 3404.7666015625,
"y": -766.1279296875,
"x": 3404.77,
"y": -766.13,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -163,8 +163,8 @@
},
{
"id": 17,
"x": 3404.76953125,
"y": -766.12890625,
"x": 3404.77,
"y": -766.13,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -172,8 +172,8 @@
},
{
"id": 18,
"x": 3410.0439453125,
"y": -767.54345703125,
"x": 3410.04,
"y": -767.54,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -181,8 +181,8 @@
},
{
"id": 19,
"x": 3415.376953125,
"y": -756.50732421875,
"x": 3415.38,
"y": -756.51,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -190,8 +190,8 @@
},
{
"id": 20,
"x": 3401.279296875,
"y": -768.2421875,
"x": 3401.28,
"y": -768.24,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -199,8 +199,8 @@
},
{
"id": 21,
"x": 3396.66796875,
"y": -772.81396484375,
"x": 3396.67,
"y": -772.81,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -208,8 +208,8 @@
},
{
"id": 22,
"x": 3405.82421875,
"y": -787.0986328125,
"x": 3405.82,
"y": -787.1,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -217,8 +217,8 @@
},
{
"id": 23,
"x": 3411.1943359375,
"y": -793.82177734375,
"x": 3411.19,
"y": -793.82,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -226,8 +226,8 @@
},
{
"id": 24,
"x": 3417.787109375,
"y": -801.17626953125,
"x": 3417.79,
"y": -801.18,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -235,8 +235,8 @@
},
{
"id": 25,
"x": 3418.65234375,
"y": -805.9423828125,
"x": 3418.65,
"y": -805.94,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -244,8 +244,8 @@
},
{
"id": 26,
"x": 3423.736328125,
"y": -813.24560546875,
"x": 3423.74,
"y": -813.25,
"type": "path",
"move_mode": "jump",
"action": "",
@@ -253,8 +253,8 @@
},
{
"id": 27,
"x": 3431.869140625,
"y": -814.70703125,
"x": 3431.87,
"y": -814.71,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -262,8 +262,8 @@
},
{
"id": 28,
"x": 3430.806640625,
"y": -828.0185546875,
"x": 3430.81,
"y": -828.02,
"type": "path",
"move_mode": "jump",
"action": "",
@@ -271,8 +271,8 @@
},
{
"id": 29,
"x": 3425.6201171875,
"y": -828.49169921875,
"x": 3425.62,
"y": -828.49,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -280,8 +280,8 @@
},
{
"id": 30,
"x": 3415.064453125,
"y": -824.68798828125,
"x": 3415.06,
"y": -824.69,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -289,8 +289,8 @@
},
{
"id": 31,
"x": 3406.66796875,
"y": -821.40283203125,
"x": 3406.67,
"y": -821.4,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -298,8 +298,8 @@
},
{
"id": 32,
"x": 3396.5966796875,
"y": -818.970703125,
"x": 3396.6,
"y": -818.97,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -307,8 +307,8 @@
},
{
"id": 33,
"x": 3390.396484375,
"y": -811.84033203125,
"x": 3390.4,
"y": -811.84,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -316,8 +316,8 @@
},
{
"id": 34,
"x": 3384.755859375,
"y": -812.7109375,
"x": 3384.76,
"y": -812.71,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -325,8 +325,8 @@
},
{
"id": 35,
"x": 3380.45703125,
"y": -815.30712890625,
"x": 3380.46,
"y": -815.31,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -334,8 +334,8 @@
},
{
"id": 36,
"x": 3367.8935546875,
"y": -822.88330078125,
"x": 3367.89,
"y": -822.88,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -343,8 +343,8 @@
},
{
"id": 37,
"x": 3346.921875,
"y": -845.9375,
"x": 3346.92,
"y": -845.94,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
@@ -352,8 +352,8 @@
},
{
"id": 38,
"x": 3348.533203125,
"y": -826.38427734375,
"x": 3348.53,
"y": -826.38,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -361,8 +361,8 @@
},
{
"id": 39,
"x": 3345.236328125,
"y": -838.05615234375,
"x": 3345.24,
"y": -838.06,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -370,8 +370,8 @@
},
{
"id": 40,
"x": 3327.958984375,
"y": -833.0458984375,
"x": 3327.96,
"y": -833.05,
"type": "path",
"move_mode": "walk",
"action": "up_down_grab_leaf",
@@ -379,8 +379,8 @@
},
{
"id": 41,
"x": 3326.291015625,
"y": -834.71337890625,
"x": 3326.29,
"y": -834.71,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
@@ -388,8 +388,8 @@
},
{
"id": 42,
"x": 3339.244140625,
"y": -839.705078125,
"x": 3339.24,
"y": -839.71,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -397,8 +397,8 @@
},
{
"id": 43,
"x": 3332.021484375,
"y": -838.384765625,
"x": 3332.02,
"y": -838.38,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -406,8 +406,8 @@
},
{
"id": 44,
"x": 3329.236328125,
"y": -826.5654296875,
"x": 3329.24,
"y": -826.57,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -415,8 +415,8 @@
},
{
"id": 45,
"x": 3324.19921875,
"y": -817.125,
"x": 3324.2,
"y": -817.12,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -424,8 +424,8 @@
},
{
"id": 46,
"x": 3319.6669921875,
"y": -812.47119140625,
"x": 3319.67,
"y": -812.47,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -433,8 +433,8 @@
},
{
"id": 47,
"x": 3312.392578125,
"y": -806.2734375,
"x": 3312.39,
"y": -806.27,
"type": "path",
"move_mode": "jump",
"action": "",
@@ -442,8 +442,8 @@
},
{
"id": 48,
"x": 3300.341796875,
"y": -808.47021484375,
"x": 3300.34,
"y": -808.47,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -451,8 +451,8 @@
},
{
"id": 49,
"x": 3289.083984375,
"y": -820.14306640625,
"x": 3289.08,
"y": -820.14,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -460,8 +460,8 @@
},
{
"id": 50,
"x": 3274.3447265625,
"y": -833.0654296875,
"x": 3274.34,
"y": -833.07,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -469,8 +469,8 @@
},
{
"id": 51,
"x": 3264.14453125,
"y": -841.93017578125,
"x": 3264.14,
"y": -841.93,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -478,8 +478,8 @@
},
{
"id": 52,
"x": 3240.5185546875,
"y": -851.84814453125,
"x": 3240.52,
"y": -851.85,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -487,8 +487,8 @@
},
{
"id": 53,
"x": 3211.9609375,
"y": -859.66748046875,
"x": 3211.96,
"y": -859.67,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -496,8 +496,8 @@
},
{
"id": 54,
"x": 3193.71875,
"y": -862.61865234375,
"x": 3193.72,
"y": -862.62,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -505,8 +505,8 @@
},
{
"id": 55,
"x": 3186.9423828125,
"y": -868.0908203125,
"x": 3186.94,
"y": -868.09,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -514,8 +514,8 @@
},
{
"id": 56,
"x": 3179.3271484375,
"y": -870.677734375,
"x": 3179.33,
"y": -870.68,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -523,8 +523,8 @@
},
{
"id": 57,
"x": 3175.3076171875,
"y": -873.33544921875,
"x": 3175.31,
"y": -873.34,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -532,8 +532,8 @@
},
{
"id": 58,
"x": 3172.9130859375,
"y": -876.8408203125,
"x": 3172.91,
"y": -876.84,
"type": "target",
"move_mode": "walk",
"action": "",