feat: id自动校验

This commit is contained in:
秋云
2025-06-16 00:58:51 +08:00
parent edd6dc38d5
commit 71b94d8fad
359 changed files with 3776 additions and 1304 deletions

View File

@@ -60,21 +60,15 @@ def get_original_file(file_path):
"""从上游仓库获取原始文件内容,如果失败则尝试从本地获取""" """从上游仓库获取原始文件内容,如果失败则尝试从本地获取"""
# 返回值增加一个来源标识: "upstream", "pr_submitted", None # 返回值增加一个来源标识: "upstream", "pr_submitted", None
# 首先尝试从上游仓库获取
try: try:
print(f"尝试从upstream/main获取文件: {file_path}")
result = subprocess.run(['git', 'show', f'upstream/main:{file_path}'], result = subprocess.run(['git', 'show', f'upstream/main:{file_path}'],
capture_output=True, text=True, encoding='utf-8') capture_output=True, text=True, encoding='utf-8')
if result.returncode == 0: if result.returncode == 0:
print("从上游仓库成功获取原始文件")
return json.loads(result.stdout), "upstream" return json.loads(result.stdout), "upstream"
else:
print(f"文件在上游仓库中不存在,可能是新文件")
except Exception as e: except Exception as e:
print(f"从上游仓库获取原始文件失败: {str(e)}") print(f"从上游仓库获取原始文件失败: {str(e)}")
try: try:
print("尝试使用当前文件作为PR提交文件")
with open(file_path, 'r', encoding='utf-8') as f: with open(file_path, 'r', encoding='utf-8') as f:
current_data = json.load(f) current_data = json.load(f)
# 创建一个副本,避免引用相同的对象 # 创建一个副本,避免引用相同的对象
@@ -82,7 +76,6 @@ def get_original_file(file_path):
except Exception as e: except Exception as e:
print(f"读取当前文件失败: {str(e)}") print(f"读取当前文件失败: {str(e)}")
print("无法获取任何形式的原始文件")
return None, None return None, None
def load_json_file(file_path): def load_json_file(file_path):
@@ -318,6 +311,107 @@ def check_bgi_version_compatibility(bgi_version, auto_fix=False):
return bgi_version, corrections return bgi_version, corrections
def check_position_ids(positions):
"""检查并修复位置 ID 编编号的连续性
自动修复功能:
1. 缺少 id 字段时,自动按顺序添加
2. id 编号不连续时,自动重新排序
3. id 不是从 1 开始时,自动调整
4. id 值无效(非数字)时,自动修正
"""
corrections = []
validation_issues = []
if not positions:
return validation_issues, corrections
# 检查是否所有位置都有 id 字段,并收集现有 id 值
current_ids = []
missing_ids = []
invalid_ids = []
for idx, pos in enumerate(positions):
if "id" not in pos:
missing_ids.append(idx)
current_ids.append(None)
else:
try:
id_val = int(pos["id"])
current_ids.append(id_val)
except (ValueError, TypeError):
# 如果 id 不是数字,记录为无效
invalid_ids.append(idx)
current_ids.append(None)
# 如果有缺少 id 的位置,记录
if missing_ids:
corrections.append(f"{len(missing_ids)} 个位置自动添加了 id 字段")
# 如果有无效 id记录
if invalid_ids:
corrections.append(f"修正了 {len(invalid_ids)} 个无效的 id 值")
# 生成期望的 id 序列(从 1 开始)
expected_ids = list(range(1, len(positions) + 1))
# 检查当前 id 是否符合期望
needs_reorder = False
# 过滤掉 None 值来检查现有的有效 id
valid_current_ids = [id_val for id_val in current_ids if id_val is not None]
if len(valid_current_ids) != len(positions):
needs_reorder = True
elif valid_current_ids != expected_ids:
needs_reorder = True
else:
# 检查是否有重复的 id
if len(set(valid_current_ids)) != len(valid_current_ids):
needs_reorder = True
duplicates = [id_val for id_val in set(valid_current_ids) if valid_current_ids.count(id_val) > 1]
corrections.append(f"检测到重复的 id: {duplicates}")
# 如果需要重新排序,自动修复
if needs_reorder:
id_issues = []
# 分析具体问题
if missing_ids or invalid_ids:
if missing_ids:
id_issues.append("存在缺少id的位置")
if invalid_ids:
id_issues.append("存在无效id值")
if valid_current_ids:
if min(valid_current_ids) != 1:
id_issues.append("id不是从1开始")
# 检查连续性
sorted_valid_ids = sorted(valid_current_ids)
expected_sorted = list(range(1, len(valid_current_ids) + 1))
if sorted_valid_ids != expected_sorted:
id_issues.append("id编号不连续")
# 重新按顺序分配 id并将 id 字段放在第一个位置
for idx, pos in enumerate(positions):
new_id = idx + 1
# 创建新的有序字典id 放在第一个
new_pos = {"id": new_id}
# 添加其他字段
for key, value in pos.items():
if key != "id":
new_pos[key] = value
# 更新原位置
pos.clear()
pos.update(new_pos)
if id_issues:
corrections.append(f"id编号已重新排序并置于首位 (问题: {', '.join(id_issues)})")
else:
corrections.append("id编号已按顺序重新分配并置于首位")
return validation_issues, corrections
# ==================== 主验证逻辑 ==================== # ==================== 主验证逻辑 ====================
def initialize_data(data, file_path): def initialize_data(data, file_path):
@@ -356,9 +450,6 @@ def initialize_data(data, file_path):
data["positions"] = [] data["positions"] = []
messages.append(f"⚠️ 文件缺少 positions 字段,已添加空数组") messages.append(f"⚠️ 文件缺少 positions 字段,已添加空数组")
for message in messages:
print(message)
return data return data
def check_actions_compatibility(positions, bgi_version): def check_actions_compatibility(positions, bgi_version):
@@ -399,7 +490,7 @@ def update_bgi_version_for_compatibility(info, compatibility_issues, auto_fix):
corrections.append(f"bgi_version {info['bgi_version']} 自动更新为 {max_required} 以兼容所有功能") corrections.append(f"bgi_version {info['bgi_version']} 自动更新为 {max_required} 以兼容所有功能")
return [], corrections return [], corrections
except ValueError as e: except ValueError as e:
print(f"警告: 版本号解析失败 - {e}") # print(f"警告: 版本号解析失败 - {e}")
info["bgi_version"] = DEFAULT_BGI_VERSION info["bgi_version"] = DEFAULT_BGI_VERSION
corrections.append(f"bgi_version 自动更新为 {DEFAULT_BGI_VERSION} (版本解析失败)") corrections.append(f"bgi_version 自动更新为 {DEFAULT_BGI_VERSION} (版本解析失败)")
return [], corrections return [], corrections
@@ -439,13 +530,18 @@ def validate_file(file_path, auto_fix=False):
bgi_version, corrections = check_bgi_version_compatibility(info["bgi_version"], auto_fix) bgi_version, corrections = check_bgi_version_compatibility(info["bgi_version"], auto_fix)
if corrections: if corrections:
info["bgi_version"] = bgi_version info["bgi_version"] = bgi_version
all_corrections.extend(corrections) all_corrections.extend(corrections) # 检查位置字段 - 修改为接收三个返回值
# 检查位置字段 - 修改为接收三个返回值
position_issues, notices, pos_corrections = check_position_fields(data["positions"]) position_issues, notices, pos_corrections = check_position_fields(data["positions"])
if auto_fix and pos_corrections: if auto_fix and pos_corrections:
all_corrections.extend(pos_corrections) all_corrections.extend(pos_corrections)
# 检查位置 ID 编号
if auto_fix:
id_validation_issues, id_corrections = check_position_ids(data["positions"])
if id_corrections:
all_corrections.extend(id_corrections)
position_issues.extend(id_validation_issues)
# 检查 action 兼容性 # 检查 action 兼容性
compatibility_issues, action_validation_issues = check_actions_compatibility(data["positions"], info["bgi_version"]) compatibility_issues, action_validation_issues = check_actions_compatibility(data["positions"], info["bgi_version"])
position_issues.extend(action_validation_issues) position_issues.extend(action_validation_issues)
@@ -493,15 +589,6 @@ def validate_file(file_path, auto_fix=False):
# 保存修正 # 保存修正
if auto_fix: if auto_fix:
# 无论是否有问题,都打印所有自动修正项
if all_corrections:
print("🔧 自动修正:")
for correction in all_corrections:
print(f" - {correction}")
else:
print("✅ 没有需要自动修正的项目")
# 只有在有修正或问题时才保存文件
if all_corrections or position_issues: if all_corrections or position_issues:
if save_json_file(file_path, data): if save_json_file(file_path, data):
print("✅ 文件已保存") print("✅ 文件已保存")
@@ -523,7 +610,7 @@ def main():
all_notices = [] # 初始化 all_notices 变量 all_notices = [] # 初始化 all_notices 变量
if os.path.isfile(path) and path.endswith('.json'): if os.path.isfile(path) and path.endswith('.json'):
print(f"\n🔍 校验文件: {path}") # print(f"\n🔍 校验文件: {path}")
notices = validate_file(path, auto_fix) notices = validate_file(path, auto_fix)
if notices: if notices:
all_notices.extend([f"{path}: {n}" for n in notices]) # 添加到 all_notices all_notices.extend([f"{path}: {n}" for n in notices]) # 添加到 all_notices

View File

