JS脚本、地图追踪【众多更新】 (#446)

* Delete repo/pathing/禽肉 directory

* 地图追踪:禽肉【更新】

* JS脚本: 合成浓缩树脂【群友优化】

* JS脚本:自动购买狗粮(7点位)【修复版号】

* JS脚本:提瓦特自动钓鱼【更新】
This commit is contained in:
提瓦特钓鱼玳师
2025-03-17 22:43:40 +08:00
committed by GitHub
parent 8051ff4348
commit 81711d10ce
35 changed files with 1626 additions and 61 deletions

View File

@@ -46,8 +46,8 @@
},
{
"id": 5,
"x": 1108.71,
"y": 1858.86,
"x": 1107.88,
"y": 1861.32,
"type": "path",
"move_mode": "run",
"action": "",
@@ -55,8 +55,8 @@
},
{
"id": 6,
"x": 1105.45,
"y": 1865.58,
"x": 1101.35,
"y": 1866.58,
"type": "target",
"move_mode": "walk",
"action": "combat_script",

View File

@@ -10,24 +10,15 @@
"positions": [
{
"id": 1,
"action": "",
"action": "combat_script",
"move_mode": "walk",
"type": "teleport",
"x": 526.14,
"y": 105.78,
"action_params": ""
"action_params": "wait(0.5),keypress(space),wait(0.5)"
},
{
"id": 2,
"x": 527.00,
"y": 106.75,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(2),keydown(Space),wait(0.1),keyup(Space),wait(0.2),keydown(Space),wait(0.1),keyup(Space),wait(5)",
"type": "path"
},
{
"id": 3,
"x": 529.17,
"y": 120.12,
"type": "path",
@@ -36,7 +27,7 @@
"action_params": ""
},
{
"id": 4,
"id": 3,
"x": 530.63,
"y": 129.27,
"type": "target",

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "蒙德-七天神像-苍风高地",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "传送到蒙德-苍风高地的七天神像",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": -578.72,
"y": 1853.39,
"action_params": ""
}
]
}

View File

