fix: json validation.

This commit is contained in:
秋云
2025-05-16 12:25:49 +08:00
parent def14c4924
commit 2bc0dcb52a
874 changed files with 26882 additions and 26071 deletions

578
build/validate.py Normal file
View File

@@ -0,0 +1,578 @@
import json
import os
import sys
import subprocess
import re
from packaging.version import parse
from semver import VersionInfo
# ==================== 配置和常量 ====================
# 定义有效的 type 和 move_mode 值
VALID_TYPES = ["teleport", "path", "target", "orientation"]
VALID_MOVE_MODES = ["swim", "walk", "fly", "climb", "run", "dash", "jump"]
# 定义 action 和 action_params 的最低兼容版本
ACTION_VERSION_MAP = {
"fight": "0.42.0",
"mining": "0.43.0",
"fishing": "0.43.0",
"force_tp": "0.42.0",
"log_output": "0.42.0",
"anemo_collect": "0.42.0",
"combat_script": "0.42.0",
"hydro_collect": "0.42.0",
"pick_around": "0.42.0",
"pyro_collect": "0.43.0",
"stop_flying": "0.42.0",
"normal_attack": "0.42.0",
"electro_collect": "0.42.0",
"nahida_collect": "0.42.0",
"up_down_grab_leaf": "0.42.0",
"set_time": "0.45.0"
}
# 定义 action_params 的最低兼容版本和正则表达式验证
ACTION_PARAMS_VERSION_MAP = {
"stop_flying": {
"params": {"version": "0.44.0", "regex": r"^\d+(\.\d+)?$"}
},
"pick_around": {
"params": {"version": "0.42.0", "regex": r"^\d+$"}
},
"combat_script": {
"params": {"version": "0.42.0", "regex": r"^.+$"} # 任意非空字符串
},
"log_output": {
"params": {"version": "0.42.0", "regex": r"^.+$"} # 任意非空字符串
}
# 其他 action 类型没有明确的 action_params 格式要求
}
# 默认版本号
DEFAULT_BGI_VERSION = "0.42.0"
DEFAULT_VERSION = "1.0"
# ==================== 文件操作 ====================
def get_original_file(file_path):
"""从 git 仓库获取原始文件内容,如果失败则尝试从本地备份获取"""
# 返回值增加一个来源标识: "git", "backup", "current", None
# 首先尝试从 git 仓库获取
try:
result = subprocess.run(['git', 'show', f'origin/main:{file_path}'],
capture_output=True, text=True, encoding='utf-8')
if result.returncode == 0:
print("从 git 仓库成功获取原始文件")
return json.loads(result.stdout), "git"
except Exception as e:
print(f"从 git 仓库获取原始文件失败: {str(e)}")
# 如果 git 获取失败,尝试从本地备份目录获取
try:
# 假设有一个备份目录,存放原始文件
backup_dir = os.path.join(os.path.dirname(os.path.dirname(file_path)), "backups")
backup_file = os.path.join(backup_dir, os.path.basename(file_path))
if os.path.exists(backup_file):
print(f"从本地备份获取原始文件: {backup_file}")
with open(backup_file, 'r', encoding='utf-8') as f:
return json.load(f), "backup"
except Exception as e:
print(f"从本地备份获取原始文件失败: {str(e)}")
# 如果都失败了,尝试使用当前文件的副本作为原始文件
try:
print("尝试使用当前文件作为原始文件")
with open(file_path, 'r', encoding='utf-8') as f:
current_data = json.load(f)
# 创建一个副本,避免引用相同的对象
return json.loads(json.dumps(current_data)), "current"
except Exception as e:
print(f"使用当前文件作为原始文件失败: {str(e)}")
print("无法获取任何形式的原始文件")
return None, None
def load_json_file(file_path):
"""加载 JSON 文件"""
try:
with open(file_path, encoding='utf-8') as f:
return json.load(f), None
except Exception as e:
return None, f"❌ JSON 格式错误: {str(e)}"
def save_json_file(file_path, data):
"""保存 JSON 文件"""
try:
with open(file_path, 'w', encoding='utf-8') as f:
json.dump(data, f, indent=2, ensure_ascii=False)
return True
except Exception as e:
print(f"保存文件失败: {str(e)}")
return False
# ==================== 版本处理 ====================
def process_version(current, original, is_new):
"""处理版本号更新逻辑"""
if is_new:
return DEFAULT_VERSION
if not original:
return DEFAULT_VERSION
try:
cv = parse(current)
ov = parse(original)
# 强制更新版本号,无论当前版本是否大于原始版本
return f"{ov.major}.{ov.minor + 1}"
except Exception:
# 如果解析失败,尝试简单的数字处理
parts = original.split('.')
if len(parts) >= 2:
try:
major = int(parts[0])
minor = int(parts[1])
return f"{major}.{minor + 1}"
except ValueError:
pass
return f"{original}.1"
def extract_required_version(compatibility_issues):
"""从兼容性问题中提取所需的最高版本号"""
required_versions = []
for issue in compatibility_issues:
parts = issue.split(">=")
if len(parts) > 1:
version_part = parts[1].split(",")[0].strip()
version_match = re.search(r'(\d+\.\d+\.\d+)', version_part)
if version_match:
required_versions.append(version_match.group(1))
if not required_versions:
return None
try:
return max(required_versions, key=lambda v: VersionInfo.parse(v))
except ValueError:
return None
def parse_bgi_version(version_str):
"""解析 BGI 版本号"""
try:
# 确保删除 v 前缀
return VersionInfo.parse(version_str.lstrip('v'))
except ValueError:
return None
# ==================== 字段验证 ====================
def check_action_compatibility(action_type, action_params, bgi_version):
"""检查 action 和 action_params 与 BGI 版本的兼容性"""
issues = []
validation_issues = []
# 如果 action_type 为空,则跳过检查
if not action_type:
return issues, validation_issues
# 确保 bgi_version 是有效的格式
bgi_ver = parse_bgi_version(bgi_version)
if not bgi_ver:
validation_issues.append(f"无效的 bgi_version 格式: {bgi_version}")
return issues, validation_issues
# 检查 action 兼容性
if action_type in ACTION_VERSION_MAP:
min_version = ACTION_VERSION_MAP[action_type]
try:
if bgi_ver < VersionInfo.parse(min_version):
issues.append(f"action '{action_type}' 需要 BGI 版本 >= {min_version},当前为 {bgi_version}")
except ValueError:
validation_issues.append(f"无法比较版本: {min_version}{bgi_version}")
else:
validation_issues.append(f"未知的 action 类型: '{action_type}',已知类型: {', '.join(sorted(ACTION_VERSION_MAP.keys()))}")
# 检查 action_params 兼容性和格式
if action_type in ACTION_PARAMS_VERSION_MAP and action_params:
param_info = ACTION_PARAMS_VERSION_MAP[action_type]["params"]
min_version = param_info["version"]
regex_pattern = param_info["regex"]
# 版本兼容性检查
try:
if bgi_ver < VersionInfo.parse(min_version):
issues.append(f"action '{action_type}' 的参数需要 BGI 版本 >= {min_version},当前为 {bgi_version}")
except ValueError:
validation_issues.append(f"无法比较版本: {min_version}{bgi_version}")
# 参数格式验证
if not re.match(regex_pattern, str(action_params)):
validation_issues.append(f"action '{action_type}' 的参数格式不正确: '{action_params}',应匹配模式: {regex_pattern}")
return issues, validation_issues
def process_coordinates(positions):
"""统一处理坐标保留两位小数逻辑"""
coord_changed = False
for pos in positions:
for axis in ['x', 'y']:
if axis in pos and isinstance(pos[axis], (int, float)):
original = pos[axis]
pos[axis] = round(float(pos[axis]), 2)
if original != pos[axis]:
coord_changed = True
return coord_changed
def ensure_required_fields(info, filename):
"""统一处理必要字段检查逻辑"""
corrections = []
if info["name"] != filename:
info["name"] = filename
corrections.append(f"name 自动修正为 {filename}")
if info["type"] not in ["collect", "fight"]:
info["type"] = "collect"
corrections.append("type 自动修正为 collect")
if not info["author"]:
info["author"] = os.getenv("GITHUB_ACTOR", "未知作者")
corrections.append(f"author 自动设置为 {info['author']}")
return corrections
def check_position_fields(positions):
"""检查位置字段的有效性
自动修复功能:
1. 缺少 type 字段时,自动设置为 'path'
2. type 字段无效时,自动修正为 'path'
3. 当 type 为 'path''target' 且缺少 move_mode 时,自动设置为 'walk'
4. move_mode 字段无效时,自动修正为 'walk'
"""
validation_issues = []
notices = []
corrections = [] # 添加修正列表
for idx, pos in enumerate(positions):
# 检查必需字段
required_fields = ["x", "y", "type"]
missing_fields = [field for field in required_fields if field not in pos]
if missing_fields:
validation_issues.append(f"位置 {idx+1} 缺少必需字段: {', '.join(missing_fields)}")
# 自动添加缺失的 type 字段
if "type" in missing_fields:
pos["type"] = "path" # 自动修复:缺少 type 字段时设置为 path
corrections.append(f"位置 {idx+1} 缺少 type 字段,已设置为默认值 'path'")
# 如果添加了 path 类型,也需要添加 move_mode
if "move_mode" not in pos:
pos["move_mode"] = "walk" # 自动修复:为 path 类型添加默认 move_mode
corrections.append(f"位置 {idx+1} 缺少 move_mode 字段,已设置为默认值 'walk'")
# 移除 continue确保后续检查能够执行
# continue
# 验证 type 字段
if "type" in pos:
pos_type = pos["type"]
if pos_type not in VALID_TYPES:
validation_issues.append(f"位置 {idx+1}: type '{pos_type}' 无效,有效值为: {', '.join(VALID_TYPES)}")
# 自动修正无效的 type 字段
pos["type"] = "path" # 自动修复:无效 type 修正为 path
corrections.append(f"位置 {idx+1} 的 type '{pos_type}' 无效,已修正为 'path'")
pos_type = "path" # 更新 pos_type 以便后续检查
# 当 type 为 path 或 target 时,验证 move_mode
if pos_type in ["path", "target"]:
if "move_mode" not in pos:
validation_issues.append(f"位置 {idx+1}: type 为 '{pos_type}' 时必须指定 move_mode")
# 自动添加缺失的 move_mode
pos["move_mode"] = "walk" # 自动修复:缺少 move_mode 时设置为 walk
corrections.append(f"位置 {idx+1} 缺少 move_mode 字段,已设置为默认值 'walk'")
elif pos["move_mode"] not in VALID_MOVE_MODES:
validation_issues.append(f"位置 {idx+1}: move_mode '{pos['move_mode']}' 无效,有效值为: {', '.join(VALID_MOVE_MODES)}")
# 自动修正无效的 move_mode
pos["move_mode"] = "walk" # 自动修复:无效 move_mode 修正为 walk
corrections.append(f"位置 {idx+1} 的 move_mode '{pos['move_mode']}' 无效,已修正为 'walk'")
# 检查第一个位置是否为 teleport
if idx == 0 and pos.get("type") != "teleport":
notices.append("⚠️ 第一个 position 的 type 不是 teleport")
return validation_issues, notices, corrections
def check_bgi_version_compatibility(bgi_version, auto_fix=False):
"""检查 BGI 版本兼容性"""
corrections = []
# 删除可能存在的 v 前缀
if bgi_version.startswith('v'):
bgi_version = bgi_version.lstrip('v')
corrections.append(f"bgi_version 前缀 'v' 已删除")
bgi_ver = parse_bgi_version(bgi_version)
if not bgi_ver:
if auto_fix:
corrections.append(f"bgi_version {bgi_version} 格式无效,自动更新为 {DEFAULT_BGI_VERSION}")
return DEFAULT_BGI_VERSION, corrections
return bgi_version, []
if bgi_ver < VersionInfo.parse(DEFAULT_BGI_VERSION):
if auto_fix:
corrections.append(f"bgi_version {bgi_version} 自动更新为 {DEFAULT_BGI_VERSION} (原版本低于要求)")
return DEFAULT_BGI_VERSION, corrections
return bgi_version, corrections
# ==================== 主验证逻辑 ====================
def initialize_data(data, file_path):
"""初始化数据结构,确保必要字段存在"""
messages = []
if "info" not in data:
data["info"] = {}
messages.append(f"⚠️ 文件缺少 info 字段,已添加默认值")
info = data["info"]
filename = os.path.splitext(os.path.basename(file_path))[0]
# 检查并添加必要的字段
if "name" not in info:
info["name"] = filename
messages.append(f"⚠️ 文件缺少 name 字段,已设置为文件名: {info['name']}")
if "type" not in info:
info["type"] = "collect"
messages.append(f"⚠️ 文件缺少 type 字段,已设置为默认值: collect")
if "author" not in info:
info["author"] = os.getenv("GITHUB_ACTOR", "未知作者")
messages.append(f"⚠️ 文件缺少 author 字段,已设置为: {info['author']}")
if "version" not in info:
info["version"] = DEFAULT_VERSION
messages.append(f"⚠️ 文件缺少 version 字段,已设置为默认值: {DEFAULT_VERSION}")
if "bgi_version" not in info:
info["bgi_version"] = DEFAULT_BGI_VERSION
messages.append(f"⚠️ 文件缺少 bgi_version 字段,已设置为默认值: {DEFAULT_BGI_VERSION}")
if "positions" not in data:
data["positions"] = []
messages.append(f"⚠️ 文件缺少 positions 字段,已添加空数组")
for message in messages:
print(message)
return data
def check_actions_compatibility(positions, bgi_version):
"""检查所有位置的 action 兼容性"""
compatibility_issues = []
validation_issues = []
for idx, pos in enumerate(positions):
action_type = pos.get("action", "")
action_params = pos.get("params", "")
if action_type:
compat_issues, valid_issues = check_action_compatibility(action_type, action_params, bgi_version)
for issue in compat_issues:
compatibility_issues.append(f"位置 {idx+1}: {issue}")
for issue in valid_issues:
validation_issues.append(f"位置 {idx+1}: {issue}")
return compatibility_issues, validation_issues
def update_bgi_version_for_compatibility(info, compatibility_issues, auto_fix):
"""根据兼容性问题更新 BGI 版本"""
corrections = []
# 首先检查并删除 v 前缀
if info["bgi_version"].startswith('v'):
info["bgi_version"] = info["bgi_version"].lstrip('v')
corrections.append(f"bgi_version 前缀 'v' 已删除")
if auto_fix and compatibility_issues:
max_required = extract_required_version(compatibility_issues)
if max_required:
# 确保 max_required 没有 v 前缀
max_required = max_required.lstrip('v')
try:
current_bgi = parse_bgi_version(info["bgi_version"])
if current_bgi and current_bgi < VersionInfo.parse(max_required):
info["bgi_version"] = max_required
corrections.append(f"bgi_version {info['bgi_version']} 自动更新为 {max_required} 以兼容所有功能")
return [], corrections
except ValueError as e:
print(f"警告: 版本号解析失败 - {e}")
info["bgi_version"] = DEFAULT_BGI_VERSION
corrections.append(f"bgi_version 自动更新为 {DEFAULT_BGI_VERSION} (版本解析失败)")
return [], corrections
return compatibility_issues, corrections
def validate_file(file_path, auto_fix=False):
"""验证并修复 JSON 文件"""
# 加载文件
data, error = load_json_file(file_path)
if error:
print(error)
return []
# 获取原始文件
original_data, source = get_original_file(file_path) if auto_fix else (None, None)
is_new = not original_data if auto_fix else True
# 初始化数据结构
data = initialize_data(data, file_path)
info = data["info"]
filename = os.path.splitext(os.path.basename(file_path))[0]
# 收集所有修正 - 修复:添加了这一行来定义 all_corrections 变量
all_corrections = []
# 检查必要字段
corrections = ensure_required_fields(info, filename)
all_corrections.extend(corrections)
# 检查并删除 bgi_version 的 v 前缀
if "bgi_version" in info and info["bgi_version"].startswith('v'):
info["bgi_version"] = info["bgi_version"].lstrip('v')
all_corrections.append("bgi_version 前缀 'v' 已删除")
# 处理坐标
coord_changed = process_coordinates(data["positions"])
if coord_changed:
all_corrections.append("坐标值自动保留两位小数")
# 检查 BGI 版本兼容性
bgi_version, corrections = check_bgi_version_compatibility(info["bgi_version"], auto_fix)
if corrections:
info["bgi_version"] = bgi_version
all_corrections.extend(corrections)
# 检查位置字段 - 修改为接收三个返回值
position_issues, notices, pos_corrections = check_position_fields(data["positions"])
if auto_fix and pos_corrections:
all_corrections.extend(pos_corrections)
# 检查 action 兼容性
compatibility_issues, action_validation_issues = check_actions_compatibility(data["positions"], info["bgi_version"])
position_issues.extend(action_validation_issues)
# 根据兼容性问题更新 BGI 版本
compatibility_issues, corrections = update_bgi_version_for_compatibility(info, compatibility_issues, auto_fix)
all_corrections.extend(corrections)
# 更新版本号 - 只有从 git 获取的文件才更新版本号
if auto_fix:
has_original_version = False
original_version = None
if original_data and "info" in original_data and "version" in original_data["info"]:
original_version = original_data["info"]["version"]
has_original_version = True
print(f"成功获取原始版本号: {original_version}")
else:
print("未找到原始版本号,将视为新文件处理")
# 只有在没有原始版本号时才视为新文件
is_new = not has_original_version
print(f"原始版本号: {original_version}, 当前版本号: {info['version']}, 是否新文件: {is_new}, 来源: {source}")
# 只有当文件来源是 git 时才更新版本号
if source == "git":
new_version = process_version(info["version"], original_version, is_new)
if new_version != info["version"]:
info["version"] = new_version
all_corrections.append(f"version 自动更新为 {new_version}")
print(f"版本号已更新: {info['version']}")
else:
print(f"版本号未变化: {info['version']}")
else:
print(f"本地文件,保持版本号不变: {info['version']}")
# 合并所有通知
for issue in compatibility_issues:
notices.append(issue)
for issue in position_issues:
notices.append(issue)
# 保存修正
if auto_fix:
# 无论是否有问题,都打印所有自动修正项
if all_corrections:
print("🔧 自动修正:")
for correction in all_corrections:
print(f" - {correction}")
else:
print("✅ 没有需要自动修正的项目")
# 只有在有修正或问题时才保存文件
if all_corrections or position_issues:
if save_json_file(file_path, data):
print("✅ 文件已保存")
else:
notices.append("❌ 保存文件失败")
return notices
def main():
import argparse
parser = argparse.ArgumentParser(description='校验 BetterGI 脚本文件')
parser.add_argument('path', help='要校验的文件或目录路径')
parser.add_argument('--fix', action='store_true', help='自动修复问题')
args = parser.parse_args()
path = args.path
auto_fix = args.fix
all_notices = [] # 初始化 all_notices 变量
if os.path.isfile(path) and path.endswith('.json'):
print(f"\n🔍 校验文件: {path}")
notices = validate_file(path, auto_fix)
if notices:
all_notices.extend([f"{path}: {n}" for n in notices]) # 添加到 all_notices
print("\n校验注意事项:")
for notice in notices:
print(f"- {notice}")
else:
print("✅ 校验完成,没有发现问题")
elif os.path.isdir(path):
for root, _, files in os.walk(path):
for file in files:
if file.endswith('.json'):
file_path = os.path.join(root, file)
print(f"\n🔍 校验文件: {file_path}")
notices = validate_file(file_path, auto_fix)
if notices:
all_notices.extend([f"{file_path}: {n}" for n in notices])
if all_notices:
print("\n所有校验注意事项:")
for notice in all_notices:
print(f"- {notice}")
else:
print("\n✅ 所有文件校验完成,没有发现问题")
else:
print(f"❌ 无效的路径: {path}")
# 生成提醒信息
if all_notices:
with open('validation_notes.md', 'w') as f:
f.write("## 校验注意事项\n\n" + "\n".join(f"- {n}" for n in all_notices))
if __name__ == "__main__":
main()

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": -556.560546875,
"y": 1235.26318359375,
"x": -556.56,
"y": 1235.26,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": -559.8408203125,
"y": 1239.2197265625,
"x": -559.84,
"y": 1239.22,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -556.986328125,
"y": 1248.60205078125,
"x": -556.99,
"y": 1248.6,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -39,7 +39,7 @@
{
"id": 4,
"x": -548.5,
"y": 1253.83349609375,
"y": 1253.83,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -548.34765625,
"y": 1284.58740234375,
"x": -548.35,
"y": 1284.59,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": -551.0498046875,
"y": 1321.82763671875,
"x": -551.05,
"y": 1321.83,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": -549.140625,
"y": 1333.4326171875,
"x": -549.14,
"y": 1333.43,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": -528.662109375,
"y": 1345.5048828125,
"x": -528.66,
"y": 1345.5,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": -526.0751953125,
"y": 1340.07373046875,
"x": -526.08,
"y": 1340.07,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": -844.5107421875,
"y": 1267.6962890625,
"x": -844.51,
"y": 1267.7,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": -807.1806640625,
"y": 1303.27783203125,
"x": -807.18,
"y": 1303.28,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -795.0751953125,
"y": 1333.3623046875,
"x": -795.08,
"y": 1333.36,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": -779.6982421875,
"y": 1343.73388671875,
"x": -779.7,
"y": 1343.73,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -772.6806640625,
"y": 1348.6259765625,
"x": -772.68,
"y": 1348.63,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": -774.267578125,
"y": 1336.6318359375,
"x": -774.27,
"y": 1336.63,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": -794.115234375,
"y": 1323.83544921875,
"x": -794.12,
"y": 1323.84,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": -573.9990234375,
"y": 1458.5546875,
"x": -574.0,
"y": 1458.55,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": -581.4091796875,
"y": 1475.05029296875,
"x": -581.41,
"y": 1475.05,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -610.2197265625,
"y": 1494.0126953125,
"x": -610.22,
"y": 1494.01,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": -641.248046875,
"y": 1516.12255859375,
"x": -641.25,
"y": 1516.12,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -679.46484375,
"y": 1519.89599609375,
"x": -679.46,
"y": 1519.9,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": -690.279296875,
"y": 1510.638671875,
"x": -690.28,
"y": 1510.64,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": -1334.9052734375,
"y": 825.42529296875,
"x": -1334.91,
"y": 825.43,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": -1321.18359375,
"y": 831.595703125,
"x": -1321.18,
"y": 831.6,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -1314.765625,
"y": 830.09765625,
"x": -1314.77,
"y": 830.1,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": -1297.8828125,
"y": 824.3369140625,
"x": -1297.88,
"y": 824.34,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -1292.455078125,
"y": 815.58740234375,
"x": -1292.46,
"y": 815.59,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": -1286.802734375,
"y": 813.447265625,
"x": -1286.8,
"y": 813.45,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": -1284.9765625,
"y": 809.60009765625,
"x": -1284.98,
"y": 809.6,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 4683.80322265625,
"y": 2426.124755859375,
"x": 4683.8,
"y": 2426.12,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 4597.6328125,
"y": 2353.38916015625,
"x": 4597.63,
"y": 2353.39,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 4569.02001953125,
"y": 2341.4970703125,
"x": 4569.02,
"y": 2341.5,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 3383.1943359375,
"y": 2692.22314453125,
"x": 3383.19,
"y": 2692.22,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 3367.9716796875,
"y": 2700.928466796875,
"x": 3367.97,
"y": 2700.93,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 3249.283203125,
"y": 2761.09814453125,
"x": 3249.28,
"y": 2761.1,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 4984.4609375,
"y": 1699.88134765625,
"x": 4984.46,
"y": 1699.88,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 4977.05322265625,
"y": 1713.58203125,
"x": 4977.05,
"y": 1713.58,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 4980.44189453125,
"y": 1734.904296875,
"x": 4980.44,
"y": 1734.9,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 4975.56640625,
"y": 1811.01416015625,
"x": 4975.57,
"y": 1811.01,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 4704.083984375,
"y": 2376.86669921875,
"x": 4704.08,
"y": 2376.87,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 4683.68701171875,
"y": 2389.752197265625,
"x": 4683.69,
"y": 2389.75,
"action": "log_output",
"move_mode": "walk",
"action_params": "目前不支持非地面点位的路径追踪,请向东方向前行到墙边",

View File

@@ -13,14 +13,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 4689.51904296875,
"y": 2429.276611328125,
"x": 4689.52,
"y": 2429.28,
"action_params": ""
},
{
"id": 2,
"x": 4731.1494140625,
"y": 2477.20361328125,
"x": 4731.15,
"y": 2477.2,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 3923.0693359375,
"y": 4233.8671875,
"x": 3923.07,
"y": 4233.87,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 3921.4736328125,
"y": 4196.3671875,
"x": 3921.47,
"y": 4196.37,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 340.9365234375,
"y": 547.91259765625,
"x": 340.94,
"y": 547.91,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 401.0791015625,
"y": 499.00390625,
"x": 401.08,
"y": 499.0,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 417.9228515625,
"y": 485.568359375,
"x": 417.92,
"y": 485.57,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 843.09375,
"y": 1532.849609375,
"x": 843.09,
"y": 1532.85,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 808.3974609375,
"y": 1515.33984375,
"x": 808.4,
"y": 1515.34,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -4429.8125,
"y": -2798.57421875,
"x": -4429.81,
"y": -2798.57,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -4458.048828125,
"y": -2812.5673828125,
"x": -4458.05,
"y": -2812.57,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -4217.869140625,
"y": -2397.865234375,
"x": -4217.87,
"y": -2397.87,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -4185.3984375,
"y": -2430.158203125,
"x": -4185.4,
"y": -2430.16,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -3812.810546875,
"y": -2547.3427734375,
"x": -3812.81,
"y": -2547.34,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -3809.3671875,
"y": -2577.1220703125,
"x": -3809.37,
"y": -2577.12,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": -3796.8505859375,
"y": -2604.203125,
"x": -3796.85,
"y": -2604.2,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": -3759.8125,
"y": -2594.4453125,
"x": -3759.81,
"y": -2594.45,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -4232.17578125,
"y": -3003.2158203125,
"x": -4232.18,
"y": -3003.22,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -4219.541015625,
"y": -2982.3671875,
"x": -4219.54,
"y": -2982.37,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -28,7 +28,7 @@
},
{
"id": 3,
"x": -4138.595703125,
"x": -4138.6,
"y": -2970.5,
"type": "path",
"move_mode": "dash",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": -4065.251953125,
"y": -2997.798828125,
"x": -4065.25,
"y": -2997.8,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": -4005.177734375,
"y": -2972.4296875,
"x": -4005.18,
"y": -2972.43,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": -3999.3955078125,
"y": -2976.142578125,
"x": -3999.4,
"y": -2976.14,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 8350.158203125,
"y": -2843.5556640625,
"x": 8350.16,
"y": -2843.56,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 8381.07421875,
"y": -2823.087890625,
"x": 8381.07,
"y": -2823.09,
"type": "orientation",
"move_mode": "walk",
"action": "log_output",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 9757.900390625,
"y": -613.65771484375,
"x": 9757.9,
"y": -613.66,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 9766.7333984375,
"y": -603.93212890625,
"x": 9766.73,
"y": -603.93,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 9774.1640625,
"y": -613.4931640625,
"x": 9774.16,
"y": -613.49,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 9809.4599609375,
"y": -656.9931640625,
"x": 9809.46,
"y": -656.99,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 9813.7685546875,
"y": -663.6298828125,
"x": 9813.77,
"y": -663.63,
"type": "target",
"move_mode": "climb",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 9039.0693359375,
"y": -2428.6201171875,
"x": 9039.07,
"y": -2428.62,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 9034.5234375,
"y": -2447.1689453125,
"x": 9034.52,
"y": -2447.17,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 9033.30078125,
"y": -2452.609375,
"x": 9033.3,
"y": -2452.61,
"type": "path",
"move_mode": "climb",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 9049.291015625,
"y": -2513.6337890625,
"x": 9049.29,
"y": -2513.63,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 8058.86181640625,
"y": -2372.5966796875,
"x": 8058.86,
"y": -2372.6,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 8068.009765625,
"y": -2379.6435546875,
"x": 8068.01,
"y": -2379.64,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 8086.94287109375,
"y": -2394.7197265625,
"x": 8086.94,
"y": -2394.72,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 8146.4697265625,
"y": -2439.9921875,
"x": 8146.47,
"y": -2439.99,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "[蒙德] 垂香木",
"name": "[蒙德] 垂香木x15",
"type": "collect",
"author": "Patrick-Ze (AyakaMain)",
"version": "1.0",
@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -521.623046875,
"y": 2181.329833984375,
"x": -521.62,
"y": 2181.33,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -537.1240234375,
"y": 2175.3076171875,
"x": -537.12,
"y": 2175.31,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": -541.736328125,
"y": 2160.890625,
"x": -541.74,
"y": 2160.89,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -251.591796875,
"y": 2256.58984375,
"x": -251.59,
"y": 2256.59,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -231.8388671875,
"y": 2219.850341796875,
"x": -231.84,
"y": 2219.85,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": -221.59375,
"y": 2218.249755859375,
"x": -221.59,
"y": 2218.25,
"type": "path",
"move_mode": "climb",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": -154.837890625,
"y": 2198.947509765625,
"x": -154.84,
"y": 2198.95,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": -28.115234375,
"y": 2163.086181640625,
"x": -28.12,
"y": 2163.09,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -749.4052734375,
"y": 2263.125,
"x": -749.41,
"y": 2263.12,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -784.896484375,
"y": 2303.740234375,
"x": -784.9,
"y": 2303.74,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -1330.107421875,
"y": 2563.807373046875,
"x": -1330.11,
"y": 2563.81,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -1367.8466796875,
"y": 2571.372314453125,
"x": -1367.85,
"y": 2571.37,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": -1376.634765625,
"y": 2580.2109375,
"x": -1376.63,
"y": 2580.21,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -1120.86328125,
"y": 2190.60888671875,
"x": -1120.86,
"y": 2190.61,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -1152.7080078125,
"y": 2170.24365234375,
"x": -1152.71,
"y": 2170.24,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": -1155.90234375,
"y": 2175.06591796875,
"x": -1155.9,
"y": 2175.07,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 3135.63671875,
"y": -1079.6572265625,
"x": 3135.64,
"y": -1079.66,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 3166.373046875,
"y": -1080.20654296875,
"x": 3166.37,
"y": -1080.21,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 3175.55078125,
"y": -1064.35888671875,
"x": 3175.55,
"y": -1064.36,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 4209.84130859375,
"y": -2712.0947265625,
"x": 4209.84,
"y": -2712.09,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 4203.99462890625,
"y": -2730.2568359375,
"x": 4203.99,
"y": -2730.26,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 4095.984375,
"y": -2025.97412109375,
"x": 4095.98,
"y": -2025.97,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 4120.65185546875,
"y": -2047.38671875,
"x": 4120.65,
"y": -2047.39,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 4148.99365234375,
"y": -2041.66357421875,
"x": 4148.99,
"y": -2041.66,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 4218.1259765625,
"y": -2061.7998046875,
"x": 4218.13,
"y": -2061.8,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 3135.6884765625,
"y": -1079.6435546875,
"x": 3135.69,
"y": -1079.64,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 3149.046875,
"y": -1088.2412109375,
"x": 3149.05,
"y": -1088.24,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 3149.900390625,
"y": -1104.6689453125,
"x": 3149.9,
"y": -1104.67,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 3164.40234375,
"y": -1127.8310546875,
"x": 3164.4,
"y": -1127.83,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 3158.82421875,
"y": -1138.740234375,
"x": 3158.82,
"y": -1138.74,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 3145.435546875,
"y": -1079.84033203125,
"x": 3145.44,
"y": -1079.84,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 3160.798828125,
"y": -1080.49169921875,
"x": 3160.8,
"y": -1080.49,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 3179.044921875,
"y": -1062.67236328125,
"x": 3179.04,
"y": -1062.67,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 3198.0546875,
"y": -1076.755859375,
"x": 3198.05,
"y": -1076.76,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 3206.8642578125,
"y": -1064.88818359375,
"x": 3206.86,
"y": -1064.89,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 3202.689453125,
"y": -1057.3876953125,
"x": 3202.69,
"y": -1057.39,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 1580.937744140625,
"y": -112.55615234375,
"x": 1580.94,
"y": -112.56,
"action_params": ""
},
{
"id": 2,
"x": 1576.25244140625,
"y": -113.3857421875,
"x": 1576.25,
"y": -113.39,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 1570.3411865234375,
"y": -112.9521484375,
"x": 1570.34,
"y": -112.95,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 1502.487548828125,
"y": -121.817626953125,
"x": 1502.49,
"y": -121.82,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 1499.708984375,
"y": -136.400634765625,
"x": 1499.71,
"y": -136.4,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 1479.21923828125,
"y": -141.478515625,
"x": 1479.22,
"y": -141.48,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 1462.698974609375,
"y": -129.598876953125,
"x": 1462.7,
"y": -129.6,
"type": "target",
"move_mode": "dash",
"action": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 1442.49462890625,
"y": -123.07861328125,
"x": 1442.49,
"y": -123.08,
"type": "target",
"move_mode": "dash",
"action": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 1439.7213134765625,
"y": -152.8515625,
"x": 1439.72,
"y": -152.85,
"type": "target",
"move_mode": "dash",
"action": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 1460.315673828125,
"y": -183.131103515625,
"x": 1460.32,
"y": -183.13,
"type": "target",
"move_mode": "dash",
"action": "",

View File

@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 1409.447509765625,
"y": -462.5498046875,
"x": 1409.45,
"y": -462.55,
"action_params": ""
},
{
"id": 2,
"x": 1409.904296875,
"y": -479.748046875,
"x": 1409.9,
"y": -479.75,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 1407.96875,
"y": -483.7451171875,
"x": 1407.97,
"y": -483.75,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 1401.08349609375,
"y": -490.099365234375,
"x": 1401.08,
"y": -490.1,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 1392.1131591796875,
"y": -484.117919921875,
"x": 1392.11,
"y": -484.12,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 1385.30908203125,
"y": -482.6494140625,
"x": 1385.31,
"y": -482.65,
"type": "target",
"move_mode": "jump",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 1371.474853515625,
"y": -481.210693359375,
"x": 1371.47,
"y": -481.21,
"type": "target",
"move_mode": "jump",
"action": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 1360.214111328125,
"y": -485.0390625,
"x": 1360.21,
"y": -485.04,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 1358.6011962890625,
"y": -490.334716796875,
"x": 1358.6,
"y": -490.33,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 1369.791015625,
"y": -519.4453125,
"x": 1369.79,
"y": -519.45,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 1371.9801025390625,
"y": -523.854736328125,
"x": 1371.98,
"y": -523.85,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 1371.936279296875,
"y": -523.925048828125,
"x": 1371.94,
"y": -523.93,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 1404.62109375,
"y": -505.231689453125,
"x": 1404.62,
"y": -505.23,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 1406.0596923828125,
"y": -507.336669921875,
"x": 1406.06,
"y": -507.34,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 11005.5888671875,
"y": -3753.0869140625,
"x": 11005.59,
"y": -3753.09,
"action_params": ""
},
{
"id": 2,
"x": 11000.115234375,
"y": -3761.115234375,
"x": 11000.12,
"y": -3761.12,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 11001.845703125,
"y": -3763.6494140625,
"x": 11001.85,
"y": -3763.65,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 11022.806640625,
"y": -3795.361328125,
"x": 11022.81,
"y": -3795.36,
"type": "target",
"move_mode": "dash",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 11046.025390625,
"y": -3808.60546875,
"x": 11046.03,
"y": -3808.61,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 11046.3671875,
"y": -3810.5341796875,
"x": 11046.37,
"y": -3810.53,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 11023.76171875,
"y": -3823.0146484375,
"x": 11023.76,
"y": -3823.01,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 11020.349609375,
"y": -3822.1298828125,
"x": 11020.35,
"y": -3822.13,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 11016.1630859375,
"y": -3825.345703125,
"x": 11016.16,
"y": -3825.35,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 10986.6904296875,
"y": -3823.8173828125,
"x": 10986.69,
"y": -3823.82,
"type": "path",
"move_mode": "walk",
"action": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 9923.6376953125,
"y": -3277.6318359375,
"x": 9923.64,
"y": -3277.63,
"action": "force_tp",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 9959.0849609375,
"y": -3281.4375,
"x": 9959.08,
"y": -3281.44,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 10001.859375,
"y": -3214.8193359375,
"x": 10001.86,
"y": -3214.82,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 10008.9794921875,
"y": -3183.689453125,
"x": 10008.98,
"y": -3183.69,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 10010.09765625,
"y": -3166.6884765625,
"x": 10010.1,
"y": -3166.69,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 10020.529296875,
"y": -3165.951171875,
"x": 10020.53,
"y": -3165.95,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 10023.640625,
"y": -3168.091796875,
"x": 10023.64,
"y": -3168.09,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 10021.654296875,
"y": -3165.2958984375,
"x": 10021.65,
"y": -3165.3,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 10009.435546875,
"y": -3164.0771484375,
"x": 10009.44,
"y": -3164.08,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 10011.2470703125,
"y": -3158.0693359375,
"x": 10011.25,
"y": -3158.07,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 9997.7865234375,
"y": -3177.195703125,
"x": 9997.79,
"y": -3177.2,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": 9997.5380859375,
"y": -3174.001953125,
"x": 9997.54,
"y": -3174.0,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -118,8 +118,8 @@
},
{
"id": 13,
"x": 9994.349609375,
"y": -3171.2236328125,
"x": 9994.35,
"y": -3171.22,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -127,8 +127,8 @@
},
{
"id": 14,
"x": 9991.3896484375,
"y": -3169.880859375,
"x": 9991.39,
"y": -3169.88,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -136,8 +136,8 @@
},
{
"id": 15,
"x": 9993.6572265625,
"y": -3171.8955078125,
"x": 9993.66,
"y": -3171.9,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -145,8 +145,8 @@
},
{
"id": 16,
"x": 9992.755859375,
"y": -3161.673828125,
"x": 9992.76,
"y": -3161.67,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -154,8 +154,8 @@
},
{
"id": 17,
"x": 9978.826171875,
"y": -3151.01171875,
"x": 9978.83,
"y": -3151.01,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -163,8 +163,8 @@
},
{
"id": 18,
"x": 9980.1357421875,
"y": -3148.0556640625,
"x": 9980.14,
"y": -3148.06,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -172,8 +172,8 @@
},
{
"id": 19,
"x": 9971.0400390625,
"y": -3162.2861328125,
"x": 9971.04,
"y": -3162.29,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -181,8 +181,8 @@
},
{
"id": 20,
"x": 9968.3369140625,
"y": -3163.5751953125,
"x": 9968.34,
"y": -3163.58,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 9838.0693359375,
"y": -2365.14453125,
"x": 9838.07,
"y": -2365.14,
"action": "force_tp",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 9832.189453125,
"y": -2393.81640625,
"x": 9832.19,
"y": -2393.82,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 9827.126138969808,
"y": -2422.125,
"x": 9827.13,
"y": -2422.12,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 9826.5615234375,
"y": -2430.5419921875,
"x": 9826.56,
"y": -2430.54,
"type": "path",
"move_mode": "walk",
"action": "fight",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 9827.126138969808,
"y": -2422.125,
"x": 9827.13,
"y": -2422.12,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -56,7 +56,7 @@
},
{
"id": 6,
"x": 9820.002705053294,
"x": 9820.0,
"y": -2423.5,
"action": "",
"move_mode": "walk",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 9816.12611524127,
"y": -2427.0625,
"x": 9816.13,
"y": -2427.06,
"action": "electro_collect",
"move_mode": "jump",
"action_params": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 9812.126162698345,
"y": -2430.125,
"x": 9812.13,
"y": -2430.12,
"action": "electro_collect",
"move_mode": "jump",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 9814.2021484375,
"y": -2433.8330078125,
"x": 9814.2,
"y": -2433.83,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 9815.65625,
"y": -2430.908203125,
"x": 9815.66,
"y": -2430.91,
"action": "electro_collect",
"move_mode": "jump",
"action_params": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 9818.306640625,
"y": -2428.2607421875,
"x": 9818.31,
"y": -2428.26,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 9795.73046875,
"y": -2665.640625,
"x": 9795.73,
"y": -2665.64,
"action": "force_tp",
"move_mode": "walk",
"action_params": "",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 9795.90625,
"y": -2612.0048828125,
"x": 9795.91,
"y": -2612.0,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 9823.249525429246,
"y": -2583.125,
"x": 9823.25,
"y": -2583.12,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 9826.249549157785,
"y": -2580.4375,
"x": 9826.25,
"y": -2580.44,
"action": "",
"move_mode": "jump",
"action_params": "",
@@ -146,8 +146,8 @@
},
{
"id": 16,
"x": 9836.408203125,
"y": -2574.7197265625,
"x": 9836.41,
"y": -2574.72,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -155,8 +155,8 @@
},
{
"id": 17,
"x": 9866.7216796875,
"y": -2576.6123046875,
"x": 9866.72,
"y": -2576.61,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -164,8 +164,8 @@
},
{
"id": 18,
"x": 9878.7890625,
"y": -2563.98046875,
"x": 9878.79,
"y": -2563.98,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -173,8 +173,8 @@
},
{
"id": 19,
"x": 9880.218204243634,
"y": -2561.96875,
"x": 9880.22,
"y": -2561.97,
"action": "electro_collect",
"move_mode": "jump",
"action_params": "",
@@ -182,8 +182,8 @@
},
{
"id": 20,
"x": 9881.41015625,
"y": -2558.8212890625,
"x": 9881.41,
"y": -2558.82,
"action": "electro_collect",
"move_mode": "jump",
"action_params": "",
@@ -191,8 +191,8 @@
},
{
"id": 21,
"x": 9713.5009765625,
"y": -2420.6025390625,
"x": 9713.5,
"y": -2420.6,
"action": "force_tp",
"move_mode": "walk",
"action_params": "",
@@ -200,8 +200,8 @@
},
{
"id": 22,
"x": 9723.2509765625,
"y": -2469.3271484375,
"x": 9723.25,
"y": -2469.33,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -209,8 +209,8 @@
},
{
"id": 23,
"x": 9724.138671875,
"y": -2473.326171875,
"x": 9724.14,
"y": -2473.33,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -218,8 +218,8 @@
},
{
"id": 24,
"x": 9730.7802734375,
"y": -2480.1357421875,
"x": 9730.78,
"y": -2480.14,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -227,8 +227,8 @@
},
{
"id": 25,
"x": 9750.14453125,
"y": -2493.818359375,
"x": 9750.14,
"y": -2493.82,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -236,8 +236,8 @@
},
{
"id": 26,
"x": 9753.31640625,
"y": -2496.6572265625,
"x": 9753.32,
"y": -2496.66,
"action": "",
"move_mode": "jump",
"action_params": "",
@@ -245,8 +245,8 @@
},
{
"id": 27,
"x": 9755.1103515625,
"y": -2494.8916015625,
"x": 9755.11,
"y": -2494.89,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -254,8 +254,8 @@
},
{
"id": 28,
"x": 9751.1416015625,
"y": -2495.865234375,
"x": 9751.14,
"y": -2495.87,
"action": "",
"move_mode": "jump",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 10363.728515625,
"y": -3315.8544921875,
"x": 10363.73,
"y": -3315.85,
"action": "force_tp",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 10350.3720703125,
"y": -3313.5390625,
"x": 10350.37,
"y": -3313.54,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 10347.826171875,
"y": -3311.787109375,
"x": 10347.83,
"y": -3311.79,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 10344.9765625,
"y": -3324.6269531250005,
"x": 10344.98,
"y": -3324.63,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 10345.625,
"y": -3319.0693359375,
"x": 10345.62,
"y": -3319.07,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 10295.015625,
"y": -3321.6787109375,
"x": 10295.02,
"y": -3321.68,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 10280.509765625,
"y": -3321.7216796875,
"x": 10280.51,
"y": -3321.72,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 10271.3115234375,
"y": -3323.9443359375,
"x": 10271.31,
"y": -3323.94,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 10250.4755859375,
"y": -3326.708984375,
"x": 10250.48,
"y": -3326.71,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 10247.3251953125,
"y": -3322.9853515625,
"x": 10247.33,
"y": -3322.99,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 10246.302734375,
"y": -3325.0693359375,
"x": 10246.3,
"y": -3325.07,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": 10249.447265625,
"y": -3327.080078125,
"x": 10249.45,
"y": -3327.08,
"action": "",
"move_mode": "walk",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 10925.6796875,
"y": -2363.5859375,
"x": 10925.68,
"y": -2363.59,
"action": "force_tp",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 10926.4248046875,
"y": -2417.44921875,
"x": 10926.42,
"y": -2417.45,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 10918.4365234375,
"y": -2424.3974609375,
"x": 10918.44,
"y": -2424.4,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 10906.4775390625,
"y": -2433.4404296875,
"x": 10906.48,
"y": -2433.44,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 10876.939453125,
"y": -2450.2802734375,
"x": 10876.94,
"y": -2450.28,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 10839.7021484375,
"y": -2465.1455078125,
"x": 10839.7,
"y": -2465.15,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 10840.4638671875,
"y": -2473.9716796875,
"x": 10840.46,
"y": -2473.97,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 10836.590234375,
"y": -2474.935546875,
"x": 10836.59,
"y": -2474.94,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 10837.953125,
"y": -2473.142578125,
"x": 10837.95,
"y": -2473.14,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 10845.265625,
"y": -2462.091796875,
"x": 10845.27,
"y": -2462.09,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 10829.6533203125,
"y": -2462.97265625,
"x": 10829.65,
"y": -2462.97,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": 10819.9013671875,
"y": -2475.716796875,
"x": 10819.9,
"y": -2475.72,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -118,8 +118,8 @@
},
{
"id": 13,
"x": 10818.5986328125,
"y": -2494.748046875,
"x": 10818.6,
"y": -2494.75,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -127,8 +127,8 @@
},
{
"id": 14,
"x": 10833.9267578125,
"y": -2517.798828125,
"x": 10833.93,
"y": -2517.8,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 10833.9267578125,
"y": -2517.798828125,
"x": 10833.93,
"y": -2517.8,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -146,8 +146,8 @@
},
{
"id": 16,
"x": 10828.2626953125,
"y": -2530.7060546875,
"x": 10828.26,
"y": -2530.71,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -155,8 +155,8 @@
},
{
"id": 17,
"x": 10828.54296875,
"y": -2532.3515625,
"x": 10828.54,
"y": -2532.35,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -164,8 +164,8 @@
},
{
"id": 18,
"x": 10825.78515625,
"y": -2529.4619140625,
"x": 10825.79,
"y": -2529.46,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -173,8 +173,8 @@
},
{
"id": 19,
"x": 10835.392578125,
"y": -2520.4453125,
"x": 10835.39,
"y": -2520.45,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -182,8 +182,8 @@
},
{
"id": 20,
"x": 10856.4208984375,
"y": -2518.5029296875,
"x": 10856.42,
"y": -2518.5,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -191,8 +191,8 @@
},
{
"id": 21,
"x": 10858.953125,
"y": -2521.4453125,
"x": 10858.95,
"y": -2521.45,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -200,8 +200,8 @@
},
{
"id": 22,
"x": 10860.1015625,
"y": -2523.646484375,
"x": 10860.1,
"y": -2523.65,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -209,8 +209,8 @@
},
{
"id": 23,
"x": 10861.3759765625,
"y": -2524.1025390625,
"x": 10861.38,
"y": -2524.1,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 10595.3193359375,
"y": -2654.4775390625,
"x": 10595.32,
"y": -2654.48,
"action": "force_tp",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 10581.5341796875,
"y": -2657.2216796875,
"x": 10581.53,
"y": -2657.22,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 10556.33984375,
"y": -2677.220703125,
"x": 10556.34,
"y": -2677.22,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 10546.154296875,
"y": -2678.1298828125,
"x": 10546.15,
"y": -2678.13,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 10535.505078125001,
"y": -2682.5375,
"x": 10535.51,
"y": -2682.54,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 10530.9140625,
"y": -2696.9853515625,
"x": 10530.91,
"y": -2696.99,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 10531.9951171875,
"y": -2697.287109375,
"x": 10532.0,
"y": -2697.29,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 10525.062543038373,
"y": -2695.625505617978,
"x": 10525.06,
"y": -2695.63,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 10518.458984375,
"y": -2697.4765625,
"x": 10518.46,
"y": -2697.48,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 10505.267578125,
"y": -2710.931640625,
"x": 10505.27,
"y": -2710.93,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 10504.048828125,
"y": -2725.2529296875,
"x": 10504.05,
"y": -2725.25,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": 10516.642578125,
"y": -2739.71875,
"x": 10516.64,
"y": -2739.72,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 10518.642578125,
"y": -2738.71875,
"x": 10518.64,
"y": -2738.72,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -129,8 +129,8 @@
},
{
"id": 14,
"x": 10516.342578125,
"y": -2741.21875,
"x": 10516.34,
"y": -2741.22,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -138,8 +138,8 @@
},
{
"id": 15,
"x": 10517.09375,
"y": -2741.1396484375,
"x": 10517.09,
"y": -2741.14,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -147,8 +147,8 @@
},
{
"id": 16,
"x": 10519.9228515625,
"y": -2744.01171875,
"x": 10519.92,
"y": -2744.01,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -156,8 +156,8 @@
},
{
"id": 17,
"x": 10521.61328125,
"y": -2748.5966796875,
"x": 10521.61,
"y": -2748.6,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -166,8 +166,8 @@
},
{
"id": 18,
"x": 10521.61328125,
"y": -2748.5966796875,
"x": 10521.61,
"y": -2748.6,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",
@@ -175,8 +175,8 @@
},
{
"id": 19,
"x": 10524.671875,
"y": -2746.8291015625,
"x": 10524.67,
"y": -2746.83,
"action": "electro_collect",
"move_mode": "walk",
"action_params": "",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "01-嘟嘟莲-蒙德-清泉镇-x11-晴雪徒步版无草神-V1.4",
"name": "01-嘟嘟莲-蒙德-清泉镇-x11-无草神",
"type": "collect",
"author": "忆雪晴-828632080",
"version": "1.4",
@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -914.8486328125,
"y": 1795.51953125,
"x": -914.85,
"y": 1795.52,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -912.803515625,
"y": 1787.65478515625,
"x": -912.8,
"y": 1787.65,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": -896.9462890625,
"y": 1785.82568359375,
"x": -896.95,
"y": 1785.83,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -38,7 +38,7 @@
{
"id": 4,
"x": -895.87,
"y": 1782.64658203125,
"y": 1782.65,
"action": "",
"move_mode": "jump",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": -895.90820311,
"y": 1786.2939453125,
"x": -895.91,
"y": 1786.29,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": -883.1513671875,
"y": 1780.2255859375,
"x": -883.15,
"y": 1780.23,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": -875.9453125,
"y": 1797.48486328125,
"x": -875.95,
"y": 1797.48,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": -881.5244140625,
"y": 1820.1015625,
"x": -881.52,
"y": 1820.1,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": -890.08203125,
"y": 1822.73828125,
"x": -890.08,
"y": 1822.74,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": -894.154296875,
"y": 1819.57373046875,
"x": -894.15,
"y": 1819.57,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": -894.0205078125,
"y": 1819.89697265625,
"x": -894.02,
"y": 1819.9,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": -895.5947265625,
"y": 1821.873046875,
"x": -895.59,
"y": 1821.87,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -118,8 +118,8 @@
},
{
"id": 13,
"x": -899.8740234375,
"y": 1828.45556640625,
"x": -899.87,
"y": 1828.46,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -127,8 +127,8 @@
},
{
"id": 14,
"x": -903.5986328125,
"y": 1836.18505859375,
"x": -903.6,
"y": 1836.19,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -136,8 +136,8 @@
},
{
"id": 15,
"x": -910.08203125,
"y": 1836.66455078125,
"x": -910.08,
"y": 1836.66,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -145,8 +145,8 @@
},
{
"id": 16,
"x": -930.4970703125,
"y": 1824.5576171875,
"x": -930.5,
"y": 1824.56,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -154,8 +154,8 @@
},
{
"id": 17,
"x": -926.0341796875,
"y": 1815.15576171875,
"x": -926.03,
"y": 1815.16,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -163,8 +163,8 @@
},
{
"id": 18,
"x": -914.8447265625,
"y": 1795.50537109375,
"x": -914.84,
"y": 1795.51,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -172,8 +172,8 @@
},
{
"id": 19,
"x": -913.78515625,
"y": 1786.80615234375,
"x": -913.79,
"y": 1786.81,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -181,8 +181,8 @@
},
{
"id": 20,
"x": -915.51171875,
"y": 1771.18359375,
"x": -915.51,
"y": 1771.18,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -190,8 +190,8 @@
},
{
"id": 21,
"x": -917.1162109375,
"y": 1760.134765625,
"x": -917.12,
"y": 1760.13,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -199,8 +199,8 @@
},
{
"id": 22,
"x": -915.896484375,
"y": 1756.9560546875,
"x": -915.9,
"y": 1756.96,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -208,8 +208,8 @@
},
{
"id": 23,
"x": -924.8291015625,
"y": 1765.76123046875,
"x": -924.83,
"y": 1765.76,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -217,8 +217,8 @@
},
{
"id": 24,
"x": -932.357421875,
"y": 1766.86328125,
"x": -932.36,
"y": 1766.86,
"action": "",
"move_mode": "walk",
"action_params": "",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "02-嘟嘟莲-蒙德-苍风高地-x2-晴雪徒步版无草神",
"name": "02-嘟嘟莲-蒙德-苍风高地-x2-无草神",
"type": "collect",
"author": "忆雪晴-828632080",
"version": "1.3",
@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -201.037109375,
"y": 1861.9091796875,
"x": -201.04,
"y": 1861.91,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -198.294921875,
"y": 1843.08642578125,
"x": -198.29,
"y": 1843.09,
"action": "",
"move_mode": "walk",
"action_params": "",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "03-嘟嘟莲-蒙德-摘星崖-x3-晴雪徒步版无草神",
"name": "03-嘟嘟莲-蒙德-摘星崖-x3-无草神",
"type": "collect",
"author": "忆雪晴-828632080",
"version": "1.3",
@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -1505.861328125,
"y": 2296.222900390625,
"x": -1505.86,
"y": 2296.22,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -1493.13671875,
"y": 2291.625732421875,
"x": -1493.14,
"y": 2291.63,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": -1463.8427734375,
"y": 2291.552734375,
"x": -1463.84,
"y": 2291.55,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": -1456.884765625,
"y": 2282.208251953125,
"x": -1456.88,
"y": 2282.21,
"action": "",
"move_mode": "walk",
"action_params": "",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "04-嘟嘟莲-蒙德-星落湖神像-x4-晴雪徒步版无草神",
"name": "04-嘟嘟莲-蒙德-星落湖神像-x4-无草神",
"type": "collect",
"author": "忆雪晴-828632080",
"version": "1.3",
@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -1330.0791015625,
"y": 2563.881103515625,
"x": -1330.08,
"y": 2563.88,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -1324.0859375,
"y": 2554.211669921875,
"x": -1324.09,
"y": 2554.21,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": -1316.30859375,
"y": 2539.341064453125,
"x": -1316.31,
"y": 2539.34,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": -1315.111328125,
"y": 2535.775146484375,
"x": -1315.11,
"y": 2535.78,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": -1314.5009765625,
"y": 2526.124755859375,
"x": -1314.5,
"y": 2526.12,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": -1370.244140625,
"y": 2489.551513671875,
"x": -1370.24,
"y": 2489.55,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": -1385.2353515625,
"y": 2459.05126953125,
"x": -1385.24,
"y": 2459.05,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": -1395.89453125,
"y": 2461.586669921875,
"x": -1395.89,
"y": 2461.59,
"action": "",
"move_mode": "walk",
"action_params": "",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "05-嘟嘟莲-蒙德-奔狼领-x4-晴雪徒步版无草神",
"name": "05-嘟嘟莲-蒙德-奔狼领-x4-无草神",
"type": "collect",
"author": "忆雪晴-828632080",
"version": "1.3",
@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": -521.5830078125,
"y": 2181.343994140625,
"x": -521.58,
"y": 2181.34,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": -496.158203125,
"y": 2172.5947265625,
"x": -496.16,
"y": 2172.59,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": -475.2333984375,
"y": 2160.4296875,
"x": -475.23,
"y": 2160.43,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": -474.1240234375,
"y": 2153.710693359375,
"x": -474.12,
"y": 2153.71,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": -481.83984375,
"y": 2155.39892578125,
"x": -481.84,
"y": 2155.4,
"action": "",
"move_mode": "walk",
"action_params": "",

View File

@@ -16,14 +16,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -578.802734375,
"y": 1853.22607421875,
"x": -578.8,
"y": 1853.23,
"action_params": ""
},
{
"id": 2,
"x": -568.59765625,
"y": 1815.6953125,
"x": -568.6,
"y": 1815.7,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
@@ -31,8 +31,8 @@
},
{
"id": 3,
"x": -546.4111328125,
"y": 1785.6220703125,
"x": -546.41,
"y": 1785.62,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -40,8 +40,8 @@
},
{
"id": 4,
"x": -543.9453125,
"y": 1770.9873046875,
"x": -543.95,
"y": 1770.99,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -49,8 +49,8 @@
},
{
"id": 5,
"x": -508.1494140625,
"y": 1738.03759765625,
"x": -508.15,
"y": 1738.04,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -58,8 +58,8 @@
},
{
"id": 6,
"x": -503.73046875,
"y": 1735.28271484375,
"x": -503.73,
"y": 1735.28,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -67,8 +67,8 @@
},
{
"id": 7,
"x": -501.7978515625,
"y": 1734.33349609375,
"x": -501.8,
"y": 1734.33,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -76,8 +76,8 @@
},
{
"id": 8,
"x": -500.400390625,
"y": 1726.55126953125,
"x": -500.4,
"y": 1726.55,
"type": "target",
"move_mode": "fly",
"action": "combat_script",
@@ -85,8 +85,8 @@
},
{
"id": 9,
"x": -501.986328125,
"y": 1731.33056640625,
"x": -501.99,
"y": 1731.33,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -94,8 +94,8 @@
},
{
"id": 10,
"x": -513.92578125,
"y": 1728.29638671875,
"x": -513.93,
"y": 1728.3,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -103,8 +103,8 @@
},
{
"id": 11,
"x": -511.125,
"y": 1719.2568359375,
"x": -511.12,
"y": 1719.26,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -112,8 +112,8 @@
},
{
"id": 12,
"x": -507.3515625,
"y": 1720.9072265625,
"x": -507.35,
"y": 1720.91,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -121,8 +121,8 @@
},
{
"id": 13,
"x": -514.447265625,
"y": 1718.27587890625,
"x": -514.45,
"y": 1718.28,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -130,8 +130,8 @@
},
{
"id": 14,
"x": -510.8544921875,
"y": 1707.10400390625,
"x": -510.85,
"y": 1707.1,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -139,8 +139,8 @@
},
{
"id": 15,
"x": -509.8740234375,
"y": 1699.87109375,
"x": -509.87,
"y": 1699.87,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -148,8 +148,8 @@
},
{
"id": 16,
"x": -483.7373046875,
"y": 1688.689453125,
"x": -483.74,
"y": 1688.69,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -157,8 +157,8 @@
},
{
"id": 17,
"x": -467.6826171875,
"y": 1700.84130859375,
"x": -467.68,
"y": 1700.84,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -166,8 +166,8 @@
},
{
"id": 18,
"x": -462.8408203125,
"y": 1700.22119140625,
"x": -462.84,
"y": 1700.22,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -175,8 +175,8 @@
},
{
"id": 19,
"x": -462.3955078125,
"y": 1696.7197265625,
"x": -462.4,
"y": 1696.72,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -184,8 +184,8 @@
},
{
"id": 20,
"x": -465.544921875,
"y": 1702.353515625,
"x": -465.54,
"y": 1702.35,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -193,8 +193,8 @@
},
{
"id": 21,
"x": -454.3251953125,
"y": 1710.109375,
"x": -454.33,
"y": 1710.11,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -202,8 +202,8 @@
},
{
"id": 22,
"x": -439.505859375,
"y": 1690.3564453125,
"x": -439.51,
"y": 1690.36,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -211,8 +211,8 @@
},
{
"id": 23,
"x": -410.533203125,
"y": 1690.93994140625,
"x": -410.53,
"y": 1690.94,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -220,8 +220,8 @@
},
{
"id": 24,
"x": -394.3359375,
"y": 1695.18994140625,
"x": -394.34,
"y": 1695.19,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -229,8 +229,8 @@
},
{
"id": 25,
"x": -397.06640625,
"y": 1706.0810546875,
"x": -397.07,
"y": 1706.08,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -238,8 +238,8 @@
},
{
"id": 26,
"x": -399.2451171875,
"y": 1705.2587890625,
"x": -399.25,
"y": 1705.26,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -247,8 +247,8 @@
},
{
"id": 27,
"x": -397.4912109375,
"y": 1704.15234375,
"x": -397.49,
"y": 1704.15,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -256,8 +256,8 @@
},
{
"id": 28,
"x": -391.5390625,
"y": 1695.640625,
"x": -391.54,
"y": 1695.64,
"type": "target",
"move_mode": "fly",
"action": "combat_script",
@@ -265,8 +265,8 @@
},
{
"id": 29,
"x": -391.9501953125,
"y": 1696.744140625,
"x": -391.95,
"y": 1696.74,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -274,8 +274,8 @@
},
{
"id": 30,
"x": -390.7880859375,
"y": 1697.88671875,
"x": -390.79,
"y": 1697.89,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -283,8 +283,8 @@
},
{
"id": 31,
"x": -388.4638671875,
"y": 1695.21044921875,
"x": -388.46,
"y": 1695.21,
"type": "target",
"move_mode": "fly",
"action": "",
@@ -292,8 +292,8 @@
},
{
"id": 32,
"x": -388.2822265625,
"y": 1694.5107421875,
"x": -388.28,
"y": 1694.51,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -301,8 +301,8 @@
},
{
"id": 33,
"x": -381.7509765625,
"y": 1683.62646484375,
"x": -381.75,
"y": 1683.63,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -310,8 +310,8 @@
},
{
"id": 34,
"x": -375.9228515625,
"y": 1679.8798828125,
"x": -375.92,
"y": 1679.88,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -319,8 +319,8 @@
},
{
"id": 35,
"x": -377.560546875,
"y": 1683.662109375,
"x": -377.56,
"y": 1683.66,
"type": "target",
"move_mode": "walk",
"action": "combat_script",

View File

@@ -16,14 +16,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -867.6103515625,
"y": 1992.26220703125,
"x": -867.61,
"y": 1992.26,
"action_params": ""
},
{
"id": 2,
"x": -874.0283203125,
"y": 1988.93359375,
"x": -874.03,
"y": 1988.93,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -31,8 +31,8 @@
},
{
"id": 3,
"x": -884.978515625,
"y": 1988.7685546875,
"x": -884.98,
"y": 1988.77,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -40,8 +40,8 @@
},
{
"id": 4,
"x": -899.1279296875,
"y": 1980.978515625,
"x": -899.13,
"y": 1980.98,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -49,8 +49,8 @@
},
{
"id": 5,
"x": -916.017578125,
"y": 1980.35546875,
"x": -916.02,
"y": 1980.36,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -58,8 +58,8 @@
},
{
"id": 6,
"x": -921.3896484375,
"y": 1972.68212890625,
"x": -921.39,
"y": 1972.68,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -67,8 +67,8 @@
},
{
"id": 7,
"x": -935.251953125,
"y": 1967.85888671875,
"x": -935.25,
"y": 1967.86,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -76,8 +76,8 @@
},
{
"id": 8,
"x": -942.1044921875,
"y": 1970.2021484375,
"x": -942.1,
"y": 1970.2,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -85,8 +85,8 @@
},
{
"id": 9,
"x": -945.4033203125,
"y": 1971.47900390625,
"x": -945.4,
"y": 1971.48,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -94,8 +94,8 @@
},
{
"id": 10,
"x": -946.1875,
"y": 1967.54638671875,
"x": -946.19,
"y": 1967.55,
"type": "target",
"move_mode": "fly",
"action": "",
@@ -103,8 +103,8 @@
},
{
"id": 11,
"x": -945.79296875,
"y": 1968.56103515625,
"x": -945.79,
"y": 1968.56,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -112,8 +112,8 @@
},
{
"id": 12,
"x": -943.265625,
"y": 1967.51318359375,
"x": -943.27,
"y": 1967.51,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -121,8 +121,8 @@
},
{
"id": 13,
"x": -942.2294921875,
"y": 1969.67138671875,
"x": -942.23,
"y": 1969.67,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -130,8 +130,8 @@
},
{
"id": 14,
"x": -942.6015625,
"y": 1966.66259765625,
"x": -942.6,
"y": 1966.66,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -139,8 +139,8 @@
},
{
"id": 15,
"x": -950.3896484375,
"y": 1966.2626953125,
"x": -950.39,
"y": 1966.26,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -148,8 +148,8 @@
},
{
"id": 16,
"x": -957.833984375,
"y": 1966.09375,
"x": -957.83,
"y": 1966.09,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
@@ -157,8 +157,8 @@
},
{
"id": 17,
"x": -957.5830078125,
"y": 1965.24658203125,
"x": -957.58,
"y": 1965.25,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -166,8 +166,8 @@
},
{
"id": 18,
"x": -954.6728515625,
"y": 1964.609375,
"x": -954.67,
"y": 1964.61,
"type": "target",
"move_mode": "fly",
"action": "",
@@ -175,8 +175,8 @@
},
{
"id": 19,
"x": -952.5712890625,
"y": 1964.345703125,
"x": -952.57,
"y": 1964.35,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -184,8 +184,8 @@
},
{
"id": 20,
"x": -954.7744140625,
"y": 1960.623046875,
"x": -954.77,
"y": 1960.62,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -193,8 +193,8 @@
},
{
"id": 21,
"x": -952.255859375,
"y": 1955.1748046875,
"x": -952.26,
"y": 1955.17,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -202,8 +202,8 @@
},
{
"id": 22,
"x": -953.88671875,
"y": 1949.15087890625,
"x": -953.89,
"y": 1949.15,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -211,8 +211,8 @@
},
{
"id": 23,
"x": -948.87890625,
"y": 1944.87060546875,
"x": -948.88,
"y": 1944.87,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -220,8 +220,8 @@
},
{
"id": 24,
"x": -950.490234375,
"y": 1940.2939453125,
"x": -950.49,
"y": 1940.29,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -229,8 +229,8 @@
},
{
"id": 25,
"x": -955.337890625,
"y": 1941.51318359375,
"x": -955.34,
"y": 1941.51,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -238,8 +238,8 @@
},
{
"id": 26,
"x": -956.669921875,
"y": 1935.66162109375,
"x": -956.67,
"y": 1935.66,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -247,8 +247,8 @@
},
{
"id": 27,
"x": -960.2861328125,
"y": 1929.1962890625,
"x": -960.29,
"y": 1929.2,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -256,8 +256,8 @@
},
{
"id": 28,
"x": -957.94140625,
"y": 1932.3232421875,
"x": -957.94,
"y": 1932.32,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -265,8 +265,8 @@
},
{
"id": 29,
"x": -947.0576171875,
"y": 1932.8427734375,
"x": -947.06,
"y": 1932.84,
"type": "target",
"move_mode": "fly",
"action": "",
@@ -274,8 +274,8 @@
},
{
"id": 30,
"x": -945.4443359375,
"y": 1936.34912109375,
"x": -945.44,
"y": 1936.35,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -283,8 +283,8 @@
},
{
"id": 31,
"x": -944.7099609375,
"y": 1937.09130859375,
"x": -944.71,
"y": 1937.09,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -292,8 +292,8 @@
},
{
"id": 32,
"x": -942.0087890625,
"y": 1935.91748046875,
"x": -942.01,
"y": 1935.92,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -301,8 +301,8 @@
},
{
"id": 33,
"x": -942.18359375,
"y": 1937.0029296875,
"x": -942.18,
"y": 1937.0,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -310,8 +310,8 @@
},
{
"id": 34,
"x": -938.67578125,
"y": 1942.24169921875,
"x": -938.68,
"y": 1942.24,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -319,8 +319,8 @@
},
{
"id": 35,
"x": -940.2685546875,
"y": 1937.87109375,
"x": -940.27,
"y": 1937.87,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
@@ -328,8 +328,8 @@
},
{
"id": 36,
"x": -936.4951171875,
"y": 1937.529296875,
"x": -936.5,
"y": 1937.53,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -337,8 +337,8 @@
},
{
"id": 37,
"x": -938.53125,
"y": 1922.6826171875,
"x": -938.53,
"y": 1922.68,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -346,8 +346,8 @@
},
{
"id": 38,
"x": -943.044921875,
"y": 1918.3251953125,
"x": -943.04,
"y": 1918.33,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -355,8 +355,8 @@
},
{
"id": 39,
"x": -950.04296875,
"y": 1912.6044921875,
"x": -950.04,
"y": 1912.6,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -364,8 +364,8 @@
},
{
"id": 40,
"x": -951.76953125,
"y": 1906.6591796875,
"x": -951.77,
"y": 1906.66,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -373,8 +373,8 @@
},
{
"id": 41,
"x": -950.921875,
"y": 1912.236328125,
"x": -950.92,
"y": 1912.24,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -382,8 +382,8 @@
},
{
"id": 42,
"x": -941.5263671875,
"y": 1908.4375,
"x": -941.53,
"y": 1908.44,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
@@ -391,8 +391,8 @@
},
{
"id": 43,
"x": -940.29296875,
"y": 1915.19970703125,
"x": -940.29,
"y": 1915.2,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -400,8 +400,8 @@
},
{
"id": 44,
"x": -940.0029296875,
"y": 1914.125,
"x": -940.0,
"y": 1914.12,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -409,8 +409,8 @@
},
{
"id": 45,
"x": -923.18359375,
"y": 1914.13623046875,
"x": -923.18,
"y": 1914.14,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -418,8 +418,8 @@
},
{
"id": 46,
"x": -924.265625,
"y": 1903.267578125,
"x": -924.27,
"y": 1903.27,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -427,8 +427,8 @@
},
{
"id": 47,
"x": -922.3740234375,
"y": 1894.56494140625,
"x": -922.37,
"y": 1894.56,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -436,8 +436,8 @@
},
{
"id": 48,
"x": -920.3681640625,
"y": 1898.6572265625,
"x": -920.37,
"y": 1898.66,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -445,8 +445,8 @@
},
{
"id": 49,
"x": -924.560546875,
"y": 1897.44677734375,
"x": -924.56,
"y": 1897.45,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -454,8 +454,8 @@
},
{
"id": 50,
"x": -902.9970703125,
"y": 1886.56005859375,
"x": -903.0,
"y": 1886.56,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -463,8 +463,8 @@
},
{
"id": 51,
"x": -897.0771484375,
"y": 1883.65576171875,
"x": -897.08,
"y": 1883.66,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -472,8 +472,8 @@
},
{
"id": 52,
"x": -874.3212890625,
"y": 1880.701171875,
"x": -874.32,
"y": 1880.7,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -481,8 +481,8 @@
},
{
"id": 53,
"x": -870.2802734375,
"y": 1889.08544921875,
"x": -870.28,
"y": 1889.09,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -490,8 +490,8 @@
},
{
"id": 54,
"x": -867.9921875,
"y": 1882.447265625,
"x": -867.99,
"y": 1882.45,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -499,8 +499,8 @@
},
{
"id": 55,
"x": -866.794921875,
"y": 1879.2421875,
"x": -866.79,
"y": 1879.24,
"type": "target",
"move_mode": "fly",
"action": "",
@@ -508,8 +508,8 @@
},
{
"id": 56,
"x": -862.056640625,
"y": 1874.1044921875,
"x": -862.06,
"y": 1874.1,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -517,8 +517,8 @@
},
{
"id": 57,
"x": -856.2421875,
"y": 1884.21875,
"x": -856.24,
"y": 1884.22,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -526,8 +526,8 @@
},
{
"id": 58,
"x": -858.84375,
"y": 1879.81103515625,
"x": -858.84,
"y": 1879.81,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -535,8 +535,8 @@
},
{
"id": 59,
"x": -856.7314453125,
"y": 1889.0087890625,
"x": -856.73,
"y": 1889.01,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -544,8 +544,8 @@
},
{
"id": 60,
"x": -862.9326171875,
"y": 1904.64453125,
"x": -862.93,
"y": 1904.64,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -553,8 +553,8 @@
},
{
"id": 61,
"x": -865.884765625,
"y": 1912.7470703125,
"x": -865.88,
"y": 1912.75,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -562,8 +562,8 @@
},
{
"id": 62,
"x": -867.8603515625,
"y": 1912.15771484375,
"x": -867.86,
"y": 1912.16,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -571,8 +571,8 @@
},
{
"id": 63,
"x": -865.470703125,
"y": 1919.92822265625,
"x": -865.47,
"y": 1919.93,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -580,8 +580,8 @@
},
{
"id": 64,
"x": -872.673828125,
"y": 1933.85107421875,
"x": -872.67,
"y": 1933.85,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
@@ -589,8 +589,8 @@
},
{
"id": 65,
"x": -871.2529296875,
"y": 1932.17431640625,
"x": -871.25,
"y": 1932.17,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -598,8 +598,8 @@
},
{
"id": 66,
"x": -869.958984375,
"y": 1933.9365234375,
"x": -869.96,
"y": 1933.94,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -607,8 +607,8 @@
},
{
"id": 67,
"x": -868.4658203125,
"y": 1923.81494140625,
"x": -868.47,
"y": 1923.81,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -616,8 +616,8 @@
},
{
"id": 68,
"x": -867.2626953125,
"y": 1919.56982421875,
"x": -867.26,
"y": 1919.57,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -625,8 +625,8 @@
},
{
"id": 69,
"x": -866.328125,
"y": 1934.24755859375,
"x": -866.33,
"y": 1934.25,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -634,8 +634,8 @@
},
{
"id": 70,
"x": -861.720703125,
"y": 1943.5478515625,
"x": -861.72,
"y": 1943.55,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -643,8 +643,8 @@
},
{
"id": 71,
"x": -863.310546875,
"y": 1941.443359375,
"x": -863.31,
"y": 1941.44,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -652,8 +652,8 @@
},
{
"id": 72,
"x": -856.453125,
"y": 1947.869140625,
"x": -856.45,
"y": 1947.87,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -661,8 +661,8 @@
},
{
"id": 73,
"x": -863.091796875,
"y": 1950.5244140625,
"x": -863.09,
"y": 1950.52,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -670,8 +670,8 @@
},
{
"id": 74,
"x": -865.798828125,
"y": 1951.82421875,
"x": -865.8,
"y": 1951.82,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -679,8 +679,8 @@
},
{
"id": 75,
"x": -870.384765625,
"y": 1949.51171875,
"x": -870.38,
"y": 1949.51,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -688,8 +688,8 @@
},
{
"id": 76,
"x": -882.8115234375,
"y": 1945.8544921875,
"x": -882.81,
"y": 1945.85,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -697,8 +697,8 @@
},
{
"id": 77,
"x": -894.427734375,
"y": 1929.10986328125,
"x": -894.43,
"y": 1929.11,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -706,8 +706,8 @@
},
{
"id": 78,
"x": -909.390625,
"y": 1924.82177734375,
"x": -909.39,
"y": 1924.82,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -715,8 +715,8 @@
},
{
"id": 79,
"x": -919.5302734375,
"y": 1928.56982421875,
"x": -919.53,
"y": 1928.57,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -724,8 +724,8 @@
},
{
"id": 80,
"x": -920.5869140625,
"y": 1935.22802734375,
"x": -920.59,
"y": 1935.23,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -733,8 +733,8 @@
},
{
"id": 81,
"x": -920.048828125,
"y": 1938.595703125,
"x": -920.05,
"y": 1938.6,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -742,8 +742,8 @@
},
{
"id": 82,
"x": -916.6455078125,
"y": 1942.490234375,
"x": -916.65,
"y": 1942.49,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -752,8 +752,8 @@
},
{
"id": 83,
"x": -917.8466796875,
"y": 1937.3564453125,
"x": -917.85,
"y": 1937.36,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -761,8 +761,8 @@
},
{
"id": 84,
"x": -915.865234375,
"y": 1933.39013671875,
"x": -915.87,
"y": 1933.39,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -770,8 +770,8 @@
},
{
"id": 85,
"x": -909.951171875,
"y": 1931.62255859375,
"x": -909.95,
"y": 1931.62,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -779,8 +779,8 @@
},
{
"id": 86,
"x": -908.66796875,
"y": 1933.1884765625,
"x": -908.67,
"y": 1933.19,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -789,8 +789,8 @@
},
{
"id": 87,
"x": -916.6455078125,
"y": 1942.490234375,
"x": -916.65,
"y": 1942.49,
"type": "orientation",
"move_mode": "walk",
"action": "combat_script",
@@ -798,8 +798,8 @@
},
{
"id": 88,
"x": -908.1953125,
"y": 1932.517578125,
"x": -908.2,
"y": 1932.52,
"type": "target",
"move_mode": "walk",
"action": "stop_flying",
@@ -807,8 +807,8 @@
},
{
"id": 89,
"x": -905.6572265625,
"y": 1937.21142578125,
"x": -905.66,
"y": 1937.21,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -816,8 +816,8 @@
},
{
"id": 90,
"x": -907.3046875,
"y": 1940.58642578125,
"x": -907.3,
"y": 1940.59,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -825,8 +825,8 @@
},
{
"id": 91,
"x": -911.490234375,
"y": 1943.57763671875,
"x": -911.49,
"y": 1943.58,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -834,8 +834,8 @@
},
{
"id": 92,
"x": -914.2919921875,
"y": 1942.71044921875,
"x": -914.29,
"y": 1942.71,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -843,8 +843,8 @@
},
{
"id": 93,
"x": -916.3603515625,
"y": 1940.28515625,
"x": -916.36,
"y": 1940.29,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -852,8 +852,8 @@
},
{
"id": 94,
"x": -913.26953125,
"y": 1938.349609375,
"x": -913.27,
"y": 1938.35,
"type": "path",
"move_mode": "fly",
"action": "",

View File

@@ -13,8 +13,8 @@
"positions": [
{
"id": 1,
"x": -749.408203125,
"y": 2263.206787109375,
"x": -749.41,
"y": 2263.21,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -22,8 +22,8 @@
},
{
"id": 2,
"x": -760.044921875,
"y": 2265.76171875,
"x": -760.04,
"y": 2265.76,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -31,8 +31,8 @@
},
{
"id": 3,
"x": -767.9814453125,
"y": 2235.53515625,
"x": -767.98,
"y": 2235.54,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -40,8 +40,8 @@
},
{
"id": 4,
"x": -765.505859375,
"y": 2214.0498046875,
"x": -765.51,
"y": 2214.05,
"type": "path",
"move_mode": "fly",
"action": "combat_script",
@@ -49,8 +49,8 @@
},
{
"id": 5,
"x": -772.720703125,
"y": 2214.59423828125,
"x": -772.72,
"y": 2214.59,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -58,8 +58,8 @@
},
{
"id": 6,
"x": -771.142578125,
"y": 2208.359375,
"x": -771.14,
"y": 2208.36,
"type": "target",
"move_mode": "walk",
"action": "stop_flying",
@@ -67,8 +67,8 @@
},
{
"id": 7,
"x": -771.0556640625,
"y": 2207.5458984375,
"x": -771.06,
"y": 2207.55,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -76,8 +76,8 @@
},
{
"id": 8,
"x": -771.8125,
"y": 2214.1220703125,
"x": -771.81,
"y": 2214.12,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -85,8 +85,8 @@
},
{
"id": 9,
"x": -759.9150390625,
"y": 2205.52294921875,
"x": -759.92,
"y": 2205.52,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -94,8 +94,8 @@
},
{
"id": 10,
"x": -768.958984375,
"y": 2196.281005859375,
"x": -768.96,
"y": 2196.28,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -103,8 +103,8 @@
},
{
"id": 11,
"x": -769.7490234375,
"y": 2199.135986328125,
"x": -769.75,
"y": 2199.14,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -112,8 +112,8 @@
},
{
"id": 12,
"x": -766.4853515625,
"y": 2196.80078125,
"x": -766.49,
"y": 2196.8,
"type": "path",
"move_mode": "walk",
"action": "stop_flying",
@@ -121,8 +121,8 @@
},
{
"id": 13,
"x": -767.78125,
"y": 2199.865234375,
"x": -767.78,
"y": 2199.87,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -130,8 +130,8 @@
},
{
"id": 14,
"x": -765.7890625,
"y": 2197.16455078125,
"x": -765.79,
"y": 2197.16,
"type": "path",
"move_mode": "walk",
"action": "stop_flying",
@@ -139,8 +139,8 @@
},
{
"id": 15,
"x": -771.3076171875,
"y": 2195.8076171875,
"x": -771.31,
"y": 2195.81,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -148,8 +148,8 @@
},
{
"id": 16,
"x": -770.931640625,
"y": 2199.154052734375,
"x": -770.93,
"y": 2199.15,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -157,8 +157,8 @@
},
{
"id": 17,
"x": -771.251953125,
"y": 2194.4453125,
"x": -771.25,
"y": 2194.45,
"type": "path",
"move_mode": "walk",
"action": "stop_flying",
@@ -166,8 +166,8 @@
},
{
"id": 18,
"x": -776.8583984375,
"y": 2199.79833984375,
"x": -776.86,
"y": 2199.8,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -175,8 +175,8 @@
},
{
"id": 19,
"x": -774.8583984375,
"y": 2201.03564453125,
"x": -774.86,
"y": 2201.04,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -184,8 +184,8 @@
},
{
"id": 20,
"x": -777.0810546875,
"y": 2200.23291015625,
"x": -777.08,
"y": 2200.23,
"type": "path",
"move_mode": "walk",
"action": "stop_flying",
@@ -193,8 +193,8 @@
},
{
"id": 21,
"x": -778.59375,
"y": 2208.21142578125,
"x": -778.59,
"y": 2208.21,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -202,8 +202,8 @@
},
{
"id": 22,
"x": -774.41796875,
"y": 2205.927490234375,
"x": -774.42,
"y": 2205.93,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -211,8 +211,8 @@
},
{
"id": 23,
"x": -777.5126953125,
"y": 2208.2666015625,
"x": -777.51,
"y": 2208.27,
"type": "path",
"move_mode": "walk",
"action": "stop_flying",
@@ -220,8 +220,8 @@
},
{
"id": 24,
"x": -837.09375,
"y": 2209.193115234375,
"x": -837.09,
"y": 2209.19,
"type": "orientation",
"move_mode": "walk",
"action": "",
@@ -229,8 +229,8 @@
},
{
"id": 25,
"x": -795.6220703125,
"y": 2200.974365234375,
"x": -795.62,
"y": 2200.97,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -238,8 +238,8 @@
},
{
"id": 26,
"x": -817.79296875,
"y": 2213.3349609375,
"x": -817.79,
"y": 2213.33,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -247,8 +247,8 @@
},
{
"id": 27,
"x": -821.947265625,
"y": 2221.747314453125,
"x": -821.95,
"y": 2221.75,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -256,8 +256,8 @@
},
{
"id": 28,
"x": -820.0166015625,
"y": 2222.800048828125,
"x": -820.02,
"y": 2222.8,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -265,8 +265,8 @@
},
{
"id": 29,
"x": -817.5927734375,
"y": 2224.26318359375,
"x": -817.59,
"y": 2224.26,
"type": "target",
"move_mode": "climb",
"action": "combat_script",
@@ -274,8 +274,8 @@
},
{
"id": 30,
"x": -833.1083984375,
"y": 2216.950439453125,
"x": -833.11,
"y": 2216.95,
"type": "path",
"move_mode": "fly",
"action": "combat_script",
@@ -283,8 +283,8 @@
},
{
"id": 31,
"x": -845.7705078125,
"y": 2217.9345703125,
"x": -845.77,
"y": 2217.93,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -292,8 +292,8 @@
},
{
"id": 32,
"x": -846.75390625,
"y": 2217.16943359375,
"x": -846.75,
"y": 2217.17,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -301,8 +301,8 @@
},
{
"id": 33,
"x": -841.6962890625,
"y": 2224.614013671875,
"x": -841.7,
"y": 2224.61,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -310,8 +310,8 @@
},
{
"id": 34,
"x": -847.4501953125,
"y": 2221.5849609375,
"x": -847.45,
"y": 2221.58,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -319,8 +319,8 @@
},
{
"id": 35,
"x": -847.185546875,
"y": 2217.962646484375,
"x": -847.19,
"y": 2217.96,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -328,8 +328,8 @@
},
{
"id": 36,
"x": -847.587890625,
"y": 2221.824462890625,
"x": -847.59,
"y": 2221.82,
"type": "path",
"move_mode": "walk",
"action": "stop_flying",
@@ -337,8 +337,8 @@
},
{
"id": 37,
"x": -849.8525390625,
"y": 2215.935546875,
"x": -849.85,
"y": 2215.94,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -346,8 +346,8 @@
},
{
"id": 38,
"x": -837.09375,
"y": 2209.193115234375,
"x": -837.09,
"y": 2209.19,
"type": "orientation",
"move_mode": "walk",
"action": "combat_script",
@@ -356,8 +356,8 @@
},
{
"id": 39,
"x": -851.138671875,
"y": 2216.7578125,
"x": -851.14,
"y": 2216.76,
"type": "path",
"move_mode": "walk",
"action": "stop_flying",
@@ -365,8 +365,8 @@
},
{
"id": 40,
"x": -851.6181640625,
"y": 2214.472412109375,
"x": -851.62,
"y": 2214.47,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -374,8 +374,8 @@
},
{
"id": 41,
"x": -837.09375,
"y": 2209.193115234375,
"x": -837.09,
"y": 2209.19,
"type": "orientation",
"move_mode": "walk",
"action": "combat_script",

View File

@@ -16,14 +16,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -867.6962890625,
"y": 2281.3720703125,
"x": -867.7,
"y": 2281.37,
"action_params": ""
},
{
"id": 2,
"x": -851.732421875,
"y": 2273.982421875,
"x": -851.73,
"y": 2273.98,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -31,8 +31,8 @@
},
{
"id": 3,
"x": -847.6162109375,
"y": 2276.6484375,
"x": -847.62,
"y": 2276.65,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -40,8 +40,8 @@
},
{
"id": 4,
"x": -846.8544921875,
"y": 2283.331787109375,
"x": -846.85,
"y": 2283.33,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -49,8 +49,8 @@
},
{
"id": 5,
"x": -845.470703125,
"y": 2289.835693359375,
"x": -845.47,
"y": 2289.84,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -58,8 +58,8 @@
},
{
"id": 6,
"x": -837.9384765625,
"y": 2311.720947265625,
"x": -837.94,
"y": 2311.72,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -67,8 +67,8 @@
},
{
"id": 7,
"x": -827.2138671875,
"y": 2313.37890625,
"x": -827.21,
"y": 2313.38,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -76,8 +76,8 @@
},
{
"id": 8,
"x": -824.53125,
"y": 2311.089111328125,
"x": -824.53,
"y": 2311.09,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -85,8 +85,8 @@
},
{
"id": 9,
"x": -825.8662109375,
"y": 2306.900634765625,
"x": -825.87,
"y": 2306.9,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -94,8 +94,8 @@
},
{
"id": 10,
"x": -822.044921875,
"y": 2306.341552734375,
"x": -822.04,
"y": 2306.34,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -103,8 +103,8 @@
},
{
"id": 11,
"x": -823.5009765625,
"y": 2296.125244140625,
"x": -823.5,
"y": 2296.13,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -112,8 +112,8 @@
},
{
"id": 12,
"x": -827.5048828125,
"y": 2296.614990234375,
"x": -827.5,
"y": 2296.61,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -121,8 +121,8 @@
},
{
"id": 13,
"x": -842.67578125,
"y": 2298.217529296875,
"x": -842.68,
"y": 2298.22,
"type": "orientation",
"move_mode": "walk",
"action": "combat_script",
@@ -130,8 +130,8 @@
},
{
"id": 14,
"x": -867.6962890625,
"y": 2281.36572265625,
"x": -867.7,
"y": 2281.37,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -139,8 +139,8 @@
},
{
"id": 15,
"x": -848.0146484375,
"y": 2299.73291015625,
"x": -848.01,
"y": 2299.73,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -148,8 +148,8 @@
},
{
"id": 16,
"x": -838.8212890625,
"y": 2328.62109375,
"x": -838.82,
"y": 2328.62,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -157,8 +157,8 @@
},
{
"id": 17,
"x": -824.865234375,
"y": 2330.717041015625,
"x": -824.87,
"y": 2330.72,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -166,8 +166,8 @@
},
{
"id": 18,
"x": -820.677734375,
"y": 2336.92822265625,
"x": -820.68,
"y": 2336.93,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -175,8 +175,8 @@
},
{
"id": 19,
"x": -829.693359375,
"y": 2336.447509765625,
"x": -829.69,
"y": 2336.45,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -184,8 +184,8 @@
},
{
"id": 20,
"x": -833.873046875,
"y": 2339.331298828125,
"x": -833.87,
"y": 2339.33,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -193,8 +193,8 @@
},
{
"id": 21,
"x": -834.6318359375,
"y": 2341.162353515625,
"x": -834.63,
"y": 2341.16,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -202,8 +202,8 @@
},
{
"id": 22,
"x": -831.6396484375,
"y": 2342.120361328125,
"x": -831.64,
"y": 2342.12,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -211,8 +211,8 @@
},
{
"id": 23,
"x": -859.0849609375,
"y": 2330.392822265625,
"x": -859.08,
"y": 2330.39,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -220,8 +220,8 @@
},
{
"id": 24,
"x": -863.232421875,
"y": 2341.19287109375,
"x": -863.23,
"y": 2341.19,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -229,8 +229,8 @@
},
{
"id": 25,
"x": -867.685546875,
"y": 2338.673828125,
"x": -867.69,
"y": 2338.67,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -238,8 +238,8 @@
},
{
"id": 26,
"x": -872.2509765625,
"y": 2336.111083984375,
"x": -872.25,
"y": 2336.11,
"type": "path",
"move_mode": "fly",
"action": "",

View File

@@ -13,8 +13,8 @@
"positions": [
{
"id": 1,
"x": -867.70703125,
"y": 2281.375,
"x": -867.71,
"y": 2281.38,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -22,8 +22,8 @@
},
{
"id": 2,
"x": -895.3623046875,
"y": 2249.051513671875,
"x": -895.36,
"y": 2249.05,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -31,8 +31,8 @@
},
{
"id": 3,
"x": -926.0078125,
"y": 2234.306396484375,
"x": -926.01,
"y": 2234.31,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -40,8 +40,8 @@
},
{
"id": 4,
"x": -934.0537109375,
"y": 2230.214111328125,
"x": -934.05,
"y": 2230.21,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -49,8 +49,8 @@
},
{
"id": 5,
"x": -948.6025390625,
"y": 2244.654052734375,
"x": -948.6,
"y": 2244.65,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -58,8 +58,8 @@
},
{
"id": 6,
"x": -952.9091796875,
"y": 2255.01318359375,
"x": -952.91,
"y": 2255.01,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -67,8 +67,8 @@
},
{
"id": 7,
"x": -952.818359375,
"y": 2262.58740234375,
"x": -952.82,
"y": 2262.59,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -76,8 +76,8 @@
},
{
"id": 8,
"x": -943.9150390625,
"y": 2287.6787109375,
"x": -943.92,
"y": 2287.68,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -85,8 +85,8 @@
},
{
"id": 9,
"x": -951.498046875,
"y": 2288.68505859375,
"x": -951.5,
"y": 2288.69,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -94,8 +94,8 @@
},
{
"id": 10,
"x": -938.9638671875,
"y": 2286.235595703125,
"x": -938.96,
"y": 2286.24,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -103,8 +103,8 @@
},
{
"id": 11,
"x": -939.9404296875,
"y": 2283.0634765625,
"x": -939.94,
"y": 2283.06,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -112,8 +112,8 @@
},
{
"id": 12,
"x": -940.9453125,
"y": 2280.30419921875,
"x": -940.95,
"y": 2280.3,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -121,8 +121,8 @@
},
{
"id": 13,
"x": -938.9638671875,
"y": 2286.235595703125,
"x": -938.96,
"y": 2286.24,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -131,8 +131,8 @@
},
{
"id": 14,
"x": -933.42578125,
"y": 2284.24658203125,
"x": -933.43,
"y": 2284.25,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -140,8 +140,8 @@
},
{
"id": 15,
"x": -935.4912109375,
"y": 2277.626953125,
"x": -935.49,
"y": 2277.63,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -149,8 +149,8 @@
},
{
"id": 16,
"x": -935.08984375,
"y": 2294.141357421875,
"x": -935.09,
"y": 2294.14,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -158,8 +158,8 @@
},
{
"id": 17,
"x": -934.8115234375,
"y": 2296.191650390625,
"x": -934.81,
"y": 2296.19,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -167,8 +167,8 @@
},
{
"id": 18,
"x": -930.71875,
"y": 2302.456787109375,
"x": -930.72,
"y": 2302.46,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
@@ -176,8 +176,8 @@
},
{
"id": 19,
"x": -928.7333984375,
"y": 2304.9619140625,
"x": -928.73,
"y": 2304.96,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -185,8 +185,8 @@
},
{
"id": 20,
"x": -933.3203125,
"y": 2308.02978515625,
"x": -933.32,
"y": 2308.03,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -194,8 +194,8 @@
},
{
"id": 21,
"x": -930.0556640625,
"y": 2313.20263671875,
"x": -930.06,
"y": 2313.2,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -203,8 +203,8 @@
},
{
"id": 22,
"x": -935.7919921875,
"y": 2316.913330078125,
"x": -935.79,
"y": 2316.91,
"type": "path",
"move_mode": "fly",
"action": "",

View File

@@ -13,8 +13,8 @@
"positions": [
{
"id": 1,
"x": -867.67578125,
"y": 2281.3623046875,
"x": -867.68,
"y": 2281.36,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -22,8 +22,8 @@
},
{
"id": 2,
"x": -893.830078125,
"y": 2249.089111328125,
"x": -893.83,
"y": 2249.09,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -31,8 +31,8 @@
},
{
"id": 3,
"x": -925.556640625,
"y": 2231.357421875,
"x": -925.56,
"y": 2231.36,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -40,8 +40,8 @@
},
{
"id": 4,
"x": -918.0146484375,
"y": 2214.827880859375,
"x": -918.01,
"y": 2214.83,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -49,8 +49,8 @@
},
{
"id": 5,
"x": -902.521484375,
"y": 2208.398193359375,
"x": -902.52,
"y": 2208.4,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -58,8 +58,8 @@
},
{
"id": 6,
"x": -895.9775390625,
"y": 2199.451171875,
"x": -895.98,
"y": 2199.45,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -67,8 +67,8 @@
},
{
"id": 7,
"x": -890.1171875,
"y": 2196.71826171875,
"x": -890.12,
"y": 2196.72,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -76,8 +76,8 @@
},
{
"id": 8,
"x": -889.251953125,
"y": 2199.580810546875,
"x": -889.25,
"y": 2199.58,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
@@ -85,8 +85,8 @@
},
{
"id": 9,
"x": -878.962890625,
"y": 2192.748779296875,
"x": -878.96,
"y": 2192.75,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -94,8 +94,8 @@
},
{
"id": 10,
"x": -875.55078125,
"y": 2198.271484375,
"x": -875.55,
"y": 2198.27,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -103,8 +103,8 @@
},
{
"id": 11,
"x": -873.7705078125,
"y": 2197.7529296875,
"x": -873.77,
"y": 2197.75,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -112,8 +112,8 @@
},
{
"id": 12,
"x": -874.7490234375,
"y": 2190.17041015625,
"x": -874.75,
"y": 2190.17,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -121,8 +121,8 @@
},
{
"id": 13,
"x": -872.3955078125,
"y": 2187.8486328125,
"x": -872.4,
"y": 2187.85,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -130,8 +130,8 @@
},
{
"id": 14,
"x": -875.4404296875,
"y": 2188.402587890625,
"x": -875.44,
"y": 2188.4,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -139,8 +139,8 @@
},
{
"id": 15,
"x": -870.2294921875,
"y": 2187.115478515625,
"x": -870.23,
"y": 2187.12,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -148,8 +148,8 @@
},
{
"id": 16,
"x": -863.57421875,
"y": 2183.62109375,
"x": -863.57,
"y": 2183.62,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -157,8 +157,8 @@
},
{
"id": 17,
"x": -869.4912109375,
"y": 2185.482177734375,
"x": -869.49,
"y": 2185.48,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -166,8 +166,8 @@
},
{
"id": 18,
"x": -872.10546875,
"y": 2177.204345703125,
"x": -872.11,
"y": 2177.2,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -175,8 +175,8 @@
},
{
"id": 19,
"x": -879.974609375,
"y": 2179.876953125,
"x": -879.97,
"y": 2179.88,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -184,8 +184,8 @@
},
{
"id": 20,
"x": -882.8740234375,
"y": 2178.7841796875,
"x": -882.87,
"y": 2178.78,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -193,8 +193,8 @@
},
{
"id": 21,
"x": -910.3984375,
"y": 2188.482666015625,
"x": -910.4,
"y": 2188.48,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -202,8 +202,8 @@
},
{
"id": 22,
"x": -911.3603515625,
"y": 2193.955810546875,
"x": -911.36,
"y": 2193.96,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -211,8 +211,8 @@
},
{
"id": 23,
"x": -906.708984375,
"y": 2192.378662109375,
"x": -906.71,
"y": 2192.38,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -220,8 +220,8 @@
},
{
"id": 24,
"x": -907.3994140625,
"y": 2198.234375,
"x": -907.4,
"y": 2198.23,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -229,8 +229,8 @@
},
{
"id": 25,
"x": -908.94140625,
"y": 2201.071533203125,
"x": -908.94,
"y": 2201.07,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -238,8 +238,8 @@
},
{
"id": 26,
"x": -906.65234375,
"y": 2203.8818359375,
"x": -906.65,
"y": 2203.88,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -247,8 +247,8 @@
},
{
"id": 27,
"x": -906.671875,
"y": 2204.0615234375,
"x": -906.67,
"y": 2204.06,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 285.17236328125,
"y": 277.292236328125,
"x": 285.17,
"y": 277.29,
"action_params": ""
},
{
"id": 2,
"x": 269.63330078125,
"y": 275.579833984375,
"x": 269.63,
"y": 275.58,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 269.6109619140625,
"y": 262.6392822265625,
"x": 269.61,
"y": 262.64,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 237.8345947265625,
"y": 242.2666015625,
"x": 237.83,
"y": 242.27,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 199.881591796875,
"y": 222.3193359375,
"x": 199.88,
"y": 222.32,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 201.709716796875,
"y": 204.6878662109375,
"x": 201.71,
"y": 204.69,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 217.4383544921875,
"y": 227.571044921875,
"x": 217.44,
"y": 227.57,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 210.464599609375,
"y": 236.328125,
"x": 210.46,
"y": 236.33,
"type": "target",
"move_mode": "walk",
"action": "fight",

View File

@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -308.117919921875,
"y": 427.6220703125,
"x": -308.12,
"y": 427.62,
"action_params": ""
},
{
"id": 2,
"x": -344.831298828125,
"y": 472.7015380859375,
"x": -344.83,
"y": 472.7,
"type": "path",
"move_mode": "walk",
"action": "fight",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -308.1513671875,
"y": 427.6253662109375,
"x": -308.15,
"y": 427.63,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": -300.3232421875,
"y": 380.7056884765625,
"x": -300.32,
"y": 380.71,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -278.630615234375,
"y": 355.3763427734375,
"x": -278.63,
"y": 355.38,
"type": "target",
"move_mode": "fly",
"action": "fight",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "渊下宫-3只",
"name": "渊下宫-另外3只",
"type": "collect",
"author": "Vicissitude",
"version": "1.0",
@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -362.479248046875,
"y": 238.3197021484375,
"x": -362.48,
"y": 238.32,
"action_params": ""
},
{
"id": 2,
"x": -352.5390625,
"y": 243.3697509765625,
"x": -352.54,
"y": 243.37,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -235.6640625,
"y": 230.0794677734375,
"x": -235.66,
"y": 230.08,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": -229.408203125,
"y": 224.3294677734375,
"x": -229.41,
"y": 224.33,
"type": "path",
"move_mode": "climb",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -215.177490234375,
"y": 220.496826171875,
"x": -215.18,
"y": 220.5,
"type": "target",
"move_mode": "climb",
"action": "fight",

View File

@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -2556.3515625,
"y": -6007.515625,
"x": -2556.35,
"y": -6007.52,
"action_params": ""
},
{
"id": 2,
"x": -2551.720703125,
"y": -6005.609375,
"x": -2551.72,
"y": -6005.61,
"type": "orientation",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -2546.2333984375,
"y": -6001.7861328125,
"x": -2546.23,
"y": -6001.79,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": -2473.98828125,
"y": -6000.5908203125,
"x": -2473.99,
"y": -6000.59,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -2474.0625,
"y": -6007.390625,
"x": -2474.06,
"y": -6007.39,
"type": "path",
"move_mode": "walk",
"action": "fight",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": -2836.8271484375,
"y": -6287.529296875,
"x": -2836.83,
"y": -6287.53,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": -2813.6611328125,
"y": -6291.2578125,
"x": -2813.66,
"y": -6291.26,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -2785.431640625,
"y": -6302.0166015625,
"x": -2785.43,
"y": -6302.02,
"type": "target",
"move_mode": "run",
"action": "fight",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": -2808.79296875,
"y": -6321.9189453125,
"x": -2808.79,
"y": -6321.92,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -2809.412109375,
"y": -6376.404296875,
"x": -2809.41,
"y": -6376.4,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": -2794.9130859375,
"y": -6396.9697265625,
"x": -2794.91,
"y": -6396.97,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": -2785.3603515625,
"y": -6412.3388671875,
"x": -2785.36,
"y": -6412.34,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": -2788.7333984375,
"y": -6464.169921875,
"x": -2788.73,
"y": -6464.17,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": -2789.0205078125,
"y": -6473.2568359375,
"x": -2789.02,
"y": -6473.26,
"type": "target",
"move_mode": "walk",
"action": "fight",

View File

@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -2606.220703125,
"y": -6216.255859375,
"x": -2606.22,
"y": -6216.26,
"action_params": ""
},
{
"id": 2,
"x": -2584.6650390625,
"y": -6222.8955078125,
"x": -2584.67,
"y": -6222.9,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -2557.50390625,
"y": -6225.447265625,
"x": -2557.5,
"y": -6225.45,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": -2542.7099609375,
"y": -6215.8603515625,
"x": -2542.71,
"y": -6215.86,
"type": "target",
"move_mode": "fly",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -2520.5263671875,
"y": -6222.5009765625,
"x": -2520.53,
"y": -6222.5,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": -2516.474609375,
"y": -6225.5517578125,
"x": -2516.47,
"y": -6225.55,
"type": "target",
"move_mode": "walk",
"action": "fight",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": -2459.80078125,
"y": -6182.1923828125,
"x": -2459.8,
"y": -6182.19,
"type": "target",
"move_mode": "walk",
"action": "fight",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": -2432.1396484375,
"y": -6176.197265625,
"x": -2432.14,
"y": -6176.2,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": -2416.037109375,
"y": -6197.9189453125,
"x": -2416.04,
"y": -6197.92,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": -2413.208984375,
"y": -6203.0380859375,
"x": -2413.21,
"y": -6203.04,
"type": "target",
"move_mode": "walk",
"action": "fight",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": -2397.263671875,
"y": -6244.32421875,
"x": -2397.26,
"y": -6244.32,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": -2412.9345703125,
"y": -6254.0634765625,
"x": -2412.93,
"y": -6254.06,
"type": "target",
"move_mode": "walk",
"action": "fight",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": -2430.404296875,
"y": -6286.5302734375,
"x": -2430.4,
"y": -6286.53,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": -2414.2353515625,
"y": -6314.2890625,
"x": -2414.24,
"y": -6314.29,
"type": "target",
"move_mode": "walk",
"action": "fight",

View File

@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -251.626953125,
"y": 2256.56298828125,
"x": -251.63,
"y": 2256.56,
"action_params": ""
},
{
"id": 2,
"x": -242.48046875,
"y": 2238.472412109375,
"x": -242.48,
"y": 2238.47,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": -243.513671875,
"y": 2218.4345703125,
"x": -243.51,
"y": 2218.43,
"type": "path",
"move_mode": "climb",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": -244.8876953125,
"y": 2211.431884765625,
"x": -244.89,
"y": 2211.43,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": -246.0986328125,
"y": 2205.345947265625,
"x": -246.1,
"y": 2205.35,
"type": "path",
"move_mode": "climb",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": -253.8466796875,
"y": 2184.9599609375,
"x": -253.85,
"y": 2184.96,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": -245.4990234375,
"y": 2105.600830078125,
"x": -245.5,
"y": 2105.6,
"type": "target",
"move_mode": "run",
"action": "fight",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 7759.265625,
"y": -1401.44580078125,
"x": 7759.27,
"y": -1401.45,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 7766.92041015625,
"y": -1433.46923828125,
"x": 7766.92,
"y": -1433.47,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 7634.048828125,
"y": -1646.52490234375,
"x": 7634.05,
"y": -1646.52,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 7609.484375,
"y": -1667.09814453125,
"x": 7609.48,
"y": -1667.1,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 7603.15625,
"y": -1623.1474609375,
"x": 7603.16,
"y": -1623.15,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 7611.63330078125,
"y": -1570.1533203125,
"x": 7611.63,
"y": -1570.15,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "1000",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 7612.63330078125,
"y": -1569.1533203125,
"x": 7612.63,
"y": -1569.15,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 7603.4287109375,
"y": -1553.546875,
"x": 7603.43,
"y": -1553.55,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 7550.203125,
"y": -1573.57177734375,
"x": 7550.2,
"y": -1573.57,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 7543.63671875,
"y": -1562.40771484375,
"x": 7543.64,
"y": -1562.41,
"type": "path",
"move_mode": "run",
"action": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 7537.9365234375,
"y": -1564.65576171875,
"x": 7537.94,
"y": -1564.66,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 7533.453125,
"y": -1548.94140625,
"x": 7533.45,
"y": -1548.94,
"type": "path",
"move_mode": "run",
"action": "",
@@ -120,8 +120,8 @@
},
{
"id": 13,
"x": 7537.92724609375,
"y": -1543.2568359375,
"x": 7537.93,
"y": -1543.26,
"type": "path",
"move_mode": "walk",
"action": "fight",
@@ -129,8 +129,8 @@
},
{
"id": 14,
"x": 7533.453125,
"y": -1548.94140625,
"x": 7533.45,
"y": -1548.94,
"type": "path",
"move_mode": "run",
"action": "",
@@ -138,8 +138,8 @@
},
{
"id": 15,
"x": 7537.9365234375,
"y": -1564.65576171875,
"x": 7537.94,
"y": -1564.66,
"type": "path",
"move_mode": "run",
"action": "",
@@ -147,8 +147,8 @@
},
{
"id": 16,
"x": 7517.21337890625,
"y": -1560.76513671875,
"x": 7517.21,
"y": -1560.77,
"type": "path",
"move_mode": "run",
"action": "fight",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 7857.24755859375,
"y": -1750.48291015625,
"x": 7857.25,
"y": -1750.48,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 7771,
"y": -1739,
"x": 7771.0,
"y": -1739.0,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 7767.2177734375,
"y": -1733.0146484375,
"x": 7767.22,
"y": -1733.01,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 7973.74560546875,
"y": -1557.54052734375,
"x": 7973.75,
"y": -1557.54,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 7925.904296875,
"y": -1504.2138671875,
"x": 7925.9,
"y": -1504.21,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 7973.66259765625,
"y": -1557.63232421875,
"x": 7973.66,
"y": -1557.63,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 8018.87109375,
"y": -1566.244140625,
"x": 8018.87,
"y": -1566.24,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 8018.67822265625,
"y": -1601.748046875,
"x": 8018.68,
"y": -1601.75,
"action": "fight",
"move_mode": "run",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 7845.13330078125,
"y": -2047.3798828125,
"x": 7845.13,
"y": -2047.38,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 7866.7783203125,
"y": -2068.6181640625,
"x": 7866.78,
"y": -2068.62,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "100",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 7866.7783203125,
"y": -2068.6181640625,
"x": 7866.78,
"y": -2068.62,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 7845.07958984375,
"y": -2047.3828125,
"x": 7845.08,
"y": -2047.38,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 7802.357421875,
"y": -2095.0927734375,
"x": 7802.36,
"y": -2095.09,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 7772.49755859375,
"y": -2095.48828125,
"x": 7772.5,
"y": -2095.49,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 7769.4423828125,
"y": -2078.3046875,
"x": 7769.44,
"y": -2078.3,
"type": "path",
"move_mode": "walk",
"action": "fight",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 7772.49755859375,
"y": -2095.48828125,
"x": 7772.5,
"y": -2095.49,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 7746.51025390625,
"y": -2250.5400390625,
"x": 7746.51,
"y": -2250.54,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 7736.1923828125,
"y": -2251.97265625,
"x": 7736.19,
"y": -2251.97,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 7697.80810546875,
"y": -2276.48828125,
"x": 7697.81,
"y": -2276.49,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "100",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 7675.67333984375,
"y": -2287.2548828125,
"x": 7675.67,
"y": -2287.25,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 7684.21484375,
"y": -2284.291015625,
"x": 7684.21,
"y": -2284.29,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 7682.6591796875,
"y": -2273.005859375,
"x": 7682.66,
"y": -2273.01,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 7652.1650390625,
"y": -2260.6337890625,
"x": 7652.17,
"y": -2260.63,
"action": "fight",
"move_mode": "run",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 8058.87744140625,
"y": -2372.5185546875,
"x": 8058.88,
"y": -2372.52,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 8018.87744140625,
"y": -2386.5185546875,
"x": 8018.88,
"y": -2386.52,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 7978.8134765625,
"y": -2400.7734375,
"x": 7978.81,
"y": -2400.77,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -39,8 +39,8 @@
},
{
"id": 4,
"x": 7964.50732421875,
"y": -2400.3759765625,
"x": 7964.51,
"y": -2400.38,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -48,8 +48,8 @@
},
{
"id": 5,
"x": 7978.8134765625,
"y": -2400.7734375,
"x": 7978.81,
"y": -2400.77,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -57,8 +57,8 @@
},
{
"id": 6,
"x": 8286.0341796875,
"y": -2521.3193359375,
"x": 8286.03,
"y": -2521.32,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -66,8 +66,8 @@
},
{
"id": 7,
"x": 8285.474609375,
"y": -2481.7392578125,
"x": 8285.47,
"y": -2481.74,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "100",
@@ -75,8 +75,8 @@
},
{
"id": 8,
"x": 8285.474609375,
"y": -2481.7392578125,
"x": 8285.47,
"y": -2481.74,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -84,8 +84,8 @@
},
{
"id": 9,
"x": 8242.6552734375,
"y": -2475.6904296875,
"x": 8242.66,
"y": -2475.69,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -93,8 +93,8 @@
},
{
"id": 10,
"x": 8245.810546875,
"y": -2480.90625,
"x": 8245.81,
"y": -2480.91,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -102,8 +102,8 @@
},
{
"id": 11,
"x": 8240.6484375,
"y": -2476.08984375,
"x": 8240.65,
"y": -2476.09,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -111,8 +111,8 @@
},
{
"id": 12,
"x": 8223.275390625,
"y": -2455.26953125,
"x": 8223.28,
"y": -2455.27,
"action": "fight",
"move_mode": "walk",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 8940.31640625,
"y": -2306.5380859375,
"x": 8940.32,
"y": -2306.54,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 8940.107421875,
"y": -2297.3115234375,
"x": 8940.11,
"y": -2297.31,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 8936.4189453125,
"y": -2297.3154296875,
"x": 8936.42,
"y": -2297.32,
"action": "",
"move_mode": "climb",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 8899.2900390625,
"y": -2275.818359375,
"x": 8899.29,
"y": -2275.82,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 8885.705078125,
"y": -2247.07421875,
"x": 8885.71,
"y": -2247.07,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 8883.8359375,
"y": -2240.376953125,
"x": 8883.84,
"y": -2240.38,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "100",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 8882.70703125,
"y": -2255.0302734375,
"x": 8882.71,
"y": -2255.03,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 8940.3427734375,
"y": -2306.4892578125,
"x": 8940.34,
"y": -2306.49,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 8947.43359375,
"y": -2307.2158203125,
"x": 8947.43,
"y": -2307.22,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 8965.61328125,
"y": -2299.90625,
"x": 8965.61,
"y": -2299.91,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 8982.072265625,
"y": -2310.1689453125,
"x": 8982.07,
"y": -2310.17,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "100",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": 8982.072265625,
"y": -2310.1689453125,
"x": 8982.07,
"y": -2310.17,
"action": "fight",
"move_mode": "fly",
"action_params": "",
@@ -118,8 +118,8 @@
},
{
"id": 13,
"x": 8994.158203125,
"y": -2319.771484375,
"x": 8994.16,
"y": -2319.77,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -127,8 +127,8 @@
},
{
"id": 14,
"x": 9008.7919921875,
"y": -2302.3349609375,
"x": 9008.79,
"y": -2302.33,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -136,8 +136,8 @@
},
{
"id": 15,
"x": 9023.783203125,
"y": -2285.689453125,
"x": 9023.78,
"y": -2285.69,
"action": "fight",
"move_mode": "run",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 9038.7568359375,
"y": -2429.3388671875,
"x": 9038.76,
"y": -2429.34,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 9001.2314453125,
"y": -2438.0576171875,
"x": 9001.23,
"y": -2438.06,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 8998.4814453125,
"y": -2413.013671875,
"x": 8998.48,
"y": -2413.01,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 9038.7158203125,
"y": -2429.3369140625,
"x": 9038.72,
"y": -2429.34,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 9068.130859375,
"y": -2443.623046875,
"x": 9068.13,
"y": -2443.62,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 9080.96875,
"y": -2456.1474609375,
"x": 9080.97,
"y": -2456.15,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 9128.625,
"y": -2482.9765625,
"x": 9128.62,
"y": -2482.98,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 9123.994140625,
"y": -2488.46484375,
"x": 9123.99,
"y": -2488.46,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 9117.533203125,
"y": -2488.0283203125,
"x": 9117.53,
"y": -2488.03,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 9147.5126953125,
"y": -2479.0078125,
"x": 9147.51,
"y": -2479.01,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 9157.5126953125,
"y": -2476.0078125,
"x": 9157.51,
"y": -2476.01,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": 9160.787109375,
"y": -2471.6123046875,
"x": 9160.79,
"y": -2471.61,
"action": "",
"move_mode": "climb",
"action_params": "",
@@ -118,8 +118,8 @@
},
{
"id": 13,
"x": 9157.3603515625,
"y": -2467.408203125,
"x": 9157.36,
"y": -2467.41,
"action": "fight",
"move_mode": "walk",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 8744.685546875,
"y": -3009.6513671875,
"x": 8744.69,
"y": -3009.65,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 8780.470703125,
"y": -2999.478515625,
"x": 8780.47,
"y": -2999.48,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 8797.6181640625,
"y": -2997.484375,
"x": 8797.62,
"y": -2997.48,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 8792.03515625,
"y": -3010.798828125,
"x": 8792.04,
"y": -3010.8,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 8291.630859375,
"y": -2922.45703125,
"x": 8291.63,
"y": -2922.46,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 8290.025390625,
"y": -2867.3876953125,
"x": 8290.03,
"y": -2867.39,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 8291.6708984375,
"y": -2796.134765625,
"x": 8291.67,
"y": -2796.13,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 8291.630859375,
"y": -2922.5390625,
"x": 8291.63,
"y": -2922.54,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 8292.755859375,
"y": -2945.7666015625,
"x": 8292.76,
"y": -2945.77,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 8322.6337890625,
"y": -3010.4794921875,
"x": 8322.63,
"y": -3010.48,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 8339.95703125,
"y": -3020.8623046875,
"x": 8339.96,
"y": -3020.86,
"type": "path",
"move_mode": "run",
"action": "fight",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 9481.6103515625,
"y": -1931.54638671875,
"x": 9481.61,
"y": -1931.55,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 9502.39453125,
"y": -1888.228515625,
"x": 9502.39,
"y": -1888.23,
"type": "path",
"move_mode": "run",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 9519.478515625,
"y": -1888.99462890625,
"x": 9519.48,
"y": -1888.99,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 9529.16015625,
"y": -1889.12548828125,
"x": 9529.16,
"y": -1889.13,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 9534.8310546875,
"y": -1912.67236328125,
"x": 9534.83,
"y": -1912.67,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 9544.244140625,
"y": -1938.328125,
"x": 9544.24,
"y": -1938.33,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 9536.830078125,
"y": -1942.93212890625,
"x": 9536.83,
"y": -1942.93,
"type": "path",
"move_mode": "walk",
"action": "fight",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 9481.6103515625,
"y": -1931.54638671875,
"x": 9481.61,
"y": -1931.55,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 9460.5537109375,
"y": -1904.05029296875,
"x": 9460.55,
"y": -1904.05,
"action": "fight",
"move_mode": "walk",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 9469.5048828125,
"y": -1670.8388671875,
"x": 9469.5,
"y": -1670.84,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 9380.4404296875,
"y": -1662.23095703125,
"x": 9380.44,
"y": -1662.23,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "5000",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 9380.4404296875,
"y": -1662.23095703125,
"x": 9380.44,
"y": -1662.23,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 9231.3720703125,
"y": -1731.716796875,
"x": 9231.37,
"y": -1731.72,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 9248.84765625,
"y": -1733.4921875,
"x": 9248.85,
"y": -1733.49,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 9257.53125,
"y": -1704.62158203125,
"x": 9257.53,
"y": -1704.62,
"action": "",
"move_mode": "climb",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 9273.5166015625,
"y": -1675.6416015625,
"x": 9273.52,
"y": -1675.64,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 9303.326171875,
"y": -1621.21533203125,
"x": 9303.33,
"y": -1621.22,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 9348.29296875,
"y": -1584.47509765625,
"x": 9348.29,
"y": -1584.48,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 9374.9326171875,
"y": -1516.35595703125,
"x": 9374.93,
"y": -1516.36,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 9364.244140625,
"y": -1497.65478515625,
"x": 9364.24,
"y": -1497.65,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": 9385.224609375,
"y": -1486.59375,
"x": 9385.22,
"y": -1486.59,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -118,8 +118,8 @@
},
{
"id": 13,
"x": 9429.9111328125,
"y": -1449.73876953125,
"x": 9429.91,
"y": -1449.74,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -127,8 +127,8 @@
},
{
"id": 14,
"x": 9490.7783203125,
"y": -1439.2392578125,
"x": 9490.78,
"y": -1439.24,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -136,8 +136,8 @@
},
{
"id": 15,
"x": 9463.2470703125,
"y": -1445.60595703125,
"x": 9463.25,
"y": -1445.61,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -145,8 +145,8 @@
},
{
"id": 16,
"x": 9464.2255859375,
"y": -1448.51806640625,
"x": 9464.23,
"y": -1448.52,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -154,8 +154,8 @@
},
{
"id": 17,
"x": 9497.3701171875,
"y": -1479.3154296875,
"x": 9497.37,
"y": -1479.32,
"action": "fight",
"move_mode": "run",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 10595.275390625,
"y": -2654.3857421875,
"x": 10595.28,
"y": -2654.39,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 10586.2607421875,
"y": -2581.1533203125,
"x": 10586.26,
"y": -2581.15,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 10544.138671875,
"y": -2558.115234375,
"x": 10544.14,
"y": -2558.12,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 10517.90625,
"y": -2563.72265625,
"x": 10517.91,
"y": -2563.72,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 10511.037109375,
"y": -2575.5390625,
"x": 10511.04,
"y": -2575.54,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 10501.8173828125,
"y": -2585.78515625,
"x": 10501.82,
"y": -2585.79,
"action": "fight",
"move_mode": "climb",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 10528.7822265625,
"y": -2549.9443359375,
"x": 10528.78,
"y": -2549.94,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 10530.0185546875,
"y": -2530.978515625,
"x": 10530.02,
"y": -2530.98,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 10612.3955078125,
"y": -2520.421875,
"x": 10612.4,
"y": -2520.42,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 10721.123046875,
"y": -2463.064453125,
"x": 10721.12,
"y": -2463.06,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "0",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 10733.181640625,
"y": -2464.7529296875,
"x": 10733.18,
"y": -2464.75,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": 10756.3701171875,
"y": -2482.1875,
"x": 10756.37,
"y": -2482.19,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -118,8 +118,8 @@
},
{
"id": 13,
"x": 10765.8515625,
"y": -2461.1259765625,
"x": 10765.85,
"y": -2461.13,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -127,8 +127,8 @@
},
{
"id": 14,
"x": 10765.3720703125,
"y": -2443.1064453125,
"x": 10765.37,
"y": -2443.11,
"action": "fight",
"move_mode": "run",
"action_params": "",

View File

@@ -13,14 +13,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 9923.6279296875,
"y": -3277.6337890625,
"x": 9923.63,
"y": -3277.63,
"action_params": ""
},
{
"id": 2,
"x": 9950.291015625,
"y": -3221.1435546875,
"x": 9950.29,
"y": -3221.14,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 9957.9921875,
"y": -3201.580078125,
"x": 9957.99,
"y": -3201.58,
"type": "path",
"move_mode": "run",
"action": "fight",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 9962.3876953125,
"y": -3212.0927734375,
"x": 9962.39,
"y": -3212.09,
"type": "path",
"move_mode": "run",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 10017.072265625,
"y": -3197.8564453125,
"x": 10017.07,
"y": -3197.86,
"type": "path",
"move_mode": "run",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 10012.02734375,
"y": -3169.2998046875,
"x": 10012.03,
"y": -3169.3,
"type": "path",
"move_mode": "run",
"action": "fight",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 10793.6572265625,
"y": -3069.4873046875,
"x": 10793.66,
"y": -3069.49,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 10821.1728515625,
"y": -3030.498046875,
"x": 10821.17,
"y": -3030.5,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 10830.595703125,
"y": -3038.57421875,
"x": 10830.6,
"y": -3038.57,
"type": "path",
"move_mode": "run",
"action": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 10832.048828125,
"y": -3052.921875,
"x": 10832.05,
"y": -3052.92,
"type": "path",
"move_mode": "run",
"action": "fight",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 8179.41552734375,
"y": -1868.11083984375,
"x": 8179.42,
"y": -1868.11,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 8196.697265625,
"y": -1845.4072265625,
"x": 8196.7,
"y": -1845.41,
"type": "path",
"move_mode": "run",
"action": "fight",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 8203.455078125,
"y": -1861.7607421875,
"x": 8203.46,
"y": -1861.76,
"type": "path",
"move_mode": "run",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 8208.87109375,
"y": -1899.19189453125,
"x": 8208.87,
"y": -1899.19,
"type": "path",
"move_mode": "run",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 8217.2568359375,
"y": -1952.04150390625,
"x": 8217.26,
"y": -1952.04,
"type": "path",
"move_mode": "run",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 8216.2021484375,
"y": -1960.95703125,
"x": 8216.2,
"y": -1960.96,
"type": "path",
"move_mode": "walk",
"action": "fight",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 8203.310546875,
"y": -1958.515625,
"x": 8203.31,
"y": -1958.52,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 8193.4755859375,
"y": -1959.42236328125,
"x": 8193.48,
"y": -1959.42,
"type": "path",
"move_mode": "climb",
"action": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 8187.71044921875,
"y": -1962.17138671875,
"x": 8187.71,
"y": -1962.17,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 8180.8359375,
"y": -1942.61474609375,
"x": 8180.84,
"y": -1942.61,
"type": "path",
"move_mode": "run",
"action": "fight",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 8185.1044921875,
"y": -1955.51171875,
"x": 8185.1,
"y": -1955.51,
"type": "path",
"move_mode": "walk",
"action": "fight",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 8286.013671875,
"y": -2521.28515625,
"x": 8286.01,
"y": -2521.29,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 8301.318359375,
"y": -2532.5732421875,
"x": 8301.32,
"y": -2532.57,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 8406.94140625,
"y": -2573.3896484375,
"x": 8406.94,
"y": -2573.39,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 8423.5458984375,
"y": -2555.9931640625,
"x": 8423.55,
"y": -2555.99,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 8442.80859375,
"y": -2530.0390625,
"x": 8442.81,
"y": -2530.04,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 8509.3388671875,
"y": -2501.822265625,
"x": 8509.34,
"y": -2501.82,
"action": "fight",
"move_mode": "run",
"action_params": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 8524.0537109375,
"y": -2482.724609375,
"x": 8524.05,
"y": -2482.72,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -73,8 +73,8 @@
},
{
"id": 8,
"x": 8532.953125,
"y": -2484.255859375,
"x": 8532.95,
"y": -2484.26,
"action": "",
"move_mode": "climb",
"action_params": "",
@@ -82,8 +82,8 @@
},
{
"id": 9,
"x": 8530.888671875,
"y": -2482.8408203125,
"x": 8530.89,
"y": -2482.84,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -91,8 +91,8 @@
},
{
"id": 10,
"x": 8534.390625,
"y": -2467.39453125,
"x": 8534.39,
"y": -2467.39,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -100,8 +100,8 @@
},
{
"id": 11,
"x": 8536.6162109375,
"y": -2460.2197265625,
"x": 8536.62,
"y": -2460.22,
"action": "",
"move_mode": "climb",
"action_params": "",
@@ -109,8 +109,8 @@
},
{
"id": 12,
"x": 8538.43359375,
"y": -2452.66015625,
"x": 8538.43,
"y": -2452.66,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -118,8 +118,8 @@
},
{
"id": 13,
"x": 8541.91015625,
"y": -2450.91796875,
"x": 8541.91,
"y": -2450.92,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -127,8 +127,8 @@
},
{
"id": 14,
"x": 8538.3974609375,
"y": -2443.6533203125,
"x": 8538.4,
"y": -2443.65,
"action": "fight",
"move_mode": "walk",
"action_params": "",
@@ -136,8 +136,8 @@
},
{
"id": 15,
"x": 8526.7119140625,
"y": -2436.615234375,
"x": 8526.71,
"y": -2436.62,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -145,8 +145,8 @@
},
{
"id": 16,
"x": 8487.154296875,
"y": -2427.62890625,
"x": 8487.15,
"y": -2427.63,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "100",
@@ -154,8 +154,8 @@
},
{
"id": 17,
"x": 8487.154296875,
"y": -2427.62890625,
"x": 8487.15,
"y": -2427.63,
"action": "fight",
"move_mode": "fly",
"action_params": "",

View File

@@ -10,8 +10,8 @@
"positions": [
{
"id": 1,
"x": 5113.599609375,
"y": 2998.223388671875,
"x": 5113.6,
"y": 2998.22,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -19,8 +19,8 @@
},
{
"id": 2,
"x": 5095.6220703125,
"y": 2981.7578125,
"x": 5095.62,
"y": 2981.76,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 5088.24609375,
"y": 2956.089599609375,
"x": 5088.25,
"y": 2956.09,
"type": "target",
"move_mode": "run",
"action": "fight",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 5110.15869140625,
"y": 2933.2607421875,
"x": 5110.16,
"y": 2933.26,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 5131.90869140625,
"y": 2897.601318359375,
"x": 5131.91,
"y": 2897.6,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 5118.822265625,
"y": 2884.780517578125,
"x": 5118.82,
"y": 2884.78,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -64,8 +64,8 @@
},
{
"id": 7,
"x": 5079.6044921875,
"y": 2865.289794921875,
"x": 5079.6,
"y": 2865.29,
"type": "target",
"move_mode": "fly",
"action": "fight",

View File

@@ -13,14 +13,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 5113.63525390625,
"y": 2998.2333984375,
"x": 5113.64,
"y": 2998.23,
"action_params": ""
},
{
"id": 2,
"x": 5087.75830078125,
"y": 3013.80322265625,
"x": 5087.76,
"y": 3013.8,
"type": "target",
"move_mode": "walk",
"action": "fight",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 5084.35888671875,
"y": 3053.546630859375,
"x": 5084.36,
"y": 3053.55,
"type": "path",
"move_mode": "run",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 5091.2138671875,
"y": 3103.682373046875,
"x": 5091.21,
"y": 3103.68,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 5083.40234375,
"y": 3145.29833984375,
"x": 5083.4,
"y": 3145.3,
"type": "target",
"move_mode": "walk",
"action": "fight",

View File

@@ -13,14 +13,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 4954.96630859375,
"y": 2760.095458984375,
"x": 4954.97,
"y": 2760.1,
"action_params": ""
},
{
"id": 2,
"x": 4908.6787109375,
"y": 2718.13232421875,
"x": 4908.68,
"y": 2718.13,
"type": "target",
"move_mode": "fly",
"action": "fight",
@@ -28,8 +28,8 @@
},
{
"id": 3,
"x": 4917.509765625,
"y": 2689.30810546875,
"x": 4917.51,
"y": 2689.31,
"type": "path",
"move_mode": "run",
"action": "",
@@ -37,8 +37,8 @@
},
{
"id": 4,
"x": 4924.38525390625,
"y": 2660.27490234375,
"x": 4924.39,
"y": 2660.27,
"type": "target",
"move_mode": "walk",
"action": "fight",
@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 4950.9228515625,
"y": 2637.503173828125,
"x": 4950.92,
"y": 2637.5,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 4995.8505859375,
"y": 2622.120849609375,
"x": 4995.85,
"y": 2622.12,
"type": "target",
"move_mode": "walk",
"action": "fight",

View File

@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 895.73486328125,
"y": 1020.9415283203125,
"x": 895.73,
"y": 1020.94,
"action_params": ""
},
{
"id": 2,
"x": 910.791259765625,
"y": 1021.9896240234375,
"x": 910.79,
"y": 1021.99,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 942.179443359375,
"y": 1004.1307373046875,
"x": 942.18,
"y": 1004.13,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 947.5006103515625,
"y": 1009.555908203125,
"x": 947.5,
"y": 1009.56,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 955.977294921875,
"y": 1024.4630126953125,
"x": 955.98,
"y": 1024.46,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 955.980712890625,
"y": 1048.01123046875,
"x": 955.98,
"y": 1048.01,
"type": "path",
"move_mode": "walk",
"action": "fight",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 887.630615234375,
"y": 762.6322021484375,
"x": 887.63,
"y": 762.63,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 922.4901123046875,
"y": 740.671630859375,
"x": 922.49,
"y": 740.67,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 925.60693359375,
"y": 736.6905517578125,
"x": 925.61,
"y": 736.69,
"type": "path",
"move_mode": "walk",
"action": "fight",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 663.80078125,
"y": 710.26513671875,
"x": 663.8,
"y": 710.27,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 668.012451171875,
"y": 706.653076171875,
"x": 668.01,
"y": 706.65,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 719.7857666015625,
"y": 664.92724609375,
"x": 719.79,
"y": 664.93,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 725.0721435546875,
"y": 659.7349853515625,
"x": 725.07,
"y": 659.73,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 730.550537109375,
"y": 657.08154296875,
"x": 730.55,
"y": 657.08,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 734.2398681640625,
"y": 647.3316650390625,
"x": 734.24,
"y": 647.33,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 733.7135009765625,
"y": 640.114013671875,
"x": 733.71,
"y": 640.11,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 736.0845947265625,
"y": 630.7454833984375,
"x": 736.08,
"y": 630.75,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 737.166748046875,
"y": 622.3193359375,
"x": 737.17,
"y": 622.32,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 752.341552734375,
"y": 601.572509765625,
"x": 752.34,
"y": 601.57,
"type": "path",
"move_mode": "walk",
"action": "fight",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 551.1051025390625,
"y": 950.868896484375,
"x": 551.11,
"y": 950.87,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 562.0255126953125,
"y": 940.1624755859375,
"x": 562.03,
"y": 940.16,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 562.8629150390625,
"y": 915.8262939453125,
"x": 562.86,
"y": 915.83,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 560.1602783203125,
"y": 891.76708984375,
"x": 560.16,
"y": 891.77,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 568.7125244140625,
"y": 864.214111328125,
"x": 568.71,
"y": 864.21,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 586.8402099609375,
"y": 851.52978515625,
"x": 586.84,
"y": 851.53,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 609.10302734375,
"y": 827.7730712890625,
"x": 609.1,
"y": 827.77,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 628.9404296875,
"y": 811.04345703125,
"x": 628.94,
"y": 811.04,
"type": "path",
"move_mode": "walk",
"action": "fight",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 524.7542724609375,
"y": 525.421142578125,
"x": 524.75,
"y": 525.42,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 531.926025390625,
"y": 506.3333740234375,
"x": 531.93,
"y": 506.33,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 557.15185546875,
"y": 477.6175537109375,
"x": 557.15,
"y": 477.62,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 588.577880859375,
"y": 418.9178466796875,
"x": 588.58,
"y": 418.92,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "500",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 593.7021484375,
"y": 409.578369140625,
"x": 593.7,
"y": 409.58,
"action": "fight",
"move_mode": "walk",
"action_params": "",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 812.5894775390625,
"y": 339.4937744140625,
"x": 812.59,
"y": 339.49,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 794.73876953125,
"y": 319.2021484375,
"x": 794.74,
"y": 319.2,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 784.38623046875,
"y": 298.8338623046875,
"x": 784.39,
"y": 298.83,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 737.075439453125,
"y": 305.3570556640625,
"x": 737.08,
"y": 305.36,
"action": "stop_flying",
"move_mode": "walk",
"action_params": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 733.0780029296875,
"y": 309.7904052734375,
"x": 733.08,
"y": 309.79,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 733.283935546875,
"y": 344.1822509765625,
"x": 733.28,
"y": 344.18,
"action": "fight",
"move_mode": "walk",
"action_params": "",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 596.8311767578125,
"y": 211.7467041015625,
"x": 596.83,
"y": 211.75,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 602.59375,
"y": 191.2071533203125,
"x": 602.59,
"y": 191.21,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 602.914306640625,
"y": 172.0146484375,
"x": 602.91,
"y": 172.01,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 612.4892578125,
"y": 156.341064453125,
"x": 612.49,
"y": 156.34,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 622.6923828125,
"y": 145.3453369140625,
"x": 622.69,
"y": 145.35,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 639.0474853515625,
"y": 138.978271484375,
"x": 639.05,
"y": 138.98,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "2000",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 624.6766357421875,
"y": 141.8394775390625,
"x": 624.68,
"y": 141.84,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "4000",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 608.04248046875,
"y": 143.6336669921875,
"x": 608.04,
"y": 143.63,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "3000",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 612.270263671875,
"y": 127.2874755859375,
"x": 612.27,
"y": 127.29,
"action": "fight",
"move_mode": "walk",
"action_params": "",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 357.88916015625,
"y": 176.5869140625,
"x": 357.89,
"y": 176.59,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 346.53515625,
"y": 144.287109375,
"x": 346.54,
"y": 144.29,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 344.8018798828125,
"y": 125.0423583984375,
"x": 344.8,
"y": 125.04,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 334.1837158203125,
"y": 115.3232421875,
"x": 334.18,
"y": 115.32,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(6.0)",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 334.1837158203125,
"y": 115.3232421875,
"x": 334.18,
"y": 115.32,
"action": "mining",
"move_mode": "walk",
"action_params": "",
@@ -57,8 +57,8 @@
},
{
"id": 6,
"x": 327.1080322265625,
"y": 118.943603515625,
"x": 327.11,
"y": 118.94,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -66,8 +66,8 @@
},
{
"id": 7,
"x": 319.552978515625,
"y": 131.42578125,
"x": 319.55,
"y": 131.43,
"action": "fight",
"move_mode": "walk",
"action_params": "",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 812.5970458984375,
"y": 339.496826171875,
"x": 812.6,
"y": 339.5,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 834.82568359375,
"y": 344.271728515625,
"x": 834.83,
"y": 344.27,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 856.551025390625,
"y": 366.3834228515625,
"x": 856.55,
"y": 366.38,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 869.825927734375,
"y": 370.328369140625,
"x": 869.83,
"y": 370.33,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 905.3826904296875,
"y": 360.0777587890625,
"x": 905.38,
"y": 360.08,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 911.972412109375,
"y": 361.641357421875,
"x": 911.97,
"y": 361.64,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 920.092041015625,
"y": 361.8865966796875,
"x": 920.09,
"y": 361.89,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 953.7742919921875,
"y": 359.01123046875,
"x": 953.77,
"y": 359.01,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 985.8465576171875,
"y": 380.0858154296875,
"x": 985.85,
"y": 380.09,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 1020.283935546875,
"y": 381.5936279296875,
"x": 1020.28,
"y": 381.59,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 1045.379638671875,
"y": 383.7772216796875,
"x": 1045.38,
"y": 383.78,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 1061.599853515625,
"y": 383.8548583984375,
"x": 1061.6,
"y": 383.85,
"type": "path",
"move_mode": "walk",
"action": "fight",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 551.081787109375,
"y": 950.883056640625,
"x": 551.08,
"y": 950.88,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 570.292236328125,
"y": 930.6453857421875,
"x": 570.29,
"y": 930.65,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "3000",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 565.2506103515625,
"y": 915.0145263671875,
"x": 565.25,
"y": 915.01,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 558.716796875,
"y": 890.945556640625,
"x": 558.72,
"y": 890.95,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 558.5594482421875,
"y": 870.1630859375,
"x": 558.56,
"y": 870.16,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 583.123291015625,
"y": 851.1376953125,
"x": 583.12,
"y": 851.14,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 585.5401611328125,
"y": 849.5316162109375,
"x": 585.54,
"y": 849.53,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 586.36474609375,
"y": 803.1129150390625,
"x": 586.36,
"y": 803.11,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 599.14404296875,
"y": 774.7320556640625,
"x": 599.14,
"y": 774.73,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -92,7 +92,7 @@
},
{
"id": 10,
"x": 624,
"x": 624.0,
"y": 750.75,
"action": "",
"move_mode": "dash",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 597.81982421875,
"y": 726.1796875,
"x": 597.82,
"y": 726.18,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 593.878173828125,
"y": 725.7977294921875,
"x": 593.88,
"y": 725.8,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 589.906494140625,
"y": 722.939697265625,
"x": 589.91,
"y": 722.94,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -146,8 +146,8 @@
},
{
"id": 16,
"x": 591.1748046875,
"y": 718.3514404296875,
"x": 591.17,
"y": 718.35,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -155,8 +155,8 @@
},
{
"id": 17,
"x": 587.3043212890625,
"y": 718.840576171875,
"x": 587.3,
"y": 718.84,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -164,8 +164,8 @@
},
{
"id": 18,
"x": 586.18701171875,
"y": 716.7081298828125,
"x": 586.19,
"y": 716.71,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -173,8 +173,8 @@
},
{
"id": 19,
"x": 591.069580078125,
"y": 711.51513671875,
"x": 591.07,
"y": 711.52,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -182,8 +182,8 @@
},
{
"id": 20,
"x": 600.5076904296875,
"y": 713.2886962890625,
"x": 600.51,
"y": 713.29,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -191,8 +191,8 @@
},
{
"id": 21,
"x": 604.461181640625,
"y": 712.9984130859375,
"x": 604.46,
"y": 713.0,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -200,8 +200,8 @@
},
{
"id": 22,
"x": 602.958251953125,
"y": 716.0755615234375,
"x": 602.96,
"y": 716.08,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -209,8 +209,8 @@
},
{
"id": 23,
"x": 603.27685546875,
"y": 715.966064453125,
"x": 603.28,
"y": 715.97,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -218,8 +218,8 @@
},
{
"id": 24,
"x": 603.670166015625,
"y": 713.773193359375,
"x": 603.67,
"y": 713.77,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -227,8 +227,8 @@
},
{
"id": 25,
"x": 603.670166015625,
"y": 713.773193359375,
"x": 603.67,
"y": 713.77,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -236,8 +236,8 @@
},
{
"id": 26,
"x": 601.7076416015625,
"y": 717.146484375,
"x": 601.71,
"y": 717.15,
"type": "path",
"move_mode": "walk",
"action": "combat_script",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 278.46435546875,
"y": 767.306640625,
"x": 278.46,
"y": 767.31,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 329.8353271484375,
"y": 764.86962890625,
"x": 329.84,
"y": 764.87,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 366.2186279296875,
"y": 718.373779296875,
"x": 366.22,
"y": 718.37,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 389.783935546875,
"y": 720.2431640625,
"x": 389.78,
"y": 720.24,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 438.7574074074073,
"y": 753.125,
"x": 438.76,
"y": 753.12,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 445.8137860082304,
"y": 760.15625,
"x": 445.81,
"y": 760.16,
"action": "combat_script",
"move_mode": "fly",
"action_params": "keypress(VK_SPACE),wait(1.8),keypress(VK_SPACE)",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 426.8262939453125,
"y": 750.2633056640625,
"x": 426.83,
"y": 750.26,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 408.4971923828125,
"y": 734.116455078125,
"x": 408.5,
"y": 734.12,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 380.59912109375,
"y": 702.277587890625,
"x": 380.6,
"y": 702.28,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 390.9984130859375,
"y": 693.4398193359375,
"x": 391.0,
"y": 693.44,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 386.9013671875,
"y": 710.675537109375,
"x": 386.9,
"y": 710.68,
"type": "path",
"move_mode": "dash",
"action": "fight",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 360.255859375,
"y": 693.1456298828125,
"x": 360.26,
"y": 693.15,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 363.8828125,
"y": 693.031005859375,
"x": 363.88,
"y": 693.03,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 379.1131591796875,
"y": 699.195556640625,
"x": 379.11,
"y": 699.2,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 420.1041259765625,
"y": 747.4132080078125,
"x": 420.1,
"y": 747.41,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -146,8 +146,8 @@
},
{
"id": 16,
"x": 447.46875,
"y": 740.84375,
"x": 447.47,
"y": 740.84,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -155,8 +155,8 @@
},
{
"id": 17,
"x": 488.2861328125,
"y": 761.8082275390625,
"x": 488.29,
"y": 761.81,
"action": "fight",
"move_mode": "dash",
"action_params": "",
@@ -164,8 +164,8 @@
},
{
"id": 18,
"x": 502.8555908203125,
"y": 764.5521240234375,
"x": 502.86,
"y": 764.55,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -173,8 +173,8 @@
},
{
"id": 19,
"x": 503.5628662109375,
"y": 780.099609375,
"x": 503.56,
"y": 780.1,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -182,8 +182,8 @@
},
{
"id": 20,
"x": 507.451171875,
"y": 781.3502197265625,
"x": 507.45,
"y": 781.35,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -191,8 +191,8 @@
},
{
"id": 21,
"x": 508.2421875,
"y": 784.16162109375,
"x": 508.24,
"y": 784.16,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -200,8 +200,8 @@
},
{
"id": 22,
"x": 507.025390625,
"y": 786.919677734375,
"x": 507.03,
"y": 786.92,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -209,8 +209,8 @@
},
{
"id": 23,
"x": 507.025390625,
"y": 786.919677734375,
"x": 507.03,
"y": 786.92,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(1)",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "地下水泽-西南(有战斗)-5",
"name": "03-地下水泽-西南(有战斗)-5",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 663.7847900390625,
"y": 710.3050537109375,
"x": 663.78,
"y": 710.31,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,7 +20,7 @@
},
{
"id": 2,
"x": 678.9921810699589,
"x": 678.99,
"y": 668.75,
"action": "",
"move_mode": "fly",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 681.93310546875,
"y": 666.352783203125,
"x": 681.93,
"y": 666.35,
"action": "",
"move_mode": "climb",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 668.2269287109375,
"y": 638.1168212890625,
"x": 668.23,
"y": 638.12,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 669.7730712890625,
"y": 624.418701171875,
"x": 669.77,
"y": 624.42,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 665.6649169921875,
"y": 615.3763427734375,
"x": 665.66,
"y": 615.38,
"action": "fight",
"move_mode": "dash",
"action_params": "",
@@ -65,7 +65,7 @@
},
{
"id": 7,
"x": 666.4992283950617,
"x": 666.5,
"y": 614.75,
"action": "",
"move_mode": "walk",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 665.6649169921875,
"y": 615.3763427734375,
"x": 665.66,
"y": 615.38,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 656.4813232421875,
"y": 602.655517578125,
"x": 656.48,
"y": 602.66,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 658.7716064453125,
"y": 598.6805419921875,
"x": 658.77,
"y": 598.68,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 663.7584228515625,
"y": 600.968994140625,
"x": 663.76,
"y": 600.97,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 659.966796875,
"y": 609.928955078125,
"x": 659.97,
"y": 609.93,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 676.5927734375,
"y": 622.3553466796875,
"x": 676.59,
"y": 622.36,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 688.53125,
"y": 612.5625,
"x": 688.53,
"y": 612.56,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 727.9757080078125,
"y": 588.515380859375,
"x": 727.98,
"y": 588.52,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -147,8 +147,8 @@
},
{
"id": 16,
"x": 718.52001953125,
"y": 557.6982421875,
"x": 718.52,
"y": 557.7,
"action": "",
"move_mode": "swim",
"action_params": "",
@@ -156,8 +156,8 @@
},
{
"id": 17,
"x": 739.78125,
"y": 518.78125,
"x": 739.78,
"y": 518.78,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -165,8 +165,8 @@
},
{
"id": 18,
"x": 737.78125,
"y": 509.65625,
"x": 737.78,
"y": 509.66,
"action": "combat_script",
"move_mode": "dash",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -175,8 +175,8 @@
},
{
"id": 19,
"x": 737.65625,
"y": 502.375,
"x": 737.66,
"y": 502.38,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -185,8 +185,8 @@
},
{
"id": 20,
"x": 737.65625,
"y": 502.375,
"x": 737.66,
"y": 502.38,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(1)",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 887.6220703125,
"y": 762.6287841796875,
"x": 887.62,
"y": 762.63,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 971.0828857421875,
"y": 703.1646728515625,
"x": 971.08,
"y": 703.16,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 1041.13818359375,
"y": 699.906005859375,
"x": 1041.14,
"y": 699.91,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 1045.46826171875,
"y": 698.0748291015625,
"x": 1045.47,
"y": 698.07,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 1047.280029296875,
"y": 702.00390625,
"x": 1047.28,
"y": 702.0,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 1056.7867431640625,
"y": 699.55419921875,
"x": 1056.79,
"y": 699.55,
"action": "combat_script",
"move_mode": "jump",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 1055.20849609375,
"y": 696.7991943359375,
"x": 1055.21,
"y": 696.8,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 887.6368408203125,
"y": 762.6640625,
"x": 887.64,
"y": 762.66,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 959.60107421875,
"y": 779.506591796875,
"x": 959.6,
"y": 779.51,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 988.1875,
"y": 782.125,
"x": 988.19,
"y": 782.12,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 1006.534912109375,
"y": 783.28759765625,
"x": 1006.53,
"y": 783.29,
"action": "combat_script",
"move_mode": "walk",
"action_params": "s(0.2),dash,wait(0.2),dash",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 995.9072265625,
"y": 782.4613037109375,
"x": 995.91,
"y": 782.46,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 1015.4764404296875,
"y": 783.7435302734375,
"x": 1015.48,
"y": 783.74,
"action": "combat_script",
"move_mode": "dash",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 1021.6258544921875,
"y": 783.7047119140625,
"x": 1021.63,
"y": 783.7,
"action": "combat_script",
"move_mode": "dash",
"action_params": "s(0.2),dash",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 1014.8978271484375,
"y": 784.80908203125,
"x": 1014.9,
"y": 784.81,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -146,8 +146,8 @@
},
{
"id": 16,
"x": 1023.21875,
"y": 787.96875,
"x": 1023.22,
"y": 787.97,
"action": "combat_script",
"move_mode": "walk",
"action_params": "s(0.2),dash,wait(0.2),dash",
@@ -155,8 +155,8 @@
},
{
"id": 17,
"x": 1016.083740234375,
"y": 784.2821044921875,
"x": 1016.08,
"y": 784.28,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -164,8 +164,8 @@
},
{
"id": 18,
"x": 1029.34375,
"y": 784.0625,
"x": 1029.34,
"y": 784.06,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -173,8 +173,8 @@
},
{
"id": 19,
"x": 1025.6905517578125,
"y": 786.046142578125,
"x": 1025.69,
"y": 786.05,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -182,8 +182,8 @@
},
{
"id": 20,
"x": 1022.3040771484375,
"y": 790.5615234375,
"x": 1022.3,
"y": 790.56,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -191,8 +191,8 @@
},
{
"id": 21,
"x": 1017.4375,
"y": 787.71875,
"x": 1017.44,
"y": 787.72,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(1)",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "巨渊主矿区-6",
"name": "05-巨渊主矿区-6",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 338.72509765625,
"y": 975.0701904296875,
"x": 338.73,
"y": 975.07,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 324.5543212890625,
"y": 954.128662109375,
"x": 324.55,
"y": 954.13,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 337.5150146484375,
"y": 947.956787109375,
"x": 337.52,
"y": 947.96,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 337.2462158203125,
"y": 929.751708984375,
"x": 337.25,
"y": 929.75,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "2000",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 338.5504150390625,
"y": 926.00146484375,
"x": 338.55,
"y": 926.0,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 329.30029296875,
"y": 921.351806640625,
"x": 329.3,
"y": 921.35,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 327.179931640625,
"y": 933.8004150390625,
"x": 327.18,
"y": 933.8,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 337.1875,
"y": 930.1875,
"x": 337.19,
"y": 930.19,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 327.9866943359375,
"y": 852.5421142578125,
"x": 327.99,
"y": 852.54,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 286.587646484375,
"y": 873.9178466796875,
"x": 286.59,
"y": 873.92,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 286.5517578125,
"y": 883.8646240234375,
"x": 286.55,
"y": 883.86,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 277.2459716796875,
"y": 891.7413330078125,
"x": 277.25,
"y": 891.74,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 276.013427734375,
"y": 896.428466796875,
"x": 276.01,
"y": 896.43,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 278.0625,
"y": 891.8125,
"x": 278.06,
"y": 891.81,
"action": "",
"move_mode": "walk",
"action_params": "",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "巨渊主矿区-东-3",
"name": "06-巨渊主矿区-东-3",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 278.4849853515625,
"y": 767.3035888671875,
"x": 278.48,
"y": 767.3,
"action_params": ""
},
{
"id": 2,
"x": 274.5660400390625,
"y": 768.6920166015625,
"x": 274.57,
"y": 768.69,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 183.49951171875,
"y": 794.9732666015625,
"x": 183.5,
"y": 794.97,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 178.3387451171875,
"y": 799.81787109375,
"x": 178.34,
"y": 799.82,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 177.6036376953125,
"y": 793.8570556640625,
"x": 177.6,
"y": 793.86,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -57,8 +57,8 @@
},
{
"id": 6,
"x": 178.62582304526745,
"y": 793,
"x": 178.63,
"y": 793.0,
"type": "target",
"move_mode": "walk",
"action": "combat_script",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 338.7540283203125,
"y": 975.020263671875,
"x": 338.75,
"y": 975.02,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 341.7359619140625,
"y": 982.7069091796875,
"x": 341.74,
"y": 982.71,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 357.6270751953125,
"y": 984.592041015625,
"x": 357.63,
"y": 984.59,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 379.9227294921875,
"y": 1007.063232421875,
"x": 379.92,
"y": 1007.06,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 373.9776611328125,
"y": 1010.2679443359375,
"x": 373.98,
"y": 1010.27,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 375.944580078125,
"y": 1015.533935546875,
"x": 375.94,
"y": 1015.53,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -66,7 +66,7 @@
{
"id": 7,
"x": 374.5,
"y": 1013.71875,
"y": 1013.72,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "1500",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 371.536376953125,
"y": 1022.184814453125,
"x": 371.54,
"y": 1022.18,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 369.84375,
"y": 1029.28125,
"x": 369.84,
"y": 1029.28,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 372.9375,
"y": 1029.34375,
"x": 372.94,
"y": 1029.34,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 374.8125,
"y": 1025.65625,
"x": 374.81,
"y": 1025.66,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 374.74989711934154,
"y": 1025.875,
"x": 374.75,
"y": 1025.88,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 374.8125,
"y": 1025.65625,
"x": 374.81,
"y": 1025.66,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "临时主矿道-东-2",
"name": "08-临时主矿道-东-2",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 551.0811767578125,
"y": 950.800048828125,
"x": 551.08,
"y": 950.8,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,7 +20,7 @@
},
{
"id": 2,
"x": 541.7493827160495,
"x": 541.75,
"y": 955.5,
"action": "",
"move_mode": "dash",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 534.7733154296875,
"y": 977.447509765625,
"x": 534.77,
"y": 977.45,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 522.482666015625,
"y": 1007.012451171875,
"x": 522.48,
"y": 1007.01,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 466.651611328125,
"y": 1008.912353515625,
"x": 466.65,
"y": 1008.91,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "3200",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 466.4375,
"y": 1004.78125,
"x": 466.44,
"y": 1004.78,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 470.03125,
"y": 1007.1875,
"x": 470.03,
"y": 1007.19,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -75,8 +75,8 @@
},
{
"id": 8,
"x": 470.03125,
"y": 1007.1875,
"x": 470.03,
"y": 1007.19,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(1)",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "临时主矿道-东北(有战斗)-3",
"name": "09-临时主矿道-东北(有战斗)-3",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -14,14 +14,14 @@
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 663.8262939453125,
"y": 1058.856201171875,
"x": 663.83,
"y": 1058.86,
"action_params": ""
},
{
"id": 2,
"x": 585.3330078125,
"y": 1098.39990234375,
"x": 585.33,
"y": 1098.4,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 582.8162841796875,
"y": 1102.31494140625,
"x": 582.82,
"y": 1102.31,
"type": "path",
"move_mode": "jump",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 555.3681640625,
"y": 1129.3397216796875,
"x": 555.37,
"y": 1129.34,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 548.64501953125,
"y": 1129.7091064453125,
"x": 548.65,
"y": 1129.71,
"type": "path",
"move_mode": "walk",
"action": "fight",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 563.0115966796875,
"y": 1133.6572265625,
"x": 563.01,
"y": 1133.66,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 566.8194580078125,
"y": 1136.014892578125,
"x": 566.82,
"y": 1136.01,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 558.2158203125,
"y": 1138.6767578125,
"x": 558.22,
"y": 1138.68,
"type": "target",
"move_mode": "walk",
"action": "combat_script",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 663.8173828125,
"y": 1058.861572265625,
"x": 663.82,
"y": 1058.86,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 662.4761962890625,
"y": 1053.673583984375,
"x": 662.48,
"y": 1053.67,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 671.03125,
"y": 979.40625,
"x": 671.03,
"y": 979.41,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "2500",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 667.83984375,
"y": 985.0836181640625,
"x": 667.84,
"y": 985.08,
"action": "combat_script",
"move_mode": "dash",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 677.830810546875,
"y": 959.0125732421875,
"x": 677.83,
"y": 959.01,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 664.841064453125,
"y": 954.9117431640625,
"x": 664.84,
"y": 954.91,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2),wait(0.7)",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 551.0963134765625,
"y": 950.8411865234375,
"x": 551.1,
"y": 950.84,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 542.567138671875,
"y": 955.135986328125,
"x": 542.57,
"y": 955.14,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 534.7332763671875,
"y": 973.47998046875,
"x": 534.73,
"y": 973.48,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -38,7 +38,7 @@
},
{
"id": 4,
"x": 523.7494001356215,
"x": 523.75,
"y": 970.5,
"action": "",
"move_mode": "dash",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 539.7022705078125,
"y": 935.744873046875,
"x": 539.7,
"y": 935.74,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 542.0313720703125,
"y": 935.0921630859375,
"x": 542.03,
"y": 935.09,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 547.143798828125,
"y": 925.8857421875,
"x": 547.14,
"y": 925.89,
"action": "",
"move_mode": "jump",
"action_params": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 554.9193115234375,
"y": 921.1156005859375,
"x": 554.92,
"y": 921.12,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 598.6118312757201,
"y": 923.875,
"x": 598.61,
"y": 923.88,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 655.3125,
"y": 926.875,
"x": 655.31,
"y": 926.88,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 653.926025390625,
"y": 920.21630859375,
"x": 653.93,
"y": 920.22,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 680.9993312757201,
"y": 905.6875,
"x": 681.0,
"y": 905.69,
"action": "combat_script",
"move_mode": "dash",
"action_params": "keydown(w),wait(0.2),dash,wait(0.3),dash,wait(0.3),dash",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 695.87548828125,
"y": 900.3223876953125,
"x": 695.88,
"y": 900.32,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 695.6941358024692,
"y": 896.875,
"x": 695.69,
"y": 896.88,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 708.7144775390625,
"y": 891.8040771484375,
"x": 708.71,
"y": 891.8,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -146,8 +146,8 @@
},
{
"id": 16,
"x": 716.549560546875,
"y": 885.34130859375,
"x": 716.55,
"y": 885.34,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -155,8 +155,8 @@
},
{
"id": 17,
"x": 726.919189453125,
"y": 863.5360107421875,
"x": 726.92,
"y": 863.54,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -164,8 +164,8 @@
},
{
"id": 18,
"x": 729.705078125,
"y": 858.497802734375,
"x": 729.71,
"y": 858.5,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -173,8 +173,8 @@
},
{
"id": 19,
"x": 741.1318359375,
"y": 856.5882568359375,
"x": 741.13,
"y": 856.59,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -182,8 +182,8 @@
},
{
"id": 20,
"x": 736.7713623046875,
"y": 857.0379638671875,
"x": 736.77,
"y": 857.04,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -191,8 +191,8 @@
},
{
"id": 21,
"x": 745.3641357421875,
"y": 860.71728515625,
"x": 745.36,
"y": 860.72,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -200,8 +200,8 @@
},
{
"id": 22,
"x": 738.375,
"y": 864.6875,
"x": 738.38,
"y": 864.69,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -209,8 +209,8 @@
},
{
"id": 23,
"x": 738.3194580078125,
"y": 858.676513671875,
"x": 738.32,
"y": 858.68,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -218,8 +218,8 @@
},
{
"id": 24,
"x": 738.3194580078125,
"y": 858.676513671875,
"x": 738.32,
"y": 858.68,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(1)",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "临时主矿道-西-2",
"name": "12-临时主矿道-西)-2",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 895.555908203125,
"y": 1020.9307861328125,
"x": 895.56,
"y": 1020.93,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 906.0738525390625,
"y": 1018.5352783203125,
"x": 906.07,
"y": 1018.54,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 939.649658203125,
"y": 1002.847412109375,
"x": 939.65,
"y": 1002.85,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "2000",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 951.9869384765625,
"y": 1016.8321533203125,
"x": 951.99,
"y": 1016.83,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 956.89013671875,
"y": 1030.463623046875,
"x": 956.89,
"y": 1030.46,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 948.4720458984375,
"y": 1052.234130859375,
"x": 948.47,
"y": 1052.23,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 941.4669189453125,
"y": 1056.030517578125,
"x": 941.47,
"y": 1056.03,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 930.565185546875,
"y": 1056.95458984375,
"x": 930.57,
"y": 1056.95,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 930.565185546875,
"y": 1056.95458984375,
"x": 930.57,
"y": 1056.95,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 926.7509765625,
"y": 1063.4080810546875,
"x": 926.75,
"y": 1063.41,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 922.6490478515625,
"y": 1066.882080078125,
"x": 922.65,
"y": 1066.88,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "崎岖石厅-南2-2",
"name": "13-崎岖石厅-南2(有战斗)-2",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 357.8870849609375,
"y": 176.5858154296875,
"x": 357.89,
"y": 176.59,
"type": "teleport",
"move_mode": "walk",
"action": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 357.932373046875,
"y": 176.580322265625,
"x": 357.93,
"y": 176.58,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 379.846923828125,
"y": 161.783203125,
"x": 379.85,
"y": 161.78,
"type": "path",
"move_mode": "fly",
"action": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 426.3741455078125,
"y": 130.1922607421875,
"x": 426.37,
"y": 130.19,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 424.7874755859375,
"y": 137.19873046875,
"x": 424.79,
"y": 137.2,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
@@ -57,8 +57,8 @@
},
{
"id": 6,
"x": 424.7874755859375,
"y": 137.19873046875,
"x": 424.79,
"y": 137.2,
"type": "path",
"move_mode": "walk",
"action": "fight",
@@ -66,8 +66,8 @@
},
{
"id": 7,
"x": 421.0323486328125,
"y": 126.2578125,
"x": 421.03,
"y": 126.26,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
@@ -75,8 +75,8 @@
},
{
"id": 8,
"x": 425.1754150390625,
"y": 121.6451416015625,
"x": 425.18,
"y": 121.65,
"type": "target",
"move_mode": "walk",
"action": "combat_script",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "崎岖石厅-南-2",
"name": "14-崎岖石厅-南-2",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 357.887939453125,
"y": 176.586181640625,
"x": 357.89,
"y": 176.59,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 356.853759765625,
"y": 181.706787109375,
"x": 356.85,
"y": 181.71,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 356.4693603515625,
"y": 194.09130859375,
"x": 356.47,
"y": 194.09,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 360.3709716796875,
"y": 193.9537353515625,
"x": 360.37,
"y": 193.95,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "2000",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 351.5157470703125,
"y": 188.1998291015625,
"x": 351.52,
"y": 188.2,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 349.578369140625,
"y": 187.8953857421875,
"x": 349.58,
"y": 187.9,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 350.27294921875,
"y": 184.93603515625,
"x": 350.27,
"y": 184.94,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -75,8 +75,8 @@
},
{
"id": 8,
"x": 350.27294921875,
"y": 184.93603515625,
"x": 350.27,
"y": 184.94,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(2)",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "崎岖石厅-南3-2",
"name": "15-崎岖石厅-南3-2",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 396.115234375,
"y": 401.6248779296875,
"x": 396.12,
"y": 401.62,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 400.74560546875,
"y": 396.02783203125,
"x": 400.75,
"y": 396.03,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 405.494384765625,
"y": 382.978515625,
"x": 405.49,
"y": 382.98,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 404.164306640625,
"y": 368.3017578125,
"x": 404.16,
"y": 368.3,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 359.8363037109375,
"y": 341.358154296875,
"x": 359.84,
"y": 341.36,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 343.8271484375,
"y": 316.574951171875,
"x": 343.83,
"y": 316.57,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 346.914306640625,
"y": 278.666015625,
"x": 346.91,
"y": 278.67,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 344.045166015625,
"y": 266.98486328125,
"x": 344.05,
"y": 266.98,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "500",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 338.2418212890625,
"y": 271.3902587890625,
"x": 338.24,
"y": 271.39,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 335.93603515625,
"y": 269.124755859375,
"x": 335.94,
"y": 269.12,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "无名遗迹-北-4",
"name": "16-无名遗迹-北-4",
"type": "collect",
"author": "火山",
"version": "1.0",
@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 524.7374267578125,
"y": 525.4324951171875,
"x": 524.74,
"y": 525.43,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 513.892578125,
"y": 526.8309326171875,
"x": 513.89,
"y": 526.83,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 509.3673095703125,
"y": 532.3369140625,
"x": 509.37,
"y": 532.34,
"action": "combat_script",
"move_mode": "fly",
"action_params": "wait(1),keypress(VK_SPACE),wait(2.5),keypress(VK_SPACE)",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 510.564697265625,
"y": 558.56298828125,
"x": 510.56,
"y": 558.56,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "500",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 510.0284423828125,
"y": 551.406005859375,
"x": 510.03,
"y": 551.41,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 506.73486328125,
"y": 562.7216796875,
"x": 506.73,
"y": 562.72,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 511.1356201171875,
"y": 566.8154296875,
"x": 511.14,
"y": 566.82,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 517.2369384765625,
"y": 562.0445556640625,
"x": 517.24,
"y": 562.04,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 518.5322265625,
"y": 562.776123046875,
"x": 518.53,
"y": 562.78,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -93,8 +93,8 @@
},
{
"id": 10,
"x": 518.5322265625,
"y": 562.776123046875,
"x": 518.53,
"y": 562.78,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(2)",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 524.7489013671875,
"y": 525.476806640625,
"x": 524.75,
"y": 525.48,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 532.330810546875,
"y": 506.9713134765625,
"x": 532.33,
"y": 506.97,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 579.731689453125,
"y": 367.9725341796875,
"x": 579.73,
"y": 367.97,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "1000",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 584.5770263671875,
"y": 351.67236328125,
"x": 584.58,
"y": 351.67,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 585.0703125,
"y": 349.81494140625,
"x": 585.07,
"y": 349.81,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 579.875,
"y": 349.53125,
"x": 579.88,
"y": 349.53,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 583.190673828125,
"y": 356.52685546875,
"x": 583.19,
"y": 356.53,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 644.25634765625,
"y": 381.5135498046875,
"x": 644.26,
"y": 381.51,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 647.8477783203125,
"y": 385.680419921875,
"x": 647.85,
"y": 385.68,
"type": "path",
"move_mode": "walk",
"action": "fight",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 653.6697998046875,
"y": 391.1484375,
"x": 653.67,
"y": 391.15,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 649.325927734375,
"y": 401.109375,
"x": 649.33,
"y": 401.11,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 655.0245361328125,
"y": 421.3682861328125,
"x": 655.02,
"y": 421.37,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 670.232177734375,
"y": 424.7803955078125,
"x": 670.23,
"y": 424.78,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 669.838134765625,
"y": 440.58984375,
"x": 669.84,
"y": 440.59,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 666.57763671875,
"y": 441.5029296875,
"x": 666.58,
"y": 441.5,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -146,8 +146,8 @@
},
{
"id": 16,
"x": 666.9632568359375,
"y": 441.868896484375,
"x": 666.96,
"y": 441.87,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -155,8 +155,8 @@
},
{
"id": 17,
"x": 666.5986328125,
"y": 436.9613037109375,
"x": 666.6,
"y": 436.96,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -164,8 +164,8 @@
},
{
"id": 18,
"x": 666.7986328125,
"y": 436.9613037109375,
"x": 666.8,
"y": 436.96,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(2)",

View File

@@ -11,8 +11,8 @@
"positions": [
{
"id": 1,
"x": 812.6195068359375,
"y": 339.5067138671875,
"x": 812.62,
"y": 339.51,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -20,8 +20,8 @@
},
{
"id": 2,
"x": 819.8125,
"y": 378.5625,
"x": 819.81,
"y": 378.56,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -29,8 +29,8 @@
},
{
"id": 3,
"x": 815.4786376953125,
"y": 393.5819091796875,
"x": 815.48,
"y": 393.58,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -38,8 +38,8 @@
},
{
"id": 4,
"x": 818.1171875,
"y": 393.3316650390625,
"x": 818.12,
"y": 393.33,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -47,8 +47,8 @@
},
{
"id": 5,
"x": 814.655517578125,
"y": 399.3074951171875,
"x": 814.66,
"y": 399.31,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -56,8 +56,8 @@
},
{
"id": 6,
"x": 814.655517578125,
"y": 399.3074951171875,
"x": 814.66,
"y": 399.31,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(2.2)",
@@ -65,8 +65,8 @@
},
{
"id": 7,
"x": 812.6278076171875,
"y": 339.508056640625,
"x": 812.63,
"y": 339.51,
"action": "",
"move_mode": "walk",
"action_params": "",
@@ -74,8 +74,8 @@
},
{
"id": 8,
"x": 800.412353515625,
"y": 312.8563232421875,
"x": 800.41,
"y": 312.86,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -83,8 +83,8 @@
},
{
"id": 9,
"x": 782.8751220703125,
"y": 250.8365478515625,
"x": 782.88,
"y": 250.84,
"action": "",
"move_mode": "fly",
"action_params": "",
@@ -92,8 +92,8 @@
},
{
"id": 10,
"x": 785.101806640625,
"y": 233.717041015625,
"x": 785.1,
"y": 233.72,
"action": "",
"move_mode": "jump",
"action_params": "",
@@ -101,8 +101,8 @@
},
{
"id": 11,
"x": 779.875,
"y": 229.34375,
"x": 779.88,
"y": 229.34,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -110,8 +110,8 @@
},
{
"id": 12,
"x": 782.4173583984375,
"y": 227.0634765625,
"x": 782.42,
"y": 227.06,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -119,8 +119,8 @@
},
{
"id": 13,
"x": 797.1905517578125,
"y": 236.6109619140625,
"x": 797.19,
"y": 236.61,
"action": "combat_script",
"move_mode": "dash",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -128,8 +128,8 @@
},
{
"id": 14,
"x": 793.566162109375,
"y": 240.4027099609375,
"x": 793.57,
"y": 240.4,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(0.2), attack(0.2),wait(0.3),attack(0.2)",
@@ -137,8 +137,8 @@
},
{
"id": 15,
"x": 790.380126953125,
"y": 230.510986328125,
"x": 790.38,
"y": 230.51,
"action": "",
"move_mode": "run",
"action_params": "",
@@ -146,8 +146,8 @@
},
{
"id": 16,
"x": 783.19775390625,
"y": 203.5968017578125,
"x": 783.2,
"y": 203.6,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -155,8 +155,8 @@
},
{
"id": 17,
"x": 759.5430908203125,
"y": 184.4844970703125,
"x": 759.54,
"y": 184.48,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -164,8 +164,8 @@
},
{
"id": 18,
"x": 696.6732177734375,
"y": 151.18212890625,
"x": 696.67,
"y": 151.18,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -173,8 +173,8 @@
},
{
"id": 19,
"x": 697.239013671875,
"y": 89.7943115234375,
"x": 697.24,
"y": 89.79,
"action": "",
"move_mode": "dash",
"action_params": "",
@@ -182,7 +182,7 @@
},
{
"id": 20,
"x": 684.53125,
"x": 684.53,
"y": 86.25,
"action": "combat_script",
"move_mode": "walk",
@@ -191,8 +191,8 @@
},
{
"id": 21,
"x": 684.53125,
"y": 87,
"x": 684.53,
"y": 87.0,
"action": "",
"move_mode": "jump",
"action_params": "",
@@ -200,8 +200,8 @@
},
{
"id": 22,
"x": 675.3712158203125,
"y": 74.745849609375,
"x": 675.37,
"y": 74.75,
"action": "",
"move_mode": "jump",
"action_params": "",
@@ -209,7 +209,7 @@
},
{
"id": 23,
"x": 683.8120884773662,
"x": 683.81,
"y": 71.75,
"action": "combat_script",
"move_mode": "walk",
@@ -218,8 +218,8 @@
},
{
"id": 24,
"x": 680.965087890625,
"y": 75.359619140625,
"x": 680.97,
"y": 75.36,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -227,8 +227,8 @@
},
{
"id": 25,
"x": 680.564208984375,
"y": 67.362060546875,
"x": 680.56,
"y": 67.36,
"action": "combat_script",
"move_mode": "walk",
"action_params": "诺艾尔 attack(1.2)",

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