@@ -11,17 +11,8 @@
"positions": [ "positions": [
{ {
"id": 1, "id": 1,
"x": 7348.14697265625, "x": 7354.68017578125,
"y": -1428.5224609375, "y": -1428.5908203125,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 7354.49951171875,
"y": -1428.64404296875,
"type": "target", "type": "target",
"move_mode": "walk", "move_mode": "walk",
"action": "", "action": "",

View File

@@ -72,7 +72,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 7, "id": 8,
"action": "fishing", "action": "fishing",
"move_mode": "walk", "move_mode": "walk",
"type": "orientation", "type": "orientation",

View File

@@ -79,7 +79,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 8, "id": 9,
"x": 4607.44, "x": 4607.44,
"y": 2731.48, "y": 2731.48,
"action": "fishing", "action": "fishing",

View File

@@ -66,7 +66,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 6, "id": 7,
"x": 4724.38, "x": 4724.38,
"y": 3023.81, "y": 3023.81,
"type": "orientation", "type": "orientation",

View File

@@ -54,7 +54,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 5, "id": 6,
"x": 4003.4, "x": 4003.4,
"y": 4524.64, "y": 4524.64,
"type": "orientation", "type": "orientation",

View File

@@ -62,7 +62,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 6, "id": 7,
"x": 2912.5, "x": 2912.5,
"y": 3263.81, "y": 3263.81,
"type": "orientation", "type": "orientation",

View File

@@ -45,7 +45,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 4, "id": 5,
"x": 1725.05, "x": 1725.05,
"y": 1910.4, "y": 1910.4,
"type": "orientation", "type": "orientation",

View File

@@ -108,7 +108,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 11, "id": 12,
"x": 1598.37, "x": 1598.37,
"y": 1140.33, "y": 1140.33,
"action": "fishing", "action": "fishing",

View File

@@ -59,7 +59,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 6, "id": 7,
"x": 54.76, "x": 54.76,
"y": 629.13, "y": 629.13,
"action": "fishing", "action": "fishing",

View File

@@ -54,7 +54,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 5, "id": 6,
"x": 2322.48, "x": 2322.48,
"y": 900.94, "y": 900.94,
"action": "fishing", "action": "fishing",

View File

@@ -81,7 +81,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 8, "id": 9,
"x": 1094.18, "x": 1094.18,
"y": 1881.09, "y": 1881.09,
"action": "fishing", "action": "fishing",

View File

@@ -90,7 +90,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 9, "id": 10,
"x": 1139.28, "x": 1139.28,
"y": 1530.47, "y": 1530.47,
"type": "orientation", "type": "orientation",

View File

@@ -34,7 +34,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 3, "id": 4,
"x": -2788.11, "x": -2788.11,
"y": -6024.98, "y": -6024.98,
"action": "fishing", "action": "fishing",

View File

@@ -63,7 +63,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 6, "id": 7,
"x": -2622.35, "x": -2622.35,
"y": -3387.28, "y": -3387.28,
"action": "fishing", "action": "fishing",

View File

@@ -71,7 +71,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 7, "id": 8,
"x": -799.3, "x": -799.3,
"y": -3637.15, "y": -3637.15,
"type": "orientation", "type": "orientation",

View File

@@ -54,7 +54,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 5, "id": 6,
"x": -4080.26, "x": -4080.26,
"y": -4428.89, "y": -4428.89,
"type": "orientation", "type": "orientation",

View File

@@ -72,7 +72,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 7, "id": 8,
"x": -4144.83, "x": -4144.83,
"y": -4460.79, "y": -4460.79,
"type": "orientation", "type": "orientation",

View File

@@ -45,7 +45,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 4, "id": 5,
"x": -1333.56, "x": -1333.56,
"y": 2760.86, "y": 2760.86,
"type": "orientation", "type": "orientation",

View File

@@ -81,7 +81,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 8, "id": 9,
"x": -804.57, "x": -804.57,
"y": 2060.83, "y": 2060.83,
"type": "orientation", "type": "orientation",

View File

@@ -99,7 +99,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 10, "id": 11,
"x": -1271.88, "x": -1271.88,
"y": 1858.87, "y": 1858.87,
"action": "fishing", "action": "fishing",

View File

@@ -99,7 +99,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 10, "id": 11,
"x": 116.33, "x": 116.33,
"y": 2504.11, "y": 2504.11,
"action": "fishing", "action": "fishing",

View File

@@ -63,7 +63,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 6, "id": 7,
"x": -604.74, "x": -604.74,
"y": 977.05, "y": 977.05,
"action": "fishing", "action": "fishing",

View File

@@ -9,6 +9,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 4545.55, "x": 4545.55,
"y": 4225.63, "y": 4225.63,
"type": "teleport", "type": "teleport",
@@ -16,6 +17,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 4536.07, "x": 4536.07,
"y": 4225.83, "y": 4225.83,
"type": "path", "type": "path",
@@ -23,6 +25,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 4410.89, "x": 4410.89,
"y": 4260.37, "y": 4260.37,
"type": "path", "type": "path",
@@ -30,6 +33,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": 4393.03, "x": 4393.03,
"y": 4252.94, "y": 4252.94,
"type": "target", "type": "target",
@@ -37,6 +41,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 4384.83, "x": 4384.83,
"y": 4251.33, "y": 4251.33,
"type": "target", "type": "target",
@@ -44,6 +49,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 4349.26, "x": 4349.26,
"y": 4236.21, "y": 4236.21,
"type": "target", "type": "target",
@@ -51,6 +57,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 4289.03, "x": 4289.03,
"y": 4199.05, "y": 4199.05,
"type": "target", "type": "target",
@@ -58,6 +65,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 4263.94, "x": 4263.94,
"y": 4175.81, "y": 4175.81,
"type": "path", "type": "path",
@@ -65,6 +73,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 4263.27, "x": 4263.27,
"y": 4157.02, "y": 4157.02,
"type": "target", "type": "target",
@@ -72,6 +81,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 4265.32, "x": 4265.32,
"y": 4127.15, "y": 4127.15,
"type": "target", "type": "target",

View File

@@ -9,6 +9,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 4984.74, "x": 4984.74,
"y": 4462.9, "y": 4462.9,
"type": "teleport", "type": "teleport",
@@ -16,6 +17,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 4963.5, "x": 4963.5,
"y": 4416.46, "y": 4416.46,
"type": "path", "type": "path",
@@ -23,6 +25,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 4922.73, "x": 4922.73,
"y": 4402.04, "y": 4402.04,
"type": "path", "type": "path",
@@ -30,6 +33,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 4901.23, "x": 4901.23,
"y": 4387.79, "y": 4387.79,
"type": "target", "type": "target",
@@ -37,6 +41,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 4881.2, "x": 4881.2,
"y": 4373.67, "y": 4373.67,
"type": "target", "type": "target",
@@ -44,6 +49,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 4892.56, "x": 4892.56,
"y": 4358.82, "y": 4358.82,
"type": "target", "type": "target",
@@ -51,6 +57,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 4947.47, "x": 4947.47,
"y": 4346.61, "y": 4346.61,
"type": "target", "type": "target",
@@ -58,6 +65,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 4951.35, "x": 4951.35,
"y": 4310.98, "y": 4310.98,
"type": "path", "type": "path",
@@ -65,6 +73,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 4944.47, "x": 4944.47,
"y": 4296.17, "y": 4296.17,
"type": "target", "type": "target",
@@ -72,6 +81,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 4545.52, "x": 4545.52,
"y": 4225.61, "y": 4225.61,
"type": "teleport", "type": "teleport",
@@ -79,6 +89,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 4543.25, "x": 4543.25,
"y": 4228.88, "y": 4228.88,
"type": "path", "type": "path",

View File

@@ -9,6 +9,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 4984.74, "x": 4984.74,
"y": 4462.87, "y": 4462.87,
"type": "teleport", "type": "teleport",
@@ -16,6 +17,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 4962.93, "x": 4962.93,
"y": 4487.08, "y": 4487.08,
"type": "target", "type": "target",
@@ -23,6 +25,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 4989.34, "x": 4989.34,
"y": 4518.53, "y": 4518.53,
"type": "target", "type": "target",
@@ -30,6 +33,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 5000.0, "x": 5000.0,
"y": 4539.95, "y": 4539.95,
"type": "target", "type": "target",
@@ -37,6 +41,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 4998.31, "x": 4998.31,
"y": 4560.33, "y": 4560.33,
"type": "target", "type": "target",
@@ -44,6 +49,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 4545.53, "x": 4545.53,
"y": 4225.6, "y": 4225.6,
"type": "teleport", "type": "teleport",
@@ -51,6 +57,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 4543.66, "x": 4543.66,
"y": 4228.03, "y": 4228.03,
"type": "path", "type": "path",

View File

@@ -9,6 +9,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 4498.12, "x": 4498.12,
"y": 4710.82, "y": 4710.82,
"type": "teleport", "type": "teleport",
@@ -16,6 +17,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 4495.32, "x": 4495.32,
"y": 4685.03, "y": 4685.03,
"type": "path", "type": "path",
@@ -23,6 +25,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 4511.34, "x": 4511.34,
"y": 4642.38, "y": 4642.38,
"type": "path", "type": "path",
@@ -30,6 +33,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": 4510.38, "x": 4510.38,
"y": 4640.62, "y": 4640.62,
"type": "target", "type": "target",
@@ -37,6 +41,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 4483.31, "x": 4483.31,
"y": 4620.69, "y": 4620.69,
"type": "path", "type": "path",
@@ -44,6 +49,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 4456.77, "x": 4456.77,
"y": 4618.14, "y": 4618.14,
"type": "path", "type": "path",
@@ -51,6 +57,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 4445.17, "x": 4445.17,
"y": 4594.86, "y": 4594.86,
"type": "path", "type": "path",
@@ -58,6 +65,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 4438.29, "x": 4438.29,
"y": 4575.85, "y": 4575.85,
"type": "path", "type": "path",
@@ -65,6 +73,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 4424.49, "x": 4424.49,
"y": 4570.18, "y": 4570.18,
"type": "path", "type": "path",
@@ -72,6 +81,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 4415.03, "x": 4415.03,
"y": 4559.61, "y": 4559.61,
"type": "target", "type": "target",
@@ -79,6 +89,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 4416.36, "x": 4416.36,
"y": 4570.49, "y": 4570.49,
"type": "path", "type": "path",
@@ -86,6 +97,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 4407.49, "x": 4407.49,
"y": 4568.48, "y": 4568.48,
"type": "path", "type": "path",
@@ -93,6 +105,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 4409.12, "x": 4409.12,
"y": 4563.1, "y": 4563.1,
"type": "target", "type": "target",
@@ -100,6 +113,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": 4356.87, "x": 4356.87,
"y": 4565.84, "y": 4565.84,
"type": "path", "type": "path",
@@ -107,6 +121,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": 4334.81, "x": 4334.81,
"y": 4561.24, "y": 4561.24,
"type": "path", "type": "path",
@@ -114,6 +129,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": 4320.91, "x": 4320.91,
"y": 4568.12, "y": 4568.12,
"type": "target", "type": "target",
@@ -121,6 +137,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": 4317.01, "x": 4317.01,
"y": 4567.99, "y": 4567.99,
"type": "target", "type": "target",
@@ -128,6 +145,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": 4545.49, "x": 4545.49,
"y": 4225.64, "y": 4225.64,
"type": "teleport", "type": "teleport",
@@ -135,6 +153,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19,
"x": 4543.93, "x": 4543.93,
"y": 4228.28, "y": 4228.28,
"type": "path", "type": "path",

View File

@@ -9,6 +9,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 3635.92, "x": 3635.92,
"y": 4796.02, "y": 4796.02,
"type": "teleport", "type": "teleport",
@@ -16,6 +17,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 3675.55, "x": 3675.55,
"y": 4874.47, "y": 4874.47,
"type": "path", "type": "path",
@@ -23,6 +25,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 3670.64, "x": 3670.64,
"y": 4880.9, "y": 4880.9,
"type": "target", "type": "target",
@@ -30,6 +33,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 3676.46, "x": 3676.46,
"y": 4884.96, "y": 4884.96,
"type": "target", "type": "target",
@@ -37,6 +41,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 3686.63, "x": 3686.63,
"y": 4908.03, "y": 4908.03,
"type": "target", "type": "target",
@@ -44,6 +49,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 3722.6, "x": 3722.6,
"y": 4917.11, "y": 4917.11,
"type": "target", "type": "target",
@@ -51,6 +57,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 3720.04, "x": 3720.04,
"y": 4899.95, "y": 4899.95,
"type": "target", "type": "target",
@@ -58,6 +65,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 3764.97, "x": 3764.97,
"y": 4840.04, "y": 4840.04,
"type": "path", "type": "path",
@@ -65,6 +73,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 3791.47, "x": 3791.47,
"y": 4817.73, "y": 4817.73,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 4701.36, "x": 4701.36,
"y": 3958.8, "y": 3958.8,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 4690.75, "x": 4690.75,
"y": 3981.41, "y": 3981.41,
"type": "target", "type": "target",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 4617.52, "x": 4617.52,
"y": 4011.85, "y": 4011.85,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 4577.39, "x": 4577.39,
"y": 4000.72, "y": 4000.72,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 4573.55, "x": 4573.55,
"y": 3939.84, "y": 3939.84,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 4567.36, "x": 4567.36,
"y": 3924.63, "y": 3924.63,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 4563.24, "x": 4563.24,
"y": 3903.81, "y": 3903.81,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 4578.64, "x": 4578.64,
"y": 3905.29, "y": 3905.29,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 4582.93, "x": 4582.93,
"y": 3900.8, "y": 3900.8,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 4556.14, "x": 4556.14,
"y": 3881.12, "y": 3881.12,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 4588.14, "x": 4588.14,
"y": 3860.62, "y": 3860.62,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 4538.6, "x": 4538.6,
"y": 3817.66, "y": 3817.66,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 4502.48, "x": 4502.48,
"y": 3826.83, "y": 3826.83,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 3635.48, "x": 3635.48,
"y": 3801.41, "y": 3801.41,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 3676.76, "x": 3676.76,
"y": 3810.29, "y": 3810.29,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 3701.55, "x": 3701.55,
"y": 3836.57, "y": 3836.57,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": 3725.26, "x": 3725.26,
"y": 3881.94, "y": 3881.94,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 3635.54, "x": 3635.54,
"y": 3801.49, "y": 3801.49,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 3605.68, "x": 3605.68,
"y": 3774.59, "y": 3774.59,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 4705.57, "x": 4705.57,
"y": 2951.59, "y": 2951.59,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 4725.71, "x": 4725.71,
"y": 2965.61, "y": 2965.61,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 4758.91, "x": 4758.91,
"y": 2956.97, "y": 2956.97,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 4757.33, "x": 4757.33,
"y": 2948.74, "y": 2948.74,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 4955.77, "x": 4955.77,
"y": 2760.5, "y": 2760.5,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 4862.34, "x": 4862.34,
"y": 2768.23, "y": 2768.23,
"type": "target", "type": "target",
@@ -22,6 +24,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 3,
"x": 4848.83, "x": 4848.83,
"y": 2769.76, "y": 2769.76,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 4844.63, "x": 4844.63,
"y": 2779.07, "y": 2779.07,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 4822.51, "x": 4822.51,
"y": 2766.04, "y": 2766.04,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 5117.53, "x": 5117.53,
"y": 2543.36, "y": 2543.36,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 5085.94, "x": 5085.94,
"y": 2548.2, "y": 2548.2,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 5067.64, "x": 5067.64,
"y": 2556.47, "y": 2556.47,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 5067.5, "x": 5067.5,
"y": 2551.62, "y": 2551.62,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 4689.41, "x": 4689.41,
"y": 2429.45, "y": 2429.45,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 4679.44, "x": 4679.44,
"y": 2401.24, "y": 2401.24,
"type": "target", "type": "target",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 4675.08, "x": 4675.08,
"y": 2389.55, "y": 2389.55,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 4680.81, "x": 4680.81,
"y": 2372.1, "y": 2372.1,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 4146.66, "x": 4146.66,
"y": 2606.28, "y": 2606.28,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 4153.77, "x": 4153.77,
"y": 2584.58, "y": 2584.58,
"type": "target", "type": "target",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 4159.55, "x": 4159.55,
"y": 2566.96, "y": 2566.96,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 4157.1, "x": 4157.1,
"y": 2504.78, "y": 2504.78,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 4187.63, "x": 4187.63,
"y": 2432.75, "y": 2432.75,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 4160.53, "x": 4160.53,
"y": 2380.85, "y": 2380.85,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 4138.83, "x": 4138.83,
"y": 2370.13, "y": 2370.13,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 4132.02, "x": 4132.02,
"y": 2365.21, "y": 2365.21,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 3955.31, "x": 3955.31,
"y": 2869.15, "y": 2869.15,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 3978.11, "x": 3978.11,
"y": 2813.89, "y": 2813.89,
"type": "target", "type": "target",
@@ -22,6 +24,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 3,
"x": 3974.4, "x": 3974.4,
"y": 2809.83, "y": 2809.83,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 3987.77, "x": 3987.77,
"y": 2782.49, "y": 2782.49,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 3991.27, "x": 3991.27,
"y": 2774.41, "y": 2774.41,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -474.01, "x": -474.01,
"y": 441.76, "y": 441.76,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -472.25, "x": -472.25,
"y": 447.81, "y": 447.81,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -482.48, "x": -482.48,
"y": 441.23, "y": 441.23,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -424.53, "x": -424.53,
"y": 399.81, "y": 399.81,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -332.25, "x": -332.25,
"y": 389.33, "y": 389.33,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -291.02, "x": -291.02,
"y": 443.35, "y": 443.35,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -249.74, "x": -249.74,
"y": 389.44, "y": 389.44,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -223.72, "x": -223.72,
"y": 390.18, "y": 390.18,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -201.12, "x": -201.12,
"y": 388.48, "y": 388.48,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -157.61, "x": -157.61,
"y": 432.9, "y": 432.9,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -125.09, "x": -125.09,
"y": 390.62, "y": 390.62,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -104.59, "x": -104.59,
"y": 366.49, "y": 366.49,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -104.59, "x": -104.59,
"y": 366.49, "y": 366.49,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -151.02, "x": -151.02,
"y": 336.02, "y": 336.02,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -151.02, "x": -151.02,
"y": 336.02, "y": 336.02,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -157.98, "x": -157.98,
"y": 362.01, "y": 362.01,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -157.98, "x": -157.98,
"y": 362.01, "y": 362.01,
"type": "path", "type": "path",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -57.41, "x": -57.41,
"y": 656.93, "y": 656.93,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -46.29, "x": -46.29,
"y": 592.36, "y": 592.36,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -51.73, "x": -51.73,
"y": 526.45, "y": 526.45,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -47.05, "x": -47.05,
"y": 490.27, "y": 490.27,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -47.18, "x": -47.18,
"y": 521.68, "y": 521.68,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -98.9, "x": -98.9,
"y": 489.84, "y": 489.84,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -151.92, "x": -151.92,
"y": 497.2, "y": 497.2,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -188.37, "x": -188.37,
"y": 537.05, "y": 537.05,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -286.51, "x": -286.51,
"y": 529.83, "y": 529.83,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -378.5, "x": -378.5,
"y": 522.44, "y": 522.44,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -447.91, "x": -447.91,
"y": 547.52, "y": 547.52,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -503.34, "x": -503.34,
"y": 575.22, "y": 575.22,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -551.86, "x": -551.86,
"y": 576.48, "y": 576.48,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -554.55, "x": -554.55,
"y": 562.62, "y": 562.62,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -508.71, "x": -508.71,
"y": 533.18, "y": 533.18,
"type": "path", "type": "path",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 54.32, "x": 54.32,
"y": 139.23, "y": 139.23,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -15.51, "x": -15.51,
"y": 121.47, "y": 121.47,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 3,
"x": -45.79, "x": -45.79,
"y": 111.83, "y": 111.83,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -60.74, "x": -60.74,
"y": 63.73, "y": 63.73,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -70.59, "x": -70.59,
"y": 64.43, "y": 64.43,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -62.69, "x": -62.69,
"y": 51.84, "y": 51.84,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -65.47, "x": -65.47,
"y": 46.75, "y": 46.75,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -81.55, "x": -81.55,
"y": 57.19, "y": 57.19,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -97.7, "x": -97.7,
"y": 46.72, "y": 46.72,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -104.78, "x": -104.78,
"y": 4.64, "y": 4.64,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -130.3, "x": -130.3,
"y": 5.73, "y": 5.73,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -162.04, "x": -162.04,
"y": -89.65, "y": -89.65,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -187.12, "x": -187.12,
"y": -69.81, "y": -69.81,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -202.7, "x": -202.7,
"y": -70.32, "y": -70.32,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -228.55, "x": -228.55,
"y": -60.28, "y": -60.28,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -255.45, "x": -255.45,
"y": -84.92, "y": -84.92,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -239.86, "x": -239.86,
"y": -113.36, "y": -113.36,
"type": "path", "type": "path",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": -262.17, "x": -262.17,
"y": -134.01, "y": -134.01,
"type": "path", "type": "path",
@@ -134,6 +152,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19,
"x": -241.66, "x": -241.66,
"y": -162.28, "y": -162.28,
"type": "path", "type": "path",
@@ -141,6 +160,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20,
"x": -245.37, "x": -245.37,
"y": -183.57, "y": -183.57,
"type": "path", "type": "path",
@@ -148,6 +168,7 @@
"action": "" "action": ""
}, },
{ {
"id": 21,
"x": -208.31, "x": -208.31,
"y": -154.03, "y": -154.03,
"type": "path", "type": "path",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 54.33, "x": 54.33,
"y": 139.26, "y": 139.26,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -40.77, "x": -40.77,
"y": 163.58, "y": 163.58,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 3,
"x": -42.23, "x": -42.23,
"y": 173.16, "y": 173.16,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -62.1, "x": -62.1,
"y": 198.87, "y": 198.87,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -87.37, "x": -87.37,
"y": 223.63, "y": 223.63,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -97.68, "x": -97.68,
"y": 211.89, "y": 211.89,
"type": "path", "type": "path",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -963.33, "x": -963.33,
"y": -288.95, "y": -288.95,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -868.88, "x": -868.88,
"y": -273.2, "y": -273.2,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -856.23, "x": -856.23,
"y": -287.04, "y": -287.04,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -878.25, "x": -878.25,
"y": -303.28, "y": -303.28,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -855.03, "x": -855.03,
"y": -286.86, "y": -286.86,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -865.67, "x": -865.67,
"y": -255.7, "y": -255.7,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -825.96, "x": -825.96,
"y": -262.64, "y": -262.64,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -826.61, "x": -826.61,
"y": -285.21, "y": -285.21,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -765.39, "x": -765.39,
"y": -305.54, "y": -305.54,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -727.74, "x": -727.74,
"y": -289.24, "y": -289.24,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -712.52, "x": -712.52,
"y": -317.43, "y": -317.43,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -710.76, "x": -710.76,
"y": -341.53, "y": -341.53,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -742.21, "x": -742.21,
"y": -377.4, "y": -377.4,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -764.13, "x": -764.13,
"y": -363.21, "y": -363.21,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -767.44, "x": -767.44,
"y": -364.98, "y": -364.98,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -727.13, "x": -727.13,
"y": -396.25, "y": -396.25,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -716.19, "x": -716.19,
"y": -417.15, "y": -417.15,
"type": "path", "type": "path",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": -705.69, "x": -705.69,
"y": -415.85, "y": -415.85,
"type": "path", "type": "path",

View File

@@ -33,7 +33,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 7, "id": 4,
"x": 2031.07, "x": 2031.07,
"y": 2374.58, "y": 2374.58,
"action": "mining", "action": "mining",
@@ -42,7 +42,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 8, "id": 5,
"x": 2027.62, "x": 2027.62,
"y": 2369.2, "y": 2369.2,
"action": "", "action": "",
@@ -50,7 +50,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 9, "id": 6,
"x": 2027.65, "x": 2027.65,
"y": 2380.9, "y": 2380.9,
"action": "", "action": "",
@@ -58,7 +58,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 10, "id": 7,
"x": 2019.43, "x": 2019.43,
"y": 2378.68, "y": 2378.68,
"action": "", "action": "",
@@ -66,7 +66,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 11, "id": 8,
"x": 1468.13, "x": 1468.13,
"y": 1998.0, "y": 1998.0,
"action": "", "action": "",
@@ -74,7 +74,7 @@
"type": "teleport" "type": "teleport"
}, },
{ {
"id": 12, "id": 9,
"x": 1465.05, "x": 1465.05,
"y": 2009.71, "y": 2009.71,
"action": "", "action": "",
@@ -82,7 +82,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 13, "id": 10,
"x": 1465.05, "x": 1465.05,
"y": 2014.98, "y": 2014.98,
"move_mode": "walk", "move_mode": "walk",
@@ -91,7 +91,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 14, "id": 11,
"x": 1461.79, "x": 1461.79,
"y": 2015.05, "y": 2015.05,
"action": "", "action": "",
@@ -99,7 +99,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 15, "id": 12,
"x": 1493.8, "x": 1493.8,
"y": 1981.27, "y": 1981.27,
"action": "", "action": "",
@@ -107,7 +107,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 16, "id": 13,
"x": 1493.08, "x": 1493.08,
"y": 1940.09, "y": 1940.09,
"action": "", "action": "",
@@ -115,7 +115,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 17, "id": 14,
"x": 1499.05, "x": 1499.05,
"y": 1910.48, "y": 1910.48,
"action": "mining", "action": "mining",
@@ -124,7 +124,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 18, "id": 15,
"x": 1489.26, "x": 1489.26,
"y": 1888.08, "y": 1888.08,
"action": "", "action": "",
@@ -132,7 +132,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 19, "id": 16,
"x": 1480.44, "x": 1480.44,
"y": 1859.17, "y": 1859.17,
"move_mode": "walk", "move_mode": "walk",
@@ -141,7 +141,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 20, "id": 17,
"x": 1481.82, "x": 1481.82,
"y": 1852.57, "y": 1852.57,
"action": "", "action": "",
@@ -149,7 +149,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 21, "id": 18,
"x": 1477.45, "x": 1477.45,
"y": 1857.27, "y": 1857.27,
"action": "", "action": "",
@@ -157,7 +157,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 22, "id": 19,
"x": 1480.42, "x": 1480.42,
"y": 1862.61, "y": 1862.61,
"action": "", "action": "",
@@ -165,7 +165,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 23, "id": 20,
"x": 1481.53, "x": 1481.53,
"y": 1857.67, "y": 1857.67,
"action": "", "action": "",
@@ -173,7 +173,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 24, "id": 21,
"x": 1480.62, "x": 1480.62,
"y": 1852.76, "y": 1852.76,
"action": "", "action": "",
@@ -181,7 +181,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 25, "id": 22,
"x": 1485.53, "x": 1485.53,
"y": 1851.03, "y": 1851.03,
"action": "", "action": "",
@@ -189,7 +189,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 26, "id": 23,
"x": 1485.57, "x": 1485.57,
"y": 1864.47, "y": 1864.47,
"action": "", "action": "",
@@ -197,7 +197,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 27, "id": 24,
"x": 1490.96, "x": 1490.96,
"y": 1861.04, "y": 1861.04,
"action": "", "action": "",
@@ -205,7 +205,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 28, "id": 25,
"x": 1470.51, "x": 1470.51,
"y": 1839.2, "y": 1839.2,
"action": "", "action": "",
@@ -213,7 +213,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 29, "id": 26,
"x": 1460.1, "x": 1460.1,
"y": 1805.95, "y": 1805.95,
"action": "", "action": "",
@@ -221,7 +221,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 30, "id": 27,
"x": 1459.6, "x": 1459.6,
"y": 1806.45, "y": 1806.45,
"move_mode": "walk", "move_mode": "walk",
@@ -230,7 +230,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 31, "id": 28,
"x": 1458.12, "x": 1458.12,
"y": 1801.64, "y": 1801.64,
"action": "", "action": "",
@@ -238,7 +238,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 32, "id": 29,
"x": 1459.29, "x": 1459.29,
"y": 1798.84, "y": 1798.84,
"action": "", "action": "",
@@ -246,7 +246,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 33, "id": 30,
"x": 1462.12, "x": 1462.12,
"y": 1804.4, "y": 1804.4,
"action": "", "action": "",
@@ -254,7 +254,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 34, "id": 31,
"x": 1459.83, "x": 1459.83,
"y": 1806.9, "y": 1806.9,
"action": "", "action": "",
@@ -262,7 +262,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 35, "id": 32,
"x": 1463.66, "x": 1463.66,
"y": 1802.99, "y": 1802.99,
"action": "", "action": "",
@@ -270,7 +270,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 36, "id": 33,
"x": 1461.57, "x": 1461.57,
"y": 1798.12, "y": 1798.12,
"action": "", "action": "",
@@ -278,7 +278,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 37, "id": 34,
"x": 1469.02, "x": 1469.02,
"y": 1794.18, "y": 1794.18,
"action": "", "action": "",
@@ -286,7 +286,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 38, "id": 35,
"x": 1485.83, "x": 1485.83,
"y": 1785.99, "y": 1785.99,
"action": "", "action": "",
@@ -294,7 +294,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 39, "id": 36,
"x": 1492.29, "x": 1492.29,
"y": 1785.06, "y": 1785.06,
"move_mode": "walk", "move_mode": "walk",
@@ -303,7 +303,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 40, "id": 37,
"x": 1492.73, "x": 1492.73,
"y": 1781.09, "y": 1781.09,
"action": "", "action": "",
@@ -311,7 +311,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 41, "id": 38,
"x": 1491.63, "x": 1491.63,
"y": 1779.37, "y": 1779.37,
"action": "", "action": "",
@@ -319,7 +319,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 42, "id": 39,
"x": 1492.01, "x": 1492.01,
"y": 1785.29, "y": 1785.29,
"action": "", "action": "",
@@ -327,7 +327,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 43, "id": 40,
"x": 1492.68, "x": 1492.68,
"y": 1784.97, "y": 1784.97,
"action": "", "action": "",
@@ -335,7 +335,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 44, "id": 41,
"x": 1492.32, "x": 1492.32,
"y": 1781.9, "y": 1781.9,
"action": "", "action": "",
@@ -343,7 +343,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 45, "id": 42,
"x": 1491.57, "x": 1491.57,
"y": 1779.36, "y": 1779.36,
"action": "", "action": "",
@@ -351,7 +351,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 46, "id": 43,
"x": 1494.02, "x": 1494.02,
"y": 1780.21, "y": 1780.21,
"action": "", "action": "",
@@ -359,7 +359,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 47, "id": 44,
"x": 1492.19, "x": 1492.19,
"y": 1786.85, "y": 1786.85,
"action": "", "action": "",

View File

@@ -26,6 +26,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 3,
"x": 1461.62, "x": 1461.62,
"y": 2014.59, "y": 2014.59,
"type": "target", "type": "target",
@@ -34,7 +35,7 @@
"action_params": "3" "action_params": "3"
}, },
{ {
"id": 3, "id": 4,
"x": 1487.84, "x": 1487.84,
"y": 1978.88, "y": 1978.88,
"type": "path", "type": "path",
@@ -42,7 +43,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4, "id": 5,
"x": 1496.96, "x": 1496.96,
"y": 1910.74, "y": 1910.74,
"type": "path", "type": "path",
@@ -50,7 +51,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5, "id": 6,
"x": 1480.32, "x": 1480.32,
"y": 1859.34, "y": 1859.34,
"type": "target", "type": "target",
@@ -59,6 +60,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 7,
"x": 1480.32, "x": 1480.32,
"y": 1859.34, "y": 1859.34,
"type": "target", "type": "target",
@@ -67,7 +69,7 @@
"action_params": "2" "action_params": "2"
}, },
{ {
"id": 6, "id": 8,
"x": 1436.73, "x": 1436.73,
"y": 1846.85, "y": 1846.85,
"type": "path", "type": "path",
@@ -75,7 +77,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7, "id": 9,
"x": 1408.65, "x": 1408.65,
"y": 1807.16, "y": 1807.16,
"type": "target", "type": "target",
@@ -84,6 +86,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 10,
"x": 1408.65, "x": 1408.65,
"y": 1806.16, "y": 1806.16,
"type": "target", "type": "target",
@@ -92,7 +95,7 @@
"action_params": "" "action_params": ""
}, },
{ {
"id": 8, "id": 11,
"x": 1456.13, "x": 1456.13,
"y": 1805.07, "y": 1805.07,
"type": "target", "type": "target",

View File

@@ -77,6 +77,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 9,
"x": 1881.88, "x": 1881.88,
"y": 1772.86, "y": 1772.86,
"action": "", "action": "",
@@ -84,7 +85,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 9, "id": 10,
"x": 1877.73, "x": 1877.73,
"y": 1764.58, "y": 1764.58,
"action": "mining", "action": "mining",
@@ -93,7 +94,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 10, "id": 11,
"x": 1878.93, "x": 1878.93,
"y": 1771.9, "y": 1771.9,
"action": "pick_around", "action": "pick_around",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 267.96, "x": 267.96,
"y": -665.16, "y": -665.16,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 269.57, "x": 269.57,
"y": -661.89, "y": -661.89,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 278.26, "x": 278.26,
"y": -666.81, "y": -666.81,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 279.47, "x": 279.47,
"y": -663.86, "y": -663.86,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 281.63, "x": 281.63,
"y": -664.58, "y": -664.58,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 286.09, "x": 286.09,
"y": -660.33, "y": -660.33,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 282.48, "x": 282.48,
"y": -657.72, "y": -657.72,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 507.99, "x": 507.99,
"y": -630.45, "y": -630.45,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 430.76, "x": 430.76,
"y": -620.21, "y": -620.21,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 430.76, "x": 430.76,
"y": -620.21, "y": -620.21,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": 420.07, "x": 420.07,
"y": -619.48, "y": -619.48,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 412.03, "x": 412.03,
"y": -602.1, "y": -602.1,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 416.54, "x": 416.54,
"y": -595.78, "y": -595.78,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 419.6, "x": 419.6,
"y": -600.64, "y": -600.64,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 427.75, "x": 427.75,
"y": -596.92, "y": -596.92,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 431.32, "x": 431.32,
"y": -606.47, "y": -606.47,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 437.48, "x": 437.48,
"y": -605.58, "y": -605.58,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 446.98, "x": 446.98,
"y": -608.51, "y": -608.51,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 454.1, "x": 454.1,
"y": -606.5, "y": -606.5,
"type": "target", "type": "target",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 452.37, "x": 452.37,
"y": -603.62, "y": -603.62,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": 462.3, "x": 462.3,
"y": -590.82, "y": -590.82,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": 439.51, "x": 439.51,
"y": -571.81, "y": -571.81,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": 423.18, "x": 423.18,
"y": -589.43, "y": -589.43,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": 411.77, "x": 411.77,
"y": -588.83, "y": -588.83,
"type": "target", "type": "target",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": 410.57, "x": 410.57,
"y": -585.43, "y": -585.43,
"type": "target", "type": "target",
@@ -134,6 +152,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19,
"x": 401.62, "x": 401.62,
"y": -579.95, "y": -579.95,
"type": "target", "type": "target",
@@ -141,6 +160,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20,
"x": 399.77, "x": 399.77,
"y": -563.02, "y": -563.02,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 507.99, "x": 507.99,
"y": -630.45, "y": -630.45,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 440.59, "x": 440.59,
"y": -546.18, "y": -546.18,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 440.59, "x": 440.59,
"y": -546.18, "y": -546.18,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": 447.23, "x": 447.23,
"y": -540.27, "y": -540.27,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 439.89, "x": 439.89,
"y": -538.9, "y": -538.9,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 428.07, "x": 428.07,
"y": -534.95, "y": -534.95,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 447.82, "x": 447.82,
"y": -542.18, "y": -542.18,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 440.5, "x": 440.5,
"y": -533.13, "y": -533.13,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 474.92, "x": 474.92,
"y": -534.74, "y": -534.74,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 498.78, "x": 498.78,
"y": -534.52, "y": -534.52,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 503.85, "x": 503.85,
"y": -535.72, "y": -535.72,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 498.03, "x": 498.03,
"y": -535.17, "y": -535.17,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 498.91, "x": 498.91,
"y": -521.07, "y": -521.07,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": 480.12, "x": 480.12,
"y": -517.26, "y": -517.26,
"type": "target", "type": "target",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": 475.91, "x": 475.91,
"y": -514.84, "y": -514.84,
"type": "target", "type": "target",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": 466.51, "x": 466.51,
"y": -499.51, "y": -499.51,
"type": "target", "type": "target",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": 468.74, "x": 468.74,
"y": -452.09, "y": -452.09,
"type": "path", "type": "path",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": 468.74, "x": 468.74,
"y": -452.09, "y": -452.09,
"type": "path", "type": "path",
@@ -134,6 +152,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 19,
"x": 476.73, "x": 476.73,
"y": -456.41, "y": -456.41,
"type": "path", "type": "path",
@@ -141,6 +160,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20,
"x": 474.69, "x": 474.69,
"y": -460.31, "y": -460.31,
"type": "target", "type": "target",
@@ -148,6 +168,7 @@
"action": "" "action": ""
}, },
{ {
"id": 21,
"x": 492.05, "x": 492.05,
"y": -469.72, "y": -469.72,
"type": "path", "type": "path",
@@ -155,6 +176,7 @@
"action": "" "action": ""
}, },
{ {
"id": 22,
"x": 490.36, "x": 490.36,
"y": -451.88, "y": -451.88,
"type": "target", "type": "target",
@@ -162,6 +184,7 @@
"action": "" "action": ""
}, },
{ {
"id": 23,
"x": 490.22, "x": 490.22,
"y": -450.81, "y": -450.81,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 547.72, "x": 547.72,
"y": 1766.83, "y": 1766.83,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 558.58, "x": 558.58,
"y": 1756.06, "y": 1756.06,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 565.23, "x": 565.23,
"y": 1739.96, "y": 1739.96,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 556.2, "x": 556.2,
"y": 1732.68, "y": 1732.68,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 587.64, "x": 587.64,
"y": 1723.84, "y": 1723.84,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 603.98, "x": 603.98,
"y": 1712.13, "y": 1712.13,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 627.05, "x": 627.05,
"y": 1708.71, "y": 1708.71,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 638.94, "x": 638.94,
"y": 1705.13, "y": 1705.13,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 659.02, "x": 659.02,
"y": 1694.33, "y": 1694.33,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 706.57, "x": 706.57,
"y": 1666.82, "y": 1666.82,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 706.57, "x": 706.57,
"y": 1666.82, "y": 1666.82,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 12,
"x": 716.82, "x": 716.82,
"y": 1690.11, "y": 1690.11,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 547.75, "x": 547.75,
"y": 1766.8, "y": 1766.8,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 549.3, "x": 549.3,
"y": 1746.91, "y": 1746.91,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 557.48, "x": 557.48,
"y": 1747.94, "y": 1747.94,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 557.5, "x": 557.5,
"y": 1747.92, "y": 1747.92,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 5,
"x": 567.81, "x": 567.81,
"y": 1753.45, "y": 1753.45,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 573.02, "x": 573.02,
"y": 1760.8, "y": 1760.8,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 573.02, "x": 573.02,
"y": 1760.79, "y": 1760.79,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 8,
"x": 561.54, "x": 561.54,
"y": 1764.93, "y": 1764.93,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 547.72, "x": 547.72,
"y": 1766.82, "y": 1766.82,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 556.22, "x": 556.22,
"y": 1763.26, "y": 1763.26,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 658.17, "x": 658.17,
"y": 1776.69, "y": 1776.69,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 658.18, "x": 658.18,
"y": 1776.72, "y": 1776.72,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 5,
"x": 638.71, "x": 638.71,
"y": 1760.81, "y": 1760.81,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 638.71, "x": 638.71,
"y": 1760.81, "y": 1760.81,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 801.62, "x": 801.62,
"y": 1796.1, "y": 1796.1,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 795.33, "x": 795.33,
"y": 1786.5, "y": 1786.5,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 781.81, "x": 781.81,
"y": 1785.26, "y": 1785.26,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 716.6, "x": 716.6,
"y": 1769.25, "y": 1769.25,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 702.85, "x": 702.85,
"y": 1780.73, "y": 1780.73,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 699.6, "x": 699.6,
"y": 1793.48, "y": 1793.48,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 685.85, "x": 685.85,
"y": 1798.27, "y": 1798.27,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 712.79, "x": 712.79,
"y": 1800.15, "y": 1800.15,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 727.42, "x": 727.42,
"y": 1790.52, "y": 1790.52,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 737.79, "x": 737.79,
"y": 1792.79, "y": 1792.79,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 730.25, "x": 730.25,
"y": 1817.61, "y": 1817.61,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 739.39, "x": 739.39,
"y": 1823.68, "y": 1823.68,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 739.39, "x": 739.39,
"y": 1823.68, "y": 1823.68,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": 746.81, "x": 746.81,
"y": 1813.67, "y": 1813.67,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 801.6, "x": 801.6,
"y": 1796.13, "y": 1796.13,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 808.7, "x": 808.7,
"y": 1795.7, "y": 1795.7,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 807.18, "x": 807.18,
"y": 1855.33, "y": 1855.33,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 754.69, "x": 754.69,
"y": 1888.32, "y": 1888.32,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 744.93, "x": 744.93,
"y": 1909.15, "y": 1909.15,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 711.06, "x": 711.06,
"y": 1884.1, "y": 1884.1,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 704.66, "x": 704.66,
"y": 1899.56, "y": 1899.56,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 663.83, "x": 663.83,
"y": 1917.96, "y": 1917.96,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 623.81, "x": 623.81,
"y": 1886.75, "y": 1886.75,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 637.07, "x": 637.07,
"y": 1852.28, "y": 1852.28,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 591.51, "x": 591.51,
"y": 1853.7, "y": 1853.7,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 584.45, "x": 584.45,
"y": 1866.8, "y": 1866.8,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 571.21, "x": 571.21,
"y": 1884.69, "y": 1884.69,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": 598.08, "x": 598.08,
"y": 1912.9, "y": 1912.9,
"type": "target", "type": "target",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": 597.87, "x": 597.87,
"y": 1927.74, "y": 1927.74,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": 584.22, "x": 584.22,
"y": 1927.43, "y": 1927.43,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": 574.47, "x": 574.47,
"y": 1913.88, "y": 1913.88,
"type": "target", "type": "target",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": 588.31, "x": 588.31,
"y": 1918.1, "y": 1918.1,
"type": "path", "type": "path",
@@ -134,6 +152,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19,
"x": 621.39, "x": 621.39,
"y": 1911.12, "y": 1911.12,
"type": "path", "type": "path",
@@ -141,6 +160,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20,
"x": 621.37, "x": 621.37,
"y": 1911.12, "y": 1911.12,
"type": "target", "type": "target",
@@ -148,6 +168,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 21,
"x": 618.55, "x": 618.55,
"y": 1922.19, "y": 1922.19,
"type": "target", "type": "target",
@@ -155,6 +176,7 @@
"action": "" "action": ""
}, },
{ {
"id": 22,
"x": 639.16, "x": 639.16,
"y": 1844.29, "y": 1844.29,
"type": "path", "type": "path",

View File

@@ -9,7 +9,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 3, "id": 1,
"x": 1268.36, "x": 1268.36,
"y": -64.19, "y": -64.19,
"type": "teleport", "type": "teleport",
@@ -17,7 +17,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4, "id": 2,
"x": 1261.1, "x": 1261.1,
"y": -76.42, "y": -76.42,
"type": "path", "type": "path",
@@ -25,7 +25,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5, "id": 3,
"x": 1228.59, "x": 1228.59,
"y": -114.65, "y": -114.65,
"type": "path", "type": "path",
@@ -33,7 +33,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6, "id": 4,
"x": 1183.38, "x": 1183.38,
"y": -160.31, "y": -160.31,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 1451.49, "x": 1451.49,
"y": 1028.57, "y": 1028.57,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 1486.6, "x": 1486.6,
"y": 1050.01, "y": 1050.01,
"type": "path", "type": "path",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 1451.48, "x": 1451.48,
"y": 1028.55, "y": 1028.55,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 1409.11, "x": 1409.11,
"y": 999.54, "y": 999.54,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 1378.43, "x": 1378.43,
"y": 983.55, "y": 983.55,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 1342.81, "x": 1342.81,
"y": 964.82, "y": 964.82,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 1293.3, "x": 1293.3,
"y": 951.42, "y": 951.42,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 1252.97, "x": 1252.97,
"y": 941.31, "y": 941.31,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 1221.96, "x": 1221.96,
"y": 918.9, "y": 918.9,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 1208.09, "x": 1208.09,
"y": 901.84, "y": 901.84,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 1199.16, "x": 1199.16,
"y": 881.51, "y": 881.51,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 1202.58, "x": 1202.58,
"y": 879.08, "y": 879.08,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 1213.59, "x": 1213.59,
"y": 875.83, "y": 875.83,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 1225.45, "x": 1225.45,
"y": 876.6, "y": 876.6,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 1222.58, "x": 1222.58,
"y": 824.89, "y": 824.89,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": 1204.31, "x": 1204.31,
"y": 796.78, "y": 796.78,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": 1171.17, "x": 1171.17,
"y": 764.98, "y": 764.98,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": 1167.88, "x": 1167.88,
"y": 760.1, "y": 760.1,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": 1152.89, "x": 1152.89,
"y": 740.5, "y": 740.5,
"type": "path", "type": "path",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": 1107.23, "x": 1107.23,
"y": 756.12, "y": 756.12,
"type": "path", "type": "path",
@@ -134,6 +152,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 19,
"x": 1104.0, "x": 1104.0,
"y": 757.06, "y": 757.06,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -321.58, "x": -321.58,
"y": 1473.27, "y": 1473.27,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -308.7, "x": -308.7,
"y": 1477.43, "y": 1477.43,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -285.29, "x": -285.29,
"y": 1483.84, "y": 1483.84,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -247.55, "x": -247.55,
"y": 1488.24, "y": 1488.24,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -232.14, "x": -232.14,
"y": 1487.56, "y": 1487.56,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -193.57, "x": -193.57,
"y": 1487.46, "y": 1487.46,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -130.38, "x": -130.38,
"y": 1495.48, "y": 1495.48,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -111.97, "x": -111.97,
"y": 1487.57, "y": 1487.57,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -109.24, "x": -109.24,
"y": 1486.31, "y": 1486.31,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -93.39, "x": -93.39,
"y": 1511.75, "y": 1511.75,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -79.23, "x": -79.23,
"y": 1515.67, "y": 1515.67,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -38.42, "x": -38.42,
"y": 1506.28, "y": 1506.28,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -30.3, "x": -30.3,
"y": 1500.15, "y": 1500.15,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -36.43, "x": -36.43,
"y": 1527.48, "y": 1527.48,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -26.94, "x": -26.94,
"y": 1540.67, "y": 1540.67,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -17.45, "x": -17.45,
"y": 1553.64, "y": 1553.64,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -7.07, "x": -7.07,
"y": 1557.68, "y": 1557.68,
"type": "target", "type": "target",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": -28.25, "x": -28.25,
"y": 1569.03, "y": 1569.03,
"type": "path", "type": "path",
@@ -134,6 +152,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19,
"x": -38.06, "x": -38.06,
"y": 1579.16, "y": 1579.16,
"type": "path", "type": "path",
@@ -141,6 +160,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20,
"x": -34.16, "x": -34.16,
"y": 1582.53, "y": 1582.53,
"type": "path", "type": "path",
@@ -148,6 +168,7 @@
"action": "" "action": ""
}, },
{ {
"id": 21,
"x": -29.29, "x": -29.29,
"y": 1582.73, "y": 1582.73,
"type": "target", "type": "target",
@@ -155,6 +176,7 @@
"action": "" "action": ""
}, },
{ {
"id": 22,
"x": -34.28, "x": -34.28,
"y": 1616.5, "y": 1616.5,
"type": "path", "type": "path",
@@ -162,6 +184,7 @@
"action": "" "action": ""
}, },
{ {
"id": 23,
"x": -5.14, "x": -5.14,
"y": 1652.47, "y": 1652.47,
"type": "path", "type": "path",
@@ -169,6 +192,7 @@
"action": "" "action": ""
}, },
{ {
"id": 24,
"x": 4.62, "x": 4.62,
"y": 1668.39, "y": 1668.39,
"type": "path", "type": "path",
@@ -176,6 +200,7 @@
"action": "" "action": ""
}, },
{ {
"id": 25,
"x": 5.15, "x": 5.15,
"y": 1671.38, "y": 1671.38,
"type": "path", "type": "path",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 547.69, "x": 547.69,
"y": 1766.75, "y": 1766.75,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 547.67, "x": 547.67,
"y": 1766.78, "y": 1766.78,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 551.05, "x": 551.05,
"y": 1790.24, "y": 1790.24,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": 551.02, "x": 551.02,
"y": 1788.23, "y": 1788.23,
"type": "path", "type": "path",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 547.72, "x": 547.72,
"y": 1766.81, "y": 1766.81,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 555.52, "x": 555.52,
"y": 1751.41, "y": 1751.41,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 557.13, "x": 557.13,
"y": 1747.48, "y": 1747.48,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 558.27, "x": 558.27,
"y": 1739.45, "y": 1739.45,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 557.47, "x": 557.47,
"y": 1731.25, "y": 1731.25,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 584.34, "x": 584.34,
"y": 1726.02, "y": 1726.02,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 638.32, "x": 638.32,
"y": 1705.12, "y": 1705.12,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 647.09, "x": 647.09,
"y": 1702.91, "y": 1702.91,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 653.86, "x": 653.86,
"y": 1695.32, "y": 1695.32,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 659.07, "x": 659.07,
"y": 1694.26, "y": 1694.26,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 654.97, "x": 654.97,
"y": 1701.35, "y": 1701.35,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 668.98, "x": 668.98,
"y": 1709.28, "y": 1709.28,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 683.86, "x": 683.86,
"y": 1751.19, "y": 1751.19,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": 671.33, "x": 671.33,
"y": 1759.09, "y": 1759.09,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": 659.02, "x": 659.02,
"y": 1775.99, "y": 1775.99,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": 677.17, "x": 677.17,
"y": 1785.79, "y": 1785.79,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": 685.74, "x": 685.74,
"y": 1799.11, "y": 1799.11,
"type": "path", "type": "path",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": 682.5, "x": 682.5,
"y": 1812.76, "y": 1812.76,
"type": "path", "type": "path",
@@ -134,6 +152,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19,
"x": 704.74, "x": 704.74,
"y": 1822.2, "y": 1822.2,
"type": "path", "type": "path",
@@ -141,6 +160,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20,
"x": 703.85, "x": 703.85,
"y": 1843.57, "y": 1843.57,
"type": "path", "type": "path",
@@ -148,6 +168,7 @@
"action": "" "action": ""
}, },
{ {
"id": 21,
"x": 702.26, "x": 702.26,
"y": 1846.02, "y": 1846.02,
"type": "path", "type": "path",
@@ -155,6 +176,7 @@
"action": "" "action": ""
}, },
{ {
"id": 22,
"x": 706.47, "x": 706.47,
"y": 1851.82, "y": 1851.82,
"type": "path", "type": "path",
@@ -162,6 +184,7 @@
"action": "" "action": ""
}, },
{ {
"id": 23,
"x": 705.34, "x": 705.34,
"y": 1854.55, "y": 1854.55,
"type": "path", "type": "path",
@@ -169,6 +192,7 @@
"action": "" "action": ""
}, },
{ {
"id": 24,
"x": 721.34, "x": 721.34,
"y": 1881.31, "y": 1881.31,
"type": "path", "type": "path",
@@ -176,6 +200,7 @@
"action": "" "action": ""
}, },
{ {
"id": 25,
"x": 711.38, "x": 711.38,
"y": 1883.64, "y": 1883.64,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 801.58, "x": 801.58,
"y": 1796.14, "y": 1796.14,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 812.59, "x": 812.59,
"y": 1792.38, "y": 1792.38,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 821.24, "x": 821.24,
"y": 1797.42, "y": 1797.42,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 1436.33, "x": 1436.33,
"y": 1289.96, "y": 1289.96,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 1447.47, "x": 1447.47,
"y": 1257.22, "y": 1257.22,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": 1460.07, "x": 1460.07,
"y": 1235.83, "y": 1235.83,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 1446.32, "x": 1446.32,
"y": 1213.04, "y": 1213.04,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 1421.44, "x": 1421.44,
"y": 1206.45, "y": 1206.45,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 1393.28, "x": 1393.28,
"y": 1220.97, "y": 1220.97,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 1372.99, "x": 1372.99,
"y": 1221.74, "y": 1221.74,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 1361.83, "x": 1361.83,
"y": 1211.53, "y": 1211.53,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 1342.13, "x": 1342.13,
"y": 1165.49, "y": 1165.49,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 1333.35, "x": 1333.35,
"y": 1150.54, "y": 1150.54,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 1312.25, "x": 1312.25,
"y": 1150.66, "y": 1150.66,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 1295.54, "x": 1295.54,
"y": 1140.82, "y": 1140.82,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 1309.98, "x": 1309.98,
"y": 1125.23, "y": 1125.23,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": 1308.32, "x": 1308.32,
"y": 1117.31, "y": 1117.31,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": 1335.07, "x": 1335.07,
"y": 1088.01, "y": 1088.01,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": 1370.19, "x": 1370.19,
"y": 1087.64, "y": 1087.64,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": 1380.27, "x": 1380.27,
"y": 1088.78, "y": 1088.78,
"type": "path", "type": "path",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": 328.97, "x": 328.97,
"y": 873.58, "y": 873.58,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": 275.63, "x": 275.63,
"y": 864.53, "y": 864.53,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 3,
"x": 267.63, "x": 267.63,
"y": 860.53, "y": 860.53,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": 285.19, "x": 285.19,
"y": 887.51, "y": 887.51,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": 274.72, "x": 274.72,
"y": 914.68, "y": 914.68,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": 301.85, "x": 301.85,
"y": 937.81, "y": 937.81,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": 284.09, "x": 284.09,
"y": 945.51, "y": 945.51,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": 293.76, "x": 293.76,
"y": 939.53, "y": 939.53,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": 308.95, "x": 308.95,
"y": 962.22, "y": 962.22,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": 337.5, "x": 337.5,
"y": 994.74, "y": 994.74,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": 352.61, "x": 352.61,
"y": 1010.85, "y": 1010.85,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": 349.09, "x": 349.09,
"y": 1020.06, "y": 1020.06,
"type": "target", "type": "target",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": 380.65, "x": 380.65,
"y": 1032.59, "y": 1032.59,
"type": "target", "type": "target",

View File

@@ -153,7 +153,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 20, "id": 19,
"x": -4108.27, "x": -4108.27,
"y": -4816.23, "y": -4816.23,
"action": "", "action": "",
@@ -161,7 +161,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 21, "id": 20,
"x": -4135.23, "x": -4135.23,
"y": -4812.48, "y": -4812.48,
"action": "", "action": "",
@@ -169,7 +169,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 22, "id": 21,
"x": -4130.55, "x": -4130.55,
"y": -4807.46, "y": -4807.46,
"action": "", "action": "",
@@ -177,7 +177,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 23, "id": 22,
"x": -4145.06, "x": -4145.06,
"y": -4830.29, "y": -4830.29,
"action": "", "action": "",
@@ -185,7 +185,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 24, "id": 23,
"x": -4159.44, "x": -4159.44,
"y": -4829.14, "y": -4829.14,
"action": "", "action": "",
@@ -193,7 +193,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 25, "id": 24,
"x": -4164.97, "x": -4164.97,
"y": -4832.08, "y": -4832.08,
"action": "", "action": "",
@@ -201,7 +201,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 26, "id": 25,
"x": -4164.41, "x": -4164.41,
"y": -4842.6, "y": -4842.6,
"action": "", "action": "",
@@ -209,7 +209,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 27, "id": 26,
"x": -4178.9, "x": -4178.9,
"y": -4850.36, "y": -4850.36,
"action": "", "action": "",
@@ -217,7 +217,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 28, "id": 27,
"x": -4192.33, "x": -4192.33,
"y": -4844.13, "y": -4844.13,
"action": "", "action": "",

View File

@@ -17,7 +17,7 @@
"type": "teleport" "type": "teleport"
}, },
{ {
"id": 3, "id": 2,
"x": -4195.28, "x": -4195.28,
"y": -4253.78, "y": -4253.78,
"action": "", "action": "",
@@ -25,7 +25,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 4, "id": 3,
"x": -4202.15, "x": -4202.15,
"y": -4258.45, "y": -4258.45,
"action": "", "action": "",
@@ -33,7 +33,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 5, "id": 4,
"x": -4214.45, "x": -4214.45,
"y": -4269.48, "y": -4269.48,
"action": "", "action": "",
@@ -41,7 +41,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 6, "id": 5,
"x": -4216.56, "x": -4216.56,
"y": -4271.76, "y": -4271.76,
"action": "", "action": "",
@@ -49,7 +49,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 7, "id": 6,
"x": -4217.97, "x": -4217.97,
"y": -4269.1, "y": -4269.1,
"action": "", "action": "",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2836.85, "x": -2836.85,
"y": -6287.49, "y": -6287.49,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -2911.88, "x": -2911.88,
"y": -6269.32, "y": -6269.32,
"type": "target", "type": "target",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -2914.77, "x": -2914.77,
"y": -6268.11, "y": -6268.11,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -2913.99, "x": -2913.99,
"y": -6277.85, "y": -6277.85,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -2905.33, "x": -2905.33,
"y": -6289.27, "y": -6289.27,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -2908.33, "x": -2908.33,
"y": -6285.14, "y": -6285.14,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -2907.58, "x": -2907.58,
"y": -6289.06, "y": -6289.06,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -2918.28, "x": -2918.28,
"y": -6279.84, "y": -6279.84,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2946.35, "x": -2946.35,
"y": -6265.88, "y": -6265.88,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -2934.02, "x": -2934.02,
"y": -6265.35, "y": -6265.35,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -2933.26, "x": -2933.26,
"y": -6262.63, "y": -6262.63,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -2967.96, "x": -2967.96,
"y": -6284.82, "y": -6284.82,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -2974.64, "x": -2974.64,
"y": -6293.96, "y": -6293.96,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -2977.47, "x": -2977.47,
"y": -6293.27, "y": -6293.27,
"type": "target", "type": "target",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -2976.94, "x": -2976.94,
"y": -6286.15, "y": -6286.15,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -2979.61, "x": -2979.61,
"y": -6288.95, "y": -6288.95,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2836.83, "x": -2836.83,
"y": -6287.49, "y": -6287.49,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -2813.85, "x": -2813.85,
"y": -6292.11, "y": -6292.11,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -2802.88, "x": -2802.88,
"y": -6318.12, "y": -6318.12,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -2788.02, "x": -2788.02,
"y": -6342.86, "y": -6342.86,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -2800.86, "x": -2800.86,
"y": -6368.32, "y": -6368.32,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -2800.58, "x": -2800.58,
"y": -6360.14, "y": -6360.14,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -2801.6, "x": -2801.6,
"y": -6376.25, "y": -6376.25,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -2791.88, "x": -2791.88,
"y": -6374.51, "y": -6374.51,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2788.09, "x": -2788.09,
"y": -6378.85, "y": -6378.85,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -2788.6, "x": -2788.6,
"y": -6372.85, "y": -6372.85,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -2779.95, "x": -2779.95,
"y": -6366.05, "y": -6366.05,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -2772.93, "x": -2772.93,
"y": -6342.8, "y": -6342.8,
"type": "target", "type": "target",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -2775.77, "x": -2775.77,
"y": -6337.32, "y": -6337.32,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -2771.67, "x": -2771.67,
"y": -6334.58, "y": -6334.58,
"type": "target", "type": "target",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -2769.84, "x": -2769.84,
"y": -6331.36, "y": -6331.36,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2612.33, "x": -2612.33,
"y": -6508.18, "y": -6508.18,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -2600.82, "x": -2600.82,
"y": -6488.98, "y": -6488.98,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -2599.91, "x": -2599.91,
"y": -6476.02, "y": -6476.02,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -2600.78, "x": -2600.78,
"y": -6474.14, "y": -6474.14,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -2610.88, "x": -2610.88,
"y": -6459.45, "y": -6459.45,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -2637.28, "x": -2637.28,
"y": -6437.77, "y": -6437.77,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -2644.97, "x": -2644.97,
"y": -6427.12, "y": -6427.12,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -2654.03, "x": -2654.03,
"y": -6435.92, "y": -6435.92,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2662.73, "x": -2662.73,
"y": -6423.56, "y": -6423.56,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -2656.02, "x": -2656.02,
"y": -6434.01, "y": -6434.01,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -2589.73, "x": -2589.73,
"y": -6437.7, "y": -6437.7,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -2574.07, "x": -2574.07,
"y": -6439.55, "y": -6439.55,
"type": "target", "type": "target",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -2573.79, "x": -2573.79,
"y": -6437.29, "y": -6437.29,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -2554.33, "x": -2554.33,
"y": -6448.31, "y": -6448.31,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -2543.49, "x": -2543.49,
"y": -6435.05, "y": -6435.05,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -2545.75, "x": -2545.75,
"y": -6411.51, "y": -6411.51,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -2553.18, "x": -2553.18,
"y": -6416.57, "y": -6416.57,
"type": "target", "type": "target",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": -2556.48, "x": -2556.48,
"y": -6414.24, "y": -6414.24,
"type": "target", "type": "target",
@@ -134,6 +152,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19,
"x": -2561.9, "x": -2561.9,
"y": -6418.94, "y": -6418.94,
"type": "target", "type": "target",
@@ -141,6 +160,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20,
"x": -2564.71, "x": -2564.71,
"y": -6418.29, "y": -6418.29,
"type": "target", "type": "target",
@@ -148,6 +168,7 @@
"action": "" "action": ""
}, },
{ {
"id": 21,
"x": -2573.53, "x": -2573.53,
"y": -6389.46, "y": -6389.46,
"type": "path", "type": "path",
@@ -155,6 +176,7 @@
"action": "" "action": ""
}, },
{ {
"id": 22,
"x": -2574.22, "x": -2574.22,
"y": -6387.5, "y": -6387.5,
"type": "target", "type": "target",
@@ -162,6 +184,7 @@
"action": "" "action": ""
}, },
{ {
"id": 23,
"x": -2571.68, "x": -2571.68,
"y": -6387.35, "y": -6387.35,
"type": "path", "type": "path",
@@ -169,6 +192,7 @@
"action": "" "action": ""
}, },
{ {
"id": 24,
"x": -2571.17, "x": -2571.17,
"y": -6385.5, "y": -6385.5,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2606.28, "x": -2606.28,
"y": -6216.23, "y": -6216.23,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -2610.15, "x": -2610.15,
"y": -6232.87, "y": -6232.87,
"type": "target", "type": "target",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -2606.73, "x": -2606.73,
"y": -6225.52, "y": -6225.52,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -2605.55, "x": -2605.55,
"y": -6235.36, "y": -6235.36,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -2588.31, "x": -2588.31,
"y": -6206.93, "y": -6206.93,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -2585.64, "x": -2585.64,
"y": -6189.06, "y": -6189.06,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -2549.28, "x": -2549.28,
"y": -6151.72, "y": -6151.72,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -2538.0, "x": -2538.0,
"y": -6124.97, "y": -6124.97,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2538.02, "x": -2538.02,
"y": -6125.01, "y": -6125.01,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 10,
"x": -2538.58, "x": -2538.58,
"y": -6122.03, "y": -6122.03,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -2565.7, "x": -2565.7,
"y": -6131.2, "y": -6131.2,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -2579.8, "x": -2579.8,
"y": -6124.82, "y": -6124.82,
"type": "target", "type": "target",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -2580.54, "x": -2580.54,
"y": -6123.28, "y": -6123.28,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -2589.39, "x": -2589.39,
"y": -6106.52, "y": -6106.52,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -2665.62, "x": -2665.62,
"y": -6121.24, "y": -6121.24,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -2694.46, "x": -2694.46,
"y": -6107.55, "y": -6107.55,
"type": "target", "type": "target",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -2698.35, "x": -2698.35,
"y": -6106.42, "y": -6106.42,
"type": "target", "type": "target",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": -2718.87, "x": -2718.87,
"y": -6100.66, "y": -6100.66,
"type": "path", "type": "path",
@@ -134,6 +152,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19,
"x": -2716.38, "x": -2716.38,
"y": -6127.57, "y": -6127.57,
"type": "path", "type": "path",
@@ -141,6 +160,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20,
"x": -2701.59, "x": -2701.59,
"y": -6138.38, "y": -6138.38,
"type": "path", "type": "path",
@@ -148,6 +168,7 @@
"action": "" "action": ""
}, },
{ {
"id": 21,
"x": -2712.44, "x": -2712.44,
"y": -6141.94, "y": -6141.94,
"type": "target", "type": "target",
@@ -155,6 +176,7 @@
"action": "" "action": ""
}, },
{ {
"id": 22,
"x": -2710.09, "x": -2710.09,
"y": -6151.85, "y": -6151.85,
"type": "path", "type": "path",
@@ -162,6 +184,7 @@
"action": "" "action": ""
}, },
{ {
"id": 23,
"x": -2714.98, "x": -2714.98,
"y": -6145.58, "y": -6145.58,
"type": "target", "type": "target",
@@ -169,6 +192,7 @@
"action": "" "action": ""
}, },
{ {
"id": 24,
"x": -2711.62, "x": -2711.62,
"y": -6159.36, "y": -6159.36,
"type": "path", "type": "path",
@@ -176,6 +200,7 @@
"action": "" "action": ""
}, },
{ {
"id": 25,
"x": -2735.1, "x": -2735.1,
"y": -6182.74, "y": -6182.74,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2556.34, "x": -2556.34,
"y": -6007.46, "y": -6007.46,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -2566.51, "x": -2566.51,
"y": -6009.4, "y": -6009.4,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -2637.49, "x": -2637.49,
"y": -5990.2, "y": -5990.2,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -2637.49, "x": -2637.49,
"y": -5990.2, "y": -5990.2,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 5,
"x": -2638.59, "x": -2638.59,
"y": -5985.33, "y": -5985.33,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -2644.58, "x": -2644.58,
"y": -5989.94, "y": -5989.94,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -2653.97, "x": -2653.97,
"y": -5995.38, "y": -5995.38,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -2648.76, "x": -2648.76,
"y": -5988.7, "y": -5988.7,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2655.65, "x": -2655.65,
"y": -6000.18, "y": -6000.18,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -2633.69, "x": -2633.69,
"y": -6065.2, "y": -6065.2,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -2635.34, "x": -2635.34,
"y": -6072.55, "y": -6072.55,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -2633.6, "x": -2633.6,
"y": -6068.15, "y": -6068.15,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -2635.04, "x": -2635.04,
"y": -6070.82, "y": -6070.82,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -2638.11, "x": -2638.11,
"y": -6072.01, "y": -6072.01,
"type": "target", "type": "target",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -2638.23, "x": -2638.23,
"y": -6067.05, "y": -6067.05,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2556.35, "x": -2556.35,
"y": -6007.45, "y": -6007.45,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -2552.65, "x": -2552.65,
"y": -5995.71, "y": -5995.71,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -2550.16, "x": -2550.16,
"y": -5977.33, "y": -5977.33,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -2550.16, "x": -2550.16,
"y": -5977.33, "y": -5977.33,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 5,
"x": -2541.24, "x": -2541.24,
"y": -5963.49, "y": -5963.49,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -2543.53, "x": -2543.53,
"y": -5959.32, "y": -5959.32,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -2569.38, "x": -2569.38,
"y": -5963.76, "y": -5963.76,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -2571.75, "x": -2571.75,
"y": -5969.18, "y": -5969.18,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2583.86, "x": -2583.86,
"y": -5966.61, "y": -5966.61,
"type": "target", "type": "target",

View File

@@ -49,7 +49,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7, "id": 6,
"x": -2015.29, "x": -2015.29,
"y": -3619.22, "y": -3619.22,
"type": "target", "type": "target",

View File

@@ -97,7 +97,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13, "id": 12,
"x": -3037.85, "x": -3037.85,
"y": -3684.66, "y": -3684.66,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -4041.37, "x": -4041.37,
"y": -2657.98, "y": -2657.98,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -4022.29, "x": -4022.29,
"y": -2631.32, "y": -2631.32,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -4023.0, "x": -4023.0,
"y": -2595.09, "y": -2595.09,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -4031.2, "x": -4031.2,
"y": -2596.55, "y": -2596.55,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -4043.53, "x": -4043.53,
"y": -2588.07, "y": -2588.07,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -4030.11, "x": -4030.11,
"y": -2573.02, "y": -2573.02,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -4038.82, "x": -4038.82,
"y": -2547.8, "y": -2547.8,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -3437.11, "x": -3437.11,
"y": -3314.66, "y": -3314.66,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -3439.71, "x": -3439.71,
"y": -3346.08, "y": -3346.08,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 3,
"x": -3437.81, "x": -3437.81,
"y": -3357.56, "y": -3357.56,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": -3436.95, "x": -3436.95,
"y": -3374.05, "y": -3374.05,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 5,
"x": -3455.08, "x": -3455.08,
"y": -3387.56, "y": -3387.56,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -3480.23, "x": -3480.23,
"y": -3383.34, "y": -3383.34,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -3500.21, "x": -3500.21,
"y": -3367.57, "y": -3367.57,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -3523.89, "x": -3523.89,
"y": -3352.72, "y": -3352.72,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -3541.48, "x": -3541.48,
"y": -3351.38, "y": -3351.38,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -3556.91, "x": -3556.91,
"y": -3347.07, "y": -3347.07,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -3575.9, "x": -3575.9,
"y": -3343.29, "y": -3343.29,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -3592.52, "x": -3592.52,
"y": -3357.51, "y": -3357.51,
"type": "target", "type": "target",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -3593.13, "x": -3593.13,
"y": -3340.33, "y": -3340.33,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -3607.2, "x": -3607.2,
"y": -3337.0, "y": -3337.0,
"type": "target", "type": "target",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -3605.46, "x": -3605.46,
"y": -3329.29, "y": -3329.29,
"type": "target", "type": "target",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -3610.75, "x": -3610.75,
"y": -3326.97, "y": -3326.97,
"type": "target", "type": "target",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -3623.85, "x": -3623.85,
"y": -3314.04, "y": -3314.04,
"type": "path", "type": "path",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": -3646.62, "x": -3646.62,
"y": -3315.7, "y": -3315.7,
"type": "path", "type": "path",
@@ -134,6 +152,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19,
"x": -3650.94, "x": -3650.94,
"y": -3333.0, "y": -3333.0,
"type": "target", "type": "target",
@@ -141,6 +160,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20,
"x": -3652.74, "x": -3652.74,
"y": -3335.48, "y": -3335.48,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -3437.62, "x": -3437.62,
"y": -3315.43, "y": -3315.43,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -3408.11, "x": -3408.11,
"y": -3334.53, "y": -3334.53,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -3386.61, "x": -3386.61,
"y": -3343.53, "y": -3343.53,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": -3372.56, "x": -3372.56,
"y": -3348.36, "y": -3348.36,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -3370.25, "x": -3370.25,
"y": -3358.3, "y": -3358.3,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -3396.91, "x": -3396.91,
"y": -3555.42, "y": -3555.42,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -3379.87, "x": -3379.87,
"y": -3559.25, "y": -3559.25,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 3,
"x": -3364.17, "x": -3364.17,
"y": -3545.31, "y": -3545.31,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -3390.9, "x": -3390.9,
"y": -3505.16, "y": -3505.16,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -3414.03, "x": -3414.03,
"y": -3496.22, "y": -3496.22,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -3441.59, "x": -3441.59,
"y": -3489.31, "y": -3489.31,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -3460.1, "x": -3460.1,
"y": -3477.01, "y": -3477.01,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -3454.91, "x": -3454.91,
"y": -3465.29, "y": -3465.29,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -3435.02, "x": -3435.02,
"y": -3458.38, "y": -3458.38,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -3417.02, "x": -3417.02,
"y": -3446.03, "y": -3446.03,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -3405.27, "x": -3405.27,
"y": -3433.87, "y": -3433.87,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -3393.41, "x": -3393.41,
"y": -3423.6, "y": -3423.6,
"type": "target", "type": "target",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -3367.69, "x": -3367.69,
"y": -3439.95, "y": -3439.95,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -3338.64, "x": -3338.64,
"y": -3437.38, "y": -3437.38,
"type": "target", "type": "target",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -3329.63, "x": -3329.63,
"y": -3434.76, "y": -3434.76,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -3229.89, "x": -3229.89,
"y": -3872.3, "y": -3872.3,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -3257.98, "x": -3257.98,
"y": -3867.22, "y": -3867.22,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -3280.06, "x": -3280.06,
"y": -3857.16, "y": -3857.16,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -3289.38, "x": -3289.38,
"y": -3829.37, "y": -3829.37,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -3281.89, "x": -3281.89,
"y": -3825.76, "y": -3825.76,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -3265.6, "x": -3265.6,
"y": -3817.68, "y": -3817.68,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -3269.84, "x": -3269.84,
"y": -3813.15, "y": -3813.15,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -3265.52, "x": -3265.52,
"y": -3795.15, "y": -3795.15,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -3276.47, "x": -3276.47,
"y": -3771.35, "y": -3771.35,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -3020.0, "x": -3020.0,
"y": -3621.55, "y": -3621.55,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -3005.3, "x": -3005.3,
"y": -3585.37, "y": -3585.37,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 3,
"x": -2988.51, "x": -2988.51,
"y": -3544.79, "y": -3544.79,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -3014.8, "x": -3014.8,
"y": -3510.38, "y": -3510.38,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -3041.45, "x": -3041.45,
"y": -3504.57, "y": -3504.57,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -3037.81, "x": -3037.81,
"y": -3483.21, "y": -3483.21,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -3007.94, "x": -3007.94,
"y": -3497.41, "y": -3497.41,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -3001.53, "x": -3001.53,
"y": -3478.58, "y": -3478.58,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2995.61, "x": -2995.61,
"y": -3466.52, "y": -3466.52,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -3014.69, "x": -3014.69,
"y": -3446.32, "y": -3446.32,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -3005.44, "x": -3005.44,
"y": -3428.96, "y": -3428.96,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -3016.43, "x": -3016.43,
"y": -3397.36, "y": -3397.36,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -3023.46, "x": -3023.46,
"y": -3372.25, "y": -3372.25,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2402.94, "x": -2402.94,
"y": -3922.03, "y": -3922.03,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -2435.68, "x": -2435.68,
"y": -3901.92, "y": -3901.92,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -2446.7, "x": -2446.7,
"y": -3882.53, "y": -3882.53,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": -2473.25, "x": -2473.25,
"y": -3862.0, "y": -3862.0,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 5,
"x": -2508.8, "x": -2508.8,
"y": -3839.41, "y": -3839.41,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -2524.2, "x": -2524.2,
"y": -3832.59, "y": -3832.59,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -2551.14, "x": -2551.14,
"y": -3827.29, "y": -3827.29,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -2588.74, "x": -2588.74,
"y": -3822.98, "y": -3822.98,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2621.9, "x": -2621.9,
"y": -3813.19, "y": -3813.19,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -2668.89, "x": -2668.89,
"y": -3795.24, "y": -3795.24,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -2663.23, "x": -2663.23,
"y": -3809.88, "y": -3809.88,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -2664.17, "x": -2664.17,
"y": -3814.21, "y": -3814.21,
"type": "target", "type": "target",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -2668.31, "x": -2668.31,
"y": -3827.6, "y": -3827.6,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -2655.18, "x": -2655.18,
"y": -3844.53, "y": -3844.53,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -4028.49, "x": -4028.49,
"y": -4436.19, "y": -4436.19,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -4020.35, "x": -4020.35,
"y": -4398.73, "y": -4398.73,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -4004.56, "x": -4004.56,
"y": -4376.24, "y": -4376.24,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -4008.72, "x": -4008.72,
"y": -4336.64, "y": -4336.64,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -4009.86, "x": -4009.86,
"y": -4325.09, "y": -4325.09,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -4030.14, "x": -4030.14,
"y": -4314.22, "y": -4314.22,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -4033.41, "x": -4033.41,
"y": -4318.72, "y": -4318.72,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -4051.56, "x": -4051.56,
"y": -4303.33, "y": -4303.33,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -4058.29, "x": -4058.29,
"y": -4320.45, "y": -4320.45,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -4064.53, "x": -4064.53,
"y": -4322.05, "y": -4322.05,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -4021.66, "x": -4021.66,
"y": -4331.21, "y": -4331.21,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -3989.76, "x": -3989.76,
"y": -4339.85, "y": -4339.85,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -3979.38, "x": -3979.38,
"y": -4316.25, "y": -4316.25,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -3965.75, "x": -3965.75,
"y": -4296.22, "y": -4296.22,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -3948.36, "x": -3948.36,
"y": -4272.43, "y": -4272.43,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -3947.41, "x": -3947.41,
"y": -4252.7, "y": -4252.7,
"type": "target", "type": "target",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -3941.9, "x": -3941.9,
"y": -4244.31, "y": -4244.31,
"type": "target", "type": "target",
@@ -127,6 +144,7 @@
"action": "" "action": ""
}, },
{ {
"id": 18,
"x": -3916.96, "x": -3916.96,
"y": -4238.71, "y": -4238.71,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -3679.97, "x": -3679.97,
"y": -4282.12, "y": -4282.12,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -3683.69, "x": -3683.69,
"y": -4308.17, "y": -4308.17,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -3673.87, "x": -3673.87,
"y": -4322.79, "y": -4322.79,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -3681.02, "x": -3681.02,
"y": -4316.2, "y": -4316.2,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -3664.48, "x": -3664.48,
"y": -4308.38, "y": -4308.38,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -3629.81, "x": -3629.81,
"y": -4277.4, "y": -4277.4,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -3649.32, "x": -3649.32,
"y": -4254.87, "y": -4254.87,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -3700.24, "x": -3700.24,
"y": -4688.41, "y": -4688.41,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -3720.48, "x": -3720.48,
"y": -4665.04, "y": -4665.04,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -3750.83, "x": -3750.83,
"y": -4640.38, "y": -4640.38,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -3768.24, "x": -3768.24,
"y": -4621.11, "y": -4621.11,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -3775.74, "x": -3775.74,
"y": -4612.28, "y": -4612.28,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -3778.5, "x": -3778.5,
"y": -4579.91, "y": -4579.91,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -3778.37, "x": -3778.37,
"y": -4563.69, "y": -4563.69,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -3767.05, "x": -3767.05,
"y": -4547.63, "y": -4547.63,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -3752.34, "x": -3752.34,
"y": -4537.3, "y": -4537.3,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -3722.09, "x": -3722.09,
"y": -4531.64, "y": -4531.64,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -3707.09, "x": -3707.09,
"y": -4526.84, "y": -4526.84,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -3703.26, "x": -3703.26,
"y": -4517.28, "y": -4517.28,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -4168.78, "x": -4168.78,
"y": -4570.46, "y": -4570.46,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -4212.17, "x": -4212.17,
"y": -4533.96, "y": -4533.96,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -4248.14, "x": -4248.14,
"y": -4509.98, "y": -4509.98,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": -4243.92, "x": -4243.92,
"y": -4503.45, "y": -4503.45,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -4236.1, "x": -4236.1,
"y": -4505.83, "y": -4505.83,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -4232.71, "x": -4232.71,
"y": -4501.4, "y": -4501.4,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -4235.5, "x": -4235.5,
"y": -4492.12, "y": -4492.12,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -1316.16, "x": -1316.16,
"y": -3772.72, "y": -3772.72,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -1332.44, "x": -1332.44,
"y": -3822.8, "y": -3822.8,
"type": "target", "type": "target",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -1353.18, "x": -1353.18,
"y": -3784.26, "y": -3784.26,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -1058.99, "x": -1058.99,
"y": -3947.85, "y": -3947.85,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -1006.87, "x": -1006.87,
"y": -3952.6, "y": -3952.6,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -993.53, "x": -993.53,
"y": -3955.21, "y": -3955.21,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": -986.75, "x": -986.75,
"y": -3962.99, "y": -3962.99,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -975.91, "x": -975.91,
"y": -3960.45, "y": -3960.45,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -960.39, "x": -960.39,
"y": -3960.8, "y": -3960.8,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -943.4, "x": -943.4,
"y": -3954.65, "y": -3954.65,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -757.03, "x": -757.03,
"y": -4004.17, "y": -4004.17,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -749.83, "x": -749.83,
"y": -4026.99, "y": -4026.99,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 3,
"x": -736.16, "x": -736.16,
"y": -4060.87, "y": -4060.87,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -710.71, "x": -710.71,
"y": -4074.22, "y": -4074.22,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -702.82, "x": -702.82,
"y": -4091.26, "y": -4091.26,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -709.61, "x": -709.61,
"y": -4094.51, "y": -4094.51,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -727.29, "x": -727.29,
"y": -4075.41, "y": -4075.41,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -746.09, "x": -746.09,
"y": -4070.66, "y": -4070.66,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -778.08, "x": -778.08,
"y": -4076.47, "y": -4076.47,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -807.27, "x": -807.27,
"y": -4088.34, "y": -4088.34,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -794.0, "x": -794.0,
"y": -4104.57, "y": -4104.57,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -807.46, "x": -807.46,
"y": -4122.49, "y": -4122.49,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -578.82, "x": -578.82,
"y": -3833.72, "y": -3833.72,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -560.9, "x": -560.9,
"y": -3834.18, "y": -3834.18,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -536.5, "x": -536.5,
"y": -3839.34, "y": -3839.34,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -517.17, "x": -517.17,
"y": -3842.87, "y": -3842.87,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -498.54, "x": -498.54,
"y": -3818.53, "y": -3818.53,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -485.75, "x": -485.75,
"y": -3800.48, "y": -3800.48,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 7,
"x": -473.45, "x": -473.45,
"y": -3786.36, "y": -3786.36,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 8,
"x": -469.46, "x": -469.46,
"y": -3787.12, "y": -3787.12,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -464.12, "x": -464.12,
"y": -3788.88, "y": -3788.88,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -445.86, "x": -445.86,
"y": -3812.04, "y": -3812.04,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -448.75, "x": -448.75,
"y": -3817.47, "y": -3817.47,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -439.01, "x": -439.01,
"y": -3841.13, "y": -3841.13,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -428.44, "x": -428.44,
"y": -3865.9, "y": -3865.9,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -399.67, "x": -399.67,
"y": -3881.01, "y": -3881.01,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -395.9, "x": -395.9,
"y": -3883.39, "y": -3883.39,
"type": "target", "type": "target",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -365.42, "x": -365.42,
"y": -3873.49, "y": -3873.49,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -766.14, "x": -766.14,
"y": -3560.47, "y": -3560.47,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -746.44, "x": -746.44,
"y": -3542.42, "y": -3542.42,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -720.01, "x": -720.01,
"y": -3530.48, "y": -3530.48,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -701.87, "x": -701.87,
"y": -3536.39, "y": -3536.39,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -677.23, "x": -677.23,
"y": -3536.69, "y": -3536.69,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -668.52, "x": -668.52,
"y": -3522.71, "y": -3522.71,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -661.64, "x": -661.64,
"y": -3513.86, "y": -3513.86,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -646.35, "x": -646.35,
"y": -3518.57, "y": -3518.57,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -610.57, "x": -610.57,
"y": -3524.73, "y": -3524.73,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -575.81, "x": -575.81,
"y": -3531.39, "y": -3531.39,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -548.15, "x": -548.15,
"y": -3546.36, "y": -3546.36,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -510.86, "x": -510.86,
"y": -3573.53, "y": -3573.53,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -491.7, "x": -491.7,
"y": -3585.69, "y": -3585.69,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -480.26, "x": -480.26,
"y": -3601.7, "y": -3601.7,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -475.08, "x": -475.08,
"y": -3596.78, "y": -3596.78,
"type": "target", "type": "target",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -467.22, "x": -467.22,
"y": -3599.14, "y": -3599.14,
"type": "target", "type": "target",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -458.36, "x": -458.36,
"y": -3591.09, "y": -3591.09,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -1057.71, "x": -1057.71,
"y": -3946.0, "y": -3946.0,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -950.94, "x": -950.94,
"y": -3912.08, "y": -3912.08,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -950.9, "x": -950.9,
"y": -3912.04, "y": -3912.04,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": -955.27, "x": -955.27,
"y": -3906.19, "y": -3906.19,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -952.06, "x": -952.06,
"y": -3902.32, "y": -3902.32,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -951.52, "x": -951.52,
"y": -3894.3, "y": -3894.3,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -949.42, "x": -949.42,
"y": -3887.3, "y": -3887.3,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -957.6, "x": -957.6,
"y": -3878.21, "y": -3878.21,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -943.4, "x": -943.4,
"y": -3837.88, "y": -3837.88,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -945.8, "x": -945.8,
"y": -3830.71, "y": -3830.71,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -984.32, "x": -984.32,
"y": -3841.31, "y": -3841.31,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -990.14, "x": -990.14,
"y": -3843.1, "y": -3843.1,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -757.93, "x": -757.93,
"y": -3815.09, "y": -3815.09,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -765.29, "x": -765.29,
"y": -3873.98, "y": -3873.98,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -765.29, "x": -765.29,
"y": -3873.98, "y": -3873.98,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": -768.31, "x": -768.31,
"y": -3876.83, "y": -3876.83,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -811.51, "x": -811.51,
"y": -3889.03, "y": -3889.03,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -811.52, "x": -811.52,
"y": -3889.03, "y": -3889.03,
"type": "target", "type": "target",
@@ -50,6 +56,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 7,
"x": -837.4, "x": -837.4,
"y": -3887.25, "y": -3887.25,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -840.36, "x": -840.36,
"y": -3887.9, "y": -3887.9,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -835.21, "x": -835.21,
"y": -3868.14, "y": -3868.14,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -836.89, "x": -836.89,
"y": -3866.65, "y": -3866.65,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -757.94, "x": -757.94,
"y": -3815.12, "y": -3815.12,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -868.26, "x": -868.26,
"y": -3775.23, "y": -3775.23,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -868.24, "x": -868.24,
"y": -3775.28, "y": -3775.28,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": -873.65, "x": -873.65,
"y": -3760.95, "y": -3760.95,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -875.17, "x": -875.17,
"y": -3758.69, "y": -3758.69,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -765.78, "x": -765.78,
"y": -3557.3, "y": -3557.3,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -789.14, "x": -789.14,
"y": -3616.91, "y": -3616.91,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -789.14, "x": -789.14,
"y": -3616.91, "y": -3616.91,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 4,
"x": -783.44, "x": -783.44,
"y": -3620.93, "y": -3620.93,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -780.96, "x": -780.96,
"y": -3622.74, "y": -3622.74,
"type": "target", "type": "target",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -776.96, "x": -776.96,
"y": -3628.97, "y": -3628.97,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -763.99, "x": -763.99,
"y": -3653.91, "y": -3653.91,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -767.79, "x": -767.79,
"y": -3654.88, "y": -3654.88,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -771.1, "x": -771.1,
"y": -3667.74, "y": -3667.74,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -780.8, "x": -780.8,
"y": -3693.59, "y": -3693.59,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -775.27, "x": -775.27,
"y": -3695.15, "y": -3695.15,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -771.3, "x": -771.3,
"y": -3695.36, "y": -3695.36,
"type": "target", "type": "target",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -774.93, "x": -774.93,
"y": -3700.18, "y": -3700.18,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -778.02, "x": -778.02,
"y": -3699.74, "y": -3699.74,
"type": "target", "type": "target",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -780.42, "x": -780.42,
"y": -3716.33, "y": -3716.33,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -1134.51, "x": -1134.51,
"y": -3604.99, "y": -3604.99,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -1146.98, "x": -1146.98,
"y": -3594.09, "y": -3594.09,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -1152.87, "x": -1152.87,
"y": -3578.79, "y": -3578.79,
"type": "target", "type": "target",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -1157.21, "x": -1157.21,
"y": -3574.62, "y": -3574.62,
"type": "target", "type": "target",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -1166.87, "x": -1166.87,
"y": -3573.15, "y": -3573.15,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -1146.39, "x": -1146.39,
"y": -3560.14, "y": -3560.14,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -1147.31, "x": -1147.31,
"y": -3547.83, "y": -3547.83,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -1152.01, "x": -1152.01,
"y": -3547.41, "y": -3547.41,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -1163.77, "x": -1163.77,
"y": -3546.47, "y": -3546.47,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -1174.61, "x": -1174.61,
"y": -3542.09, "y": -3542.09,
"type": "target", "type": "target",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -1170.3, "x": -1170.3,
"y": -3536.79, "y": -3536.79,
"type": "target", "type": "target",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -1057.75, "x": -1057.75,
"y": -3946.01, "y": -3946.01,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -1040.16, "x": -1040.16,
"y": -3939.07, "y": -3939.07,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -1038.17, "x": -1038.17,
"y": -3830.89, "y": -3830.89,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -1038.17, "x": -1038.17,
"y": -3830.89, "y": -3830.89,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "stop_flying" "action": "stop_flying"
}, },
{ {
"id": 5,
"x": -1039.79, "x": -1039.79,
"y": -3820.63, "y": -3820.63,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -1060.51, "x": -1060.51,
"y": -3820.77, "y": -3820.77,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -1070.56, "x": -1070.56,
"y": -3799.67, "y": -3799.67,
"type": "target", "type": "target",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -1072.44, "x": -1072.44,
"y": -3804.38, "y": -3804.38,
"type": "target", "type": "target",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -1073.6, "x": -1073.6,
"y": -3824.24, "y": -3824.24,
"type": "target", "type": "target",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -1077.87, "x": -1077.87,
"y": -3820.37, "y": -3820.37,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -1087.52, "x": -1087.52,
"y": -3832.17, "y": -3832.17,
"type": "target", "type": "target",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -1093.09, "x": -1093.09,
"y": -3817.72, "y": -3817.72,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -1112.91, "x": -1112.91,
"y": -3832.35, "y": -3832.35,
"type": "target", "type": "target",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -1115.03, "x": -1115.03,
"y": -3832.37, "y": -3832.37,
"type": "target", "type": "target",

View File

@@ -73,7 +73,7 @@
"action": "electro_collect" "action": "electro_collect"
}, },
{ {
"id": 10, "id": 9,
"x": -4416.27, "x": -4416.27,
"y": -2477.59, "y": -2477.59,
"action": "", "action": "",
@@ -81,7 +81,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 11, "id": 10,
"x": -4408.76, "x": -4408.76,
"y": -2466.94, "y": -2466.94,
"action": "", "action": "",
@@ -89,7 +89,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 12, "id": 11,
"x": -4414.43, "x": -4414.43,
"y": -2459.37, "y": -2459.37,
"action": "electro_collect", "action": "electro_collect",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2533.49, "x": -2533.49,
"y": -3539.62, "y": -3539.62,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -2533.37, "x": -2533.37,
"y": -3539.58, "y": -3539.58,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -2530.28, "x": -2530.28,
"y": -3546.16, "y": -3546.16,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -2515.36, "x": -2515.36,
"y": -3541.38, "y": -3541.38,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -2566.65, "x": -2566.65,
"y": -3509.68, "y": -3509.68,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -2570.98, "x": -2570.98,
"y": -3502.84, "y": -3502.84,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -2599.85, "x": -2599.85,
"y": -3533.07, "y": -3533.07,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -2632.18, "x": -2632.18,
"y": -3558.09, "y": -3558.09,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2627.0, "x": -2627.0,
"y": -3561.0, "y": -3561.0,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -2619.36, "x": -2619.36,
"y": -3584.21, "y": -3584.21,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -2643.27, "x": -2643.27,
"y": -3559.32, "y": -3559.32,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -2637.37, "x": -2637.37,
"y": -3554.11, "y": -3554.11,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -2638.32, "x": -2638.32,
"y": -3554.19, "y": -3554.19,
"type": "path", "type": "path",
@@ -99,6 +112,7 @@
"action": "" "action": ""
}, },
{ {
"id": 14,
"x": -2718.95, "x": -2718.95,
"y": -3558.08, "y": -3558.08,
"type": "path", "type": "path",
@@ -106,6 +120,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15,
"x": -2740.35, "x": -2740.35,
"y": -3531.83, "y": -3531.83,
"type": "path", "type": "path",
@@ -113,6 +128,7 @@
"action": "" "action": ""
}, },
{ {
"id": 16,
"x": -2752.59, "x": -2752.59,
"y": -3535.68, "y": -3535.68,
"type": "path", "type": "path",
@@ -120,6 +136,7 @@
"action": "" "action": ""
}, },
{ {
"id": 17,
"x": -2780.28, "x": -2780.28,
"y": -3554.65, "y": -3554.65,
"type": "path", "type": "path",

View File

@@ -8,6 +8,7 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2738.67, "x": -2738.67,
"y": -3414.84, "y": -3414.84,
"type": "teleport", "type": "teleport",
@@ -15,6 +16,7 @@
"action": "" "action": ""
}, },
{ {
"id": 2,
"x": -2741.97, "x": -2741.97,
"y": -3425.27, "y": -3425.27,
"type": "path", "type": "path",
@@ -22,6 +24,7 @@
"action": "" "action": ""
}, },
{ {
"id": 3,
"x": -2745.64, "x": -2745.64,
"y": -3451.46, "y": -3451.46,
"type": "path", "type": "path",
@@ -29,6 +32,7 @@
"action": "" "action": ""
}, },
{ {
"id": 4,
"x": -2765.8, "x": -2765.8,
"y": -3461.96, "y": -3461.96,
"type": "path", "type": "path",
@@ -36,6 +40,7 @@
"action": "" "action": ""
}, },
{ {
"id": 5,
"x": -2789.48, "x": -2789.48,
"y": -3541.68, "y": -3541.68,
"type": "path", "type": "path",
@@ -43,6 +48,7 @@
"action": "" "action": ""
}, },
{ {
"id": 6,
"x": -2794.27, "x": -2794.27,
"y": -3539.2, "y": -3539.2,
"type": "path", "type": "path",
@@ -50,6 +56,7 @@
"action": "" "action": ""
}, },
{ {
"id": 7,
"x": -2825.88, "x": -2825.88,
"y": -3538.66, "y": -3538.66,
"type": "path", "type": "path",
@@ -57,6 +64,7 @@
"action": "" "action": ""
}, },
{ {
"id": 8,
"x": -2821.5, "x": -2821.5,
"y": -3560.51, "y": -3560.51,
"type": "path", "type": "path",
@@ -64,6 +72,7 @@
"action": "" "action": ""
}, },
{ {
"id": 9,
"x": -2833.5, "x": -2833.5,
"y": -3560.13, "y": -3560.13,
"type": "path", "type": "path",
@@ -71,6 +80,7 @@
"action": "" "action": ""
}, },
{ {
"id": 10,
"x": -2849.39, "x": -2849.39,
"y": -3596.6, "y": -3596.6,
"type": "path", "type": "path",
@@ -78,6 +88,7 @@
"action": "" "action": ""
}, },
{ {
"id": 11,
"x": -2859.9, "x": -2859.9,
"y": -3593.98, "y": -3593.98,
"type": "path", "type": "path",
@@ -85,6 +96,7 @@
"action": "" "action": ""
}, },
{ {
"id": 12,
"x": -2864.76, "x": -2864.76,
"y": -3610.98, "y": -3610.98,
"type": "path", "type": "path",
@@ -92,6 +104,7 @@
"action": "" "action": ""
}, },
{ {
"id": 13,
"x": -2898.76, "x": -2898.76,
"y": -3638.04, "y": -3638.04,
"type": "path", "type": "path",

View File

@@ -9,66 +9,77 @@
}, },
"positions": [ "positions": [
{ {
"id": 1,
"x": -2738.26, "x": -2738.26,
"y": -3414.7, "y": -3414.7,
"type": "teleport", "type": "teleport",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 2,
"x": -2720.98, "x": -2720.98,
"y": -3394.76, "y": -3394.76,
"type": "path", "type": "path",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 3,
"x": -2672.37, "x": -2672.37,
"y": -3397.38, "y": -3397.38,
"type": "path", "type": "path",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 4,
"x": -2654.42, "x": -2654.42,
"y": -3419.09, "y": -3419.09,
"type": "path", "type": "path",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 5,
"x": -2627.26, "x": -2627.26,
"y": -3411.74, "y": -3411.74,
"type": "path", "type": "path",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 6,
"x": -2611.87, "x": -2611.87,
"y": -3431.47, "y": -3431.47,
"type": "path", "type": "path",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 7,
"x": -2614.71, "x": -2614.71,
"y": -3447.0, "y": -3447.0,
"type": "path", "type": "path",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 8,
"x": -2619.61, "x": -2619.61,
"y": -3484.03, "y": -3484.03,
"type": "path", "type": "path",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 9,
"x": -2635.78, "x": -2635.78,
"y": -3519.17, "y": -3519.17,
"type": "path", "type": "path",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 10,
"x": -2655.91, "x": -2655.91,
"y": -3503.2, "y": -3503.2,
"type": "path", "type": "path",
"move_mode": "walk" "move_mode": "walk"
}, },
{ {
"id": 11,
"x": -2658.22, "x": -2658.22,
"y": -3468.3, "y": -3468.3,
"type": "path", "type": "path",

View File

@@ -105,7 +105,7 @@
"action": "" "action": ""
}, },
{ {
"id": 15, "id": 13,
"x": -2318.3, "x": -2318.3,
"y": -3910.4, "y": -3910.4,
"action": "stop_flying", "action": "stop_flying",
@@ -113,7 +113,7 @@
"type": "path" "type": "path"
}, },
{ {
"id": 16, "id": 14,
"x": -2317.3, "x": -2317.3,
"y": -3910.21, "y": -3910.21,
"action": "", "action": "",
@@ -121,7 +121,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 17, "id": 15,
"x": -2315.04, "x": -2315.04,
"y": -3907.17, "y": -3907.17,
"action": "", "action": "",
@@ -129,7 +129,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 18, "id": 16,
"x": -2317.04, "x": -2317.04,
"y": -3904.94, "y": -3904.94,
"action": "", "action": "",
@@ -137,7 +137,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 19, "id": 17,
"x": -2336.41, "x": -2336.41,
"y": -3904.91, "y": -3904.91,
"action": "", "action": "",
@@ -145,7 +145,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 20, "id": 18,
"x": -2339.3, "x": -2339.3,
"y": -3904.21, "y": -3904.21,
"action": "", "action": "",
@@ -153,7 +153,7 @@
"type": "target" "type": "target"
}, },
{ {
"id": 21, "id": 19,
"x": -2336.6, "x": -2336.6,
"y": -3898.23, "y": -3898.23,
"action": "", "action": "",

View File

@@ -145,7 +145,7 @@
"action": "" "action": ""
}, },
{ {
"id": 19, "id": 18,
"x": -2973.42, "x": -2973.42,
"y": -3702.83, "y": -3702.83,
"type": "path", "type": "path",
@@ -153,7 +153,7 @@
"action": "" "action": ""
}, },
{ {
"id": 20, "id": 19,
"x": -2973.56, "x": -2973.56,
"y": -3701.75, "y": -3701.75,
"type": "target", "type": "target",
@@ -161,7 +161,7 @@
"action": "" "action": ""
}, },
{ {
"id": 21, "id": 20,
"x": -2973.24, "x": -2973.24,
"y": -3703.08, "y": -3703.08,
"type": "path", "type": "path",

Some files were not shown because too many files have changed in this diff Show More