@@ -152,6 +152,7 @@
"夜晚": {"name": "Nighttime", "param": 2},
"禁用": {"name": "Block", "param": ""},
}
const statue_name = "蒙德-七天神像-苍风高地";
// 存储本次任务中的所有鱼类,作为调节时间的关键参考
let list_fish = [];
@@ -198,7 +199,7 @@
// 读取鱼饵
let path_sort_bait = typeof(settings.path_sort_bait) === 'undefined' ? [] : settings.path_sort_bait.split(' ');
// 读取兑换材料
let path_sort_material = typeof(settings.path_sort_material) === 'undefined' ? "无" : settings.path_sort_material;
let path_sort_material = typeof(settings.path_sort_material) === 'undefined' ? "无(默认)" : settings.path_sort_material;
// 读取调试信息
let path_select = typeof(settings.path_select) === 'undefined' ? "无(默认)" : settings.path_select;
@@ -295,9 +296,10 @@
}
}
async function run_file(path_msg, time_out_throw, time_out_whole, is_con, block_gcm, block_fight, block_tsurumi) {
const base_path_pathing = "assets/Pathing/";
async function run_file(path_msg, time_out_throw, time_out_whole, is_con, block_gcm, block_fight, block_tsurumi, auto_skip) {
const base_path_pathing = "assets/pathing/";
const base_path_gcm = "assets/KeyMouseScript/";
const base_path_statues = "assets/pathing_statues/";
const file_name = `${path_msg["area"]}-${path_msg["type"]}-${path_msg["detail"]}`;
// 检测禁用键鼠设置
@@ -362,6 +364,46 @@
fishing_time = path_time;
}
// 4点自动领取月卡
let time_now = new Date();
let time_4 = new Date(time_now.getFullYear(), time_now.getMonth(), time_now.getDate(), 4, 0, 0); // 4点
let time_predict_end; // 根据超时时间预测本次钓鱼结束时间加1分钟容错
if (fishing_time === "全天") {
time_predict_end = time_now.setSeconds(time_now.getSeconds() + time_out_whole * 2 + 60);
} else {
time_predict_end = time_now.setSeconds(time_now.getSeconds() + time_out_whole + 60);
}
// 30s点击一次等待领取月卡
let step_flag = 0; // 领取月卡步骤标志
while (auto_skip && time_now < time_4 && time_predict_end >= time_4) {
log.info(`等待领取月卡(剩余${Math.floor((time_4 - new Date()) / 1000)}s)...`);
if (step_flag == 0) {
// 传送到七天神像
await pathingScript.runFile(base_path_pathing + statue_name + ".json");
step_flag += 1;
}
await sleep(30000);
keyDown("VK_LBUTTON");
await sleep(100);
keyUp("VK_LBUTTON");
// 本次已经到达4点(5s容错)
if (new Date() > time_4.setSeconds(time_4.getSeconds() - 5)) {
step_flag += 1;
auto_skip = false;
}
}
// 领取月卡(点击两次)
if (step_flag == 2) {
step_flag = 0;
await sleep(5); // 补回容错时间
await click(1450, 1020); // 点击时间调节的确认按钮的位置
await sleep(5); // 等待月卡动画时间
await click(1450, 1020);
await sleep(1);
}
log.info(`该钓鱼点的时间: ${fishing_time}`);
await pathingScript.runFile(base_path_pathing + file_name + ".json");
@@ -393,7 +435,7 @@
// 筛选路径
let path_filter = pathing_filter();
// 读取要继续的路径
let path_continue = typeof(settings.path_continue) === "undefined" ? "无(默认)" : settings.path_continue;
let path_continue = typeof(settings.path_continue) === 'undefined' ? "无(默认)" : settings.path_continue;
let is_continue = true;
// 判断是否是调式模式
const is_con = !(typeof(settings.path_select) === 'undefined' || settings.path_select === "无(默认)");
@@ -403,6 +445,32 @@
const block_fight = typeof(settings.block_fight) === 'undefined' ? false : settings.block_fight;
// 鹤观设置读取
const block_tsurumi = typeof(settings.block_tsurumi) === 'undefined' ? false : settings.block_tsurumi;
// 读取自动拾取设置
const auto_pick = typeof(settings.auto_pick) === 'undefined' ? false : settings.auto_pick;
// 读取4点自动领取月卡的设置
const auto_skip = typeof(settings.auto_skip) === 'undefined' ? false : settings.auto_skip;
// 读取终止时间
const kill_hour = typeof(settings.time_kill_hour) === 'undefined' ? "无" : settings.time_kill_hour;
const kill_minute = typeof(settings.time_kill_minute) === 'undefined' ? "无" : settings.time_kill_minute;
const is_time_kill = kill_hour !== "无" && kill_minute !== "无"; // 判断是否启用
let time_target = new Date();
if (is_time_kill) {
let now = new Date();
time_target.setHours(parseInt(kill_hour), 10);
time_target.setMinutes(parseInt(kill_minute), 10);
time_target.setSeconds(0);
time_target.setMilliseconds(0);
if (time_target < now) { // 不是当天终止,天数+1
time_target.setDate(now.getDate() + 1); // 不会超限
}
let time_show = `${time_target.getFullYear()}/${time_target.getMonth()}/${time_target.getDate()} ${time_target.getHours()}:${time_target.getMinutes()}`;
log.info(`定时关闭已启用,将在 ${time_show} 后停止后续任务...`);
await sleep(2000);
} else if (kill_hour !== "无" ^ kill_minute !== "无") {
log.warn("如果需要启用定时关闭,请确保同时设置了小时和分钟!\n任务将在5s后继续...");
await sleep(5000);
}
log.info(`本次总计 ${path_filter.length} 个钓鱼点`);
if (path_continue !== "无(默认)") {
@@ -411,8 +479,18 @@
// 调整分辨率和dpi适应键鼠配置
setGameMetrics(1920, 1080, 1.25);
// 设置自动拾取
if (auto_pick) {
dispatcher.addTimer(new RealtimeTimer("AutoPick"));
}
for (let i = 0; i < path_filter.length; i++) {
// 检查时间
if (is_time_kill && time_target < new Date()) {
let time_now = `${new Date().getHours()}:${new Date().getMinutes()}`;
log.info(`预定时间(${kill_hour}:${kill_minute})已到(当前时间:${time_now}),终止运行...`);
return null;
}
// 路径详细信息
const path_msg = get_pathing_msg(path_filter[i]);
try {
@@ -428,7 +506,7 @@
continue;
}
await run_file(path_msg, time_out_throw, time_out_whole, is_con, block_gcm, block_fight, block_tsurumi);
await run_file(path_msg, time_out_throw, time_out_whole, is_con, block_gcm, block_fight, block_tsurumi, auto_skip);
} catch (error) {
const file_name = `${path_msg["area"]}-${path_msg["type"]}-${path_msg["detail"]}`;
log.info(`路径: ${file_name} 执行时出错,已跳过...\n错误信息: ${error}`)

View File

@@ -1,9 +1,9 @@
{
"manifest_version": 1,
"name": "提瓦特自动钓鱼(全流程+自选)",
"version": "1.3.4",
"bgi_version": "0.43.0",
"description": "脚本名称:提瓦特自动钓鱼(全流程+自选)\n功能描述支持自动追踪并垂钓bgi支持的全提瓦特垂钓点\n核心功能------------------------------>\n1.可自选地区、鱼类、鱼饵\n2.可直接钓取特定物品的兑换材料(例如渔获)\n3.脚本会根据需要的鱼类自动调节时间,不需要的时段会跳过\n4.支持部分地图追踪无法到达的钓鱼点(例如炽岩斗士急流鱼钓鱼点,枫丹廷东北钓鱼点、雷鸣仙垂钓点)\n5.支持从特定的垂钓点继续任务(仅启用所有垂钓点时可用)\n6.如包含键鼠脚本(GCM)的路线有误可在JS脚本设置禁用键鼠路线\n7.默认禁用需要战斗的路线如有需要请在JS脚本配置内启用\n8.支持自定义钓鱼超时时间\n注意事项------------------------------>\n1.部分点位涉及战斗,且队伍内不能有双风和跑步(不是冲刺)时加移速的角色\n2.跑图位必须是少男体型\n3.同时选择鱼类和鱼饵的情况下按照以下逻辑选择路线: 所有被选的鱼类会被加入任务列表,如果选择的鱼饵中某个鱼饵不是已选的任何一个鱼类的对应的鱼饵,那么这个鱼饵对应的所有鱼类将被添加到任务列表\n4.JS脚本的设置内各设置项含有优先级如果存在高优先级且选项不为默认则只有最高优先级的设置项生效\n5.部分钓鱼点为路径追踪+键鼠脚本(GCM)的混合模式可能会出现因键鼠脚本误差卡死的情况如果出现这种情况请在JS脚本设置禁用键鼠路线来禁用所有包含键鼠脚本的钓鱼点\n---------------------------------------->\n作者提瓦特钓鱼玳师\n脚本反馈邮箱hijiwos@hotmail.com",
"version": "1.5.0",
"bgi_version": "0.43.1",
"description": "脚本名称:提瓦特自动钓鱼(全流程+自选)\n功能描述支持自动追踪并垂钓bgi支持的全提瓦特垂钓点\n核心功能------------------------------>\n1.可自选地区、鱼类、鱼饵\n2.可直接钓取特定物品的兑换材料(例如渔获)\n3.脚本会根据需要的鱼类自动调节时间,不需要的时段会跳过\n4.支持部分地图追踪无法到达的钓鱼点(例如炽岩斗士急流鱼钓鱼点,枫丹廷东北钓鱼点、雷鸣仙垂钓点)\n5.支持从特定的垂钓点继续任务(仅启用所有垂钓点时可用)\n6.默认禁用需要战斗的路线如有需要请在JS脚本配置内启用\n7.支持自定义钓鱼超时时间\n8.支持设置定时关闭最多24小时\n9.4点自动领取月卡(可选)\n10.启用自动拾取(可选)\n注意事项------------------------------>\n1.部分点位涉及战斗,且队伍内不能有双风和跑步(不是冲刺)时加移速的角色\n2.跑图位必须是少男体型\n3.同时选择鱼类和鱼饵的情况下按照以下逻辑选择路线: 所有被选的鱼类会被加入任务列表,如果选择的鱼饵中某个鱼饵不是已选的任何一个鱼类的对应的鱼饵,那么这个鱼饵对应的所有鱼类将被添加到任务列表\n4.JS脚本的设置内各设置项含有优先级如果存在高优先级且选项不为默认则只有最高优先级的设置项生效\n5.部分钓鱼点为路径追踪+键鼠脚本(GCM)的混合模式可能会出现因键鼠脚本误差卡死的情况如果出现这种情况请在JS脚本设置禁用键鼠路线来禁用所有包含键鼠脚本的钓鱼点\n---------------------------------------->\n作者提瓦特钓鱼玳师\n脚本反馈邮箱hijiwos@hotmail.com",
"authors": [
{
"name": "提瓦特钓鱼玳师"

View File

@@ -131,6 +131,116 @@
"type": "input-text",
"label": "整个任务超时时间(秒) 默认: 300"
},
{
"name": "auto_pick",
"type": "checkbox",
"label": "启用自动拾取(默认禁用)"
},
{
"name": "auto_skip",
"type": "checkbox",
"label": "启用4点领取月卡(默认禁用)"
},
{
"name": "time_kill_hour",
"type": "select",
"label": "设置强制停止运行的时间(24小时制)[同时选择生效]\n小时",
"options": [
"无",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20",
"21",
"22",
"23"
]
},
{
"name": "time_kill_minute",
"type": "select",
"label": "分钟",
"options": [
"无",
"0",
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20",
"21",
"22",
"23",
"24",
"25",
"26",
"27",
"28",
"29",
"30",
"31",
"32",
"33",
"34",
"35",
"36",
"37",
"38",
"39",
"40",
"41",
"42",
"43",
"44",
"45",
"46",
"47",
"48",
"49",
"50",
"51",
"52",
"53",
"54",
"55",
"56",
"57",
"58",
"59"
]
},
{
"name": "block_gcm",
"type": "checkbox",

View File

@@ -1,14 +1,21 @@
(async function () {
setGameMetrics(1920, 1080, 2); // 设置游戏窗口大小和DPI
keyPress("F");
await sleep(3000);
click(960, 540);
await sleep(1000);
await sleep(1000);
keyPress("F");
await sleep(1500);
click(960, 540);
await sleep(1000);
click(1750, 1010);
await sleep(5000);
click(975, 900);
await sleep(1000);
await sleep(5000);
click(975, 900);
await sleep(1000);
click(1356, 804); //再见
log.info("点击再见1");
await sleep(2000);
click(1356, 804); //再见
log.info("点击再见2");
keyPress("Escape");
log.info("已完成合成浓缩树脂");
})();

View File

@@ -1,12 +1,12 @@
{
"manifest_version": 1,
"name": "合成浓缩树脂",
"version": "1.0",
"version": "1.1",
"description": "用于合成浓缩树脂",
"authors": [
{
"name": "鹤望兰",
"name": "鹤望兰"
}
],
"main": "main.js",
"main": "main.js"
}

View File

@@ -1,7 +1,8 @@
{
"manifest_version": 1.0,
"manifest_version": 1,
"name": "自动购买狗粮(7点位)",
"version": "1.1",
"version": "1.1.1",
"bgi_version": "0.43.1",
"description": "狗粮周3刷新价值23体力的摩拉换38体力的狗粮血赚。龙骨花凝珠没出售需额外设置。强烈建议使用固定队伍(双风成女行走)",
"authors": [
{

View File

@@ -0,0 +1,75 @@
{
"info": {
"name": "璃月-禽肉-云来海璃月港北-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 云来海璃月港北\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 295.62,
"y": -247.3,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 271.09,
"y": -284.52,
"type": "path",
"move_mode": "fly",
"action": "combat_script",
"action_params": "w(6)"
},
{
"id": 3,
"x": 246.55,
"y": -321.74,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 4,
"x": 247.08,
"y": -319.34,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 5,
"x": 247.49,
"y": -307.56,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 6,
"x": 248.97,
"y": -309.81,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 7,
"x": 246.1,
"y": -310.96,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
}
]
}

View File

@@ -0,0 +1,66 @@
{
"info": {
"name": "璃月-禽肉-云来海璃月港西-2个-下落1肉2",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 云来海璃月港西\n数目: 2\n附加信息: 1禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 507.99,
"y": -630.6,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 361.54,
"y": -618.69,
"action": "combat_script",
"move_mode": "fly",
"action_params": "keypress(space),wait(2),attack(0.1)",
"type": "target"
},
{
"id": 3,
"x": 361.02,
"y": -617.76,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 4,
"x": 361.69,
"y": -619.65,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 5,
"x": 363.57,
"y": -620.26,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 362.15,
"y": -615.36,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,93 @@
{
"info": {
"name": "璃月-禽肉-云来海璃月港西南-3个-下落1肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 云来海璃月港西南\n数目: 3\n附加信息: 1禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 507.99,
"y": -630.6,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 404.36,
"y": -645.53,
"action": "combat_script",
"move_mode": "fly",
"action_params": "keypress(space),wait(2),attack(0.1)",
"type": "target"
},
{
"id": 3,
"x": 406.18,
"y": -646.37,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 408.07,
"y": -646.96,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 407.05,
"y": -642.67,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 403.51,
"y": -641.51,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 399.4,
"y": -644.8,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 402.17,
"y": -647.06,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 403.91,
"y": -645.1,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,93 @@
{
"info": {
"name": "璃月-禽肉-来歆山赤望台东南-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 来歆山赤望台东南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2870.02,
"y": 1503.36,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 2846.04,
"y": 1490.71,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 2843.99,
"y": 1470.42,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": 2830.93,
"y": 1445.72,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 5,
"x": 2818.87,
"y": 1412.19,
"action": "",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": 2714.15,
"y": 1256.69,
"action": "combat_script",
"move_mode": "fly",
"action_params": "keypress(space),wait(1.5),attack(0.1)",
"type": "target"
},
{
"id": 7,
"x": 2712.1,
"y": 1256.0,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": 2712.36,
"y": 1258.54,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 9,
"x": 2715.35,
"y": 1257.87,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
}
]
}

View File

@@ -0,0 +1,40 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·上谷宝玦口南-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷宝玦口南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2462.76,
"y": 1801.62,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 2330.34,
"y": 1869.71,
"type": "target",
"move_mode": "fly",
"action": "combat_script",
"action_params": "keypress(space),wait(2),attack(0.1)",
"locked": false
},
{
"id": 3,
"x": 2330.34,
"y": 1869.71,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,39 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·上谷暝垣山-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷暝垣山\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2614.99,
"y": 2375.68,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 2627.5,
"y": 2127.71,
"action": "combat_script",
"move_mode": "fly",
"action_params": "keypress(space),wait(2.5),attack(0.1)",
"type": "target"
},
{
"id": 3,
"x": 2627.5,
"y": 2127.71,
"action": "pick_around",
"move_mode": "walk",
"action_params": "",
"type": "target"
}
]
}

View File

@@ -0,0 +1,84 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·上谷暝垣山西南-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷暝垣山西南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2614.92,
"y": 2050.93,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 2622.0,
"y": 2052.09,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 2760.38,
"y": 2044.41,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 2898.75,
"y": 2036.74,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 5,
"x": 2899.78,
"y": 2038.02,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 6,
"x": 2897.3,
"y": 2036.87,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 7,
"x": 2896.95,
"y": 2034.9,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 8,
"x": 2899.97,
"y": 2035.58,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
}
]
}

View File

@@ -0,0 +1,111 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·上谷灵濛山北-2个-下落2肉2",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷灵濛山北\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2145.69,
"y": 2412.9,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 2139.65,
"y": 2419.85,
"action": "",
"move_mode": "run",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 2115.42,
"y": 2462.49,
"action": "",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": 2112.89,
"y": 2475.43,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 5,
"x": 2123.51,
"y": 2512.02,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": 2135.33,
"y": 2523.88,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 7,
"x": 2139.24,
"y": 2521.28,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": 2139.18,
"y": 2503.61,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 9,
"x": 2176.44,
"y": 2437.53,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 10,
"x": 2180.02,
"y": 2439.41,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 11,
"x": 2178.38,
"y": 2435.83,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
}
]
}

View File

@@ -0,0 +1,93 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·上谷瞑垣山南-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷瞑垣山南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2614.92,
"y": 2050.93,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 2622.92,
"y": 2052.02,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 2623.56,
"y": 2044.12,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 2729.16,
"y": 1999.03,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 2777.48,
"y": 1922.59,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 2805.3,
"y": 1840.33,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 7,
"x": 2807.19,
"y": 1839.85,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 2805.99,
"y": 1841.59,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 2804.36,
"y": 1839.84,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,40 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·上谷翘英庄西-2个-下落1肉2",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷翘英庄西\n数目: 2\n附加信息: 1禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 1746.68,
"y": 2325.17,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 1579.6,
"y": 2250.61,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "",
"locked": false
},
{
"id": 3,
"x": 1579.6,
"y": 2250.61,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,40 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·上谷翘英庄西北-2个-下落1肉2",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷翘英庄西北\n数目: 2\n附加信息: 1禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 1746.68,
"y": 2325.17,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 1782.42,
"y": 2397.24,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "",
"locked": false
},
{
"id": 3,
"x": 1782.42,
"y": 2397.24,
"type": "target",
"move_mode": "walk",
"action": "pick_around",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,84 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·上谷赤望台北-2个-下落2肉2",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·上谷赤望台北\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2614.92,
"y": 2050.93,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 2624.93,
"y": 2052.01,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 2627.12,
"y": 2044.25,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": 2750.24,
"y": 1994.55,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 2873.37,
"y": 1944.84,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 6,
"x": 2871.93,
"y": 1945.44,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 7,
"x": 2874.93,
"y": 1947.71,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 8,
"x": 2875.8,
"y": 1945.13,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
}
]
}

View File

@@ -0,0 +1,111 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·南陵赤望台东-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·南陵赤望台东\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2870.04,
"y": 1503.27,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 2813.17,
"y": 1480.43,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 2785.1,
"y": 1469.35,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": 2785.81,
"y": 1457.65,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 5,
"x": 2766.47,
"y": 1447.99,
"action": "",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": 2685.86,
"y": 1459.72,
"action": "combat_script",
"move_mode": "fly",
"action_params": "keypress(space),wait(2),attack(0.1)",
"type": "target"
},
{
"id": 7,
"x": 2685.06,
"y": 1459.03,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 8,
"x": 2685.99,
"y": 1459.14,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 9,
"x": 2688.26,
"y": 1456.92,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 10,
"x": 2687,
"y": 1455.59,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 11,
"x": 2685.06,
"y": 1455.13,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
}
]
}

View File

@@ -0,0 +1,75 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·南陵赤望台东北-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·南陵赤望台东北\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2628.09,
"y": 1528.56,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 2604.98,
"y": 1538.94,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 2603.7,
"y": 1537.26,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 2607.24,
"y": 1540.95,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 2601.29,
"y": 1542.84,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 2598.84,
"y": 1540.04,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 2596.64,
"y": 1543.06,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,57 @@
{
"info": {
"name": "璃月-禽肉-沉玉谷·南陵赤璋城垣南-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 沉玉谷·南陵赤璋城垣南\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 2207.0,
"y": 1253.21,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 2216.68,
"y": 1269.37,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 3,
"x": 2232.61,
"y": 1280.31,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 2231.08,
"y": 1280.99,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 2231.14,
"y": 1279.27,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,11 +1,11 @@
{
"info": {
"name": "璃月-禽肉-珉林华光林西南-2个",
"name": "璃月-禽肉-珉林华光林西南-2个-下落2肉2",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "禽肉-2个\n璃月-珉林华光林西南\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.42.0"
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 珉林华光林西南\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{

View File

@@ -0,0 +1,57 @@
{
"info": {
"name": "璃月-禽肉-珉林奥藏山东-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 珉林奥藏山东\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 1604.42,
"y": 1039.32,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 1591.19,
"y": 1037.67,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 1570.91,
"y": 1034.33,
"action": "",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": 1359.96,
"y": 1154.34,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 5,
"x": 1359.96,
"y": 1154.34,
"action": "pick_around",
"move_mode": "walk",
"action_params": "",
"type": "target"
}
]
}

View File

@@ -0,0 +1,49 @@
{
"info": {
"name": "璃月-禽肉-珉林琥牢山东-1个-下落2肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 珉林琥牢山东\n数目: 1\n附加信息: 2禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 1794.2,
"y": 717.49,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 1781.85,
"y": 707.57,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"action": "combat_script",
"move_mode": "fly",
"type": "target",
"x": 1712.19,
"y": 682.33,
"action_params": "keypress(space),wait(5.5),attack(0.1),wait(3)",
"locked": false
},
{
"id": 4,
"action": "pick_around",
"move_mode": "walk",
"type": "target",
"x": 1712.19,
"y": 682.33,
"action_params": ""
}
]
}

View File

@@ -1,11 +1,11 @@
{
"info": {
"name": "璃月-禽肉-琼玑野明蕴镇西南-2个",
"name": "璃月-禽肉-琼玑野明蕴镇西南-2个-下落2肉2",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.1",
"description": "禽肉-2个\n璃月-琼玑野明蕴镇西南\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.42.0"
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 琼玑野明蕴镇西南\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{

View File

@@ -1,11 +1,11 @@
{
"info": {
"name": "璃月-禽肉-琼玑野瑶光滩北-4个",
"name": "璃月-禽肉-琼玑野瑶光滩北-4个-下落2肉4",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.1",
"description": "禽肉-4个\n璃月-琼玑野瑶光滩北\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.42.0"
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 琼玑野瑶光滩北\n数目: 4\n附加信息: 2禽肉鸟共4只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{

View File

@@ -0,0 +1,75 @@
{
"info": {
"name": "璃月-禽肉-琼玑野瑶光滩西北-2个-下落2肉2",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 琼玑野瑶光滩西北\n数目: 2\n附加信息: 2禽肉鸟共2只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": -255.01,
"y": 630.04,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": -251.64,
"y": 627.92,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -85.28,
"y": 568.97,
"type": "target",
"move_mode": "fly",
"action": "combat_script",
"action_params": "keypress(space),wait(1.5),attack(0.1)"
},
{
"id": 4,
"x": -83.55,
"y": 569.48,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": -87.19,
"y": 568.79,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": -87.65,
"y": 570.97,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": -85.74,
"y": 567.56,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,11 +1,11 @@
{
"info": {
"name": "璃月-禽肉-璃月港舔狗桥-5个",
"name": "璃月-禽肉-璃月港舔狗桥-5个-下落2肉5",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.1",
"description": "禽肉-5个\n璃月-璃月港舔狗桥\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.42.0"
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 璃月港舔狗桥\n数目: 5\n附加信息: 2禽肉鸟共5只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{

View File

@@ -0,0 +1,75 @@
{
"info": {
"name": "璃月-禽肉-碧水原望舒客栈北-1个-下落1肉1",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "地区: 璃月\n类型: 禽肉\n详细位置: 碧水原望舒客栈北\n数目: 1\n附加信息: 1禽肉鸟共1只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{
"id": 1,
"x": 328.97,
"y": 873.64,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 318.77,
"y": 889.82,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 322.89,
"y": 901.25,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 313.94,
"y": 911.71,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 340.78,
"y": 989.76,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 6,
"x": 339.73,
"y": 990.67,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 341.58,
"y": 994.7,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -1,11 +1,11 @@
{
"info": {
"name": "纳塔-禽肉-奥奇卡纳塔东南-5个",
"name": "纳塔-禽肉-奥奇卡纳塔东南-5个-下落2肉5",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "禽肉-5个\n纳塔-奥奇卡纳塔东南\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.42.0"
"description": "地区: 纳塔\n类型: 禽肉\n详细位置: 奥奇卡纳塔东南\n数目: 5\n附加信息: 2禽肉鸟共5只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{

View File

@@ -1,11 +1,11 @@
{
"info": {
"name": "蒙德-禽肉-风起地-3个",
"name": "蒙德-禽肉-风起地-3个-下落2肉3",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.0",
"description": "禽肉-3个\n蒙德-风起地\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.42.0"
"description": "地区: 蒙德\n类型: 禽肉\n详细位置: 风起地\n数目: 3\n附加信息: 2禽肉鸟共3只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{

View File

@@ -1,11 +1,11 @@
{
"info": {
"name": "蒙德-禽肉-风起地东南-11个",
"name": "蒙德-禽肉-风起地东南-11个-下落2肉11",
"type": "collect",
"author": "提瓦特钓鱼玳师",
"version": "1.1",
"description": "禽肉-11个\n蒙德-风起地东南\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.42.0"
"version": "1.0",
"description": "地区: 蒙德\n类型: 禽肉\n详细位置: 风起地东南\n数目: 11\n附加信息: 2禽肉鸟共11只\n注意: 使用前请将游戏时间调到白天,跑图位建议使用绮良良或埃洛伊",
"bgiVersion": "0.43.1"
},
"positions": [
{