Compare commits

...

4 Commits

Author SHA1 Message Date
zaodonganqi
f7b8a35b0a update repo.json
Some checks failed
Build repo.json / build (18.x) (push) Has been cancelled
Build repo.json / upload (push) Has been cancelled
2025-08-11 05:55:25 +00:00
小大XD
7419d81157 全自动沙漠书 (#1548)
* 全自动沙漠书(修了的(1))

* 自动修复 JSON 格式和版本号 [ci skip]

* fix folder

---------

Co-authored-by: GitHub Actions Bot <actions@github.com>
Co-authored-by: 起个名字好难的喵 <25520958+MisakaAldrich@users.noreply.github.com>
2025-08-11 13:16:48 +08:00
this-Fish
4bd431bcb8 地圖追蹤 : 紫晶块[大剑]@蜜柑魚 路徑優化 (#1545)
* 地圖追蹤 : 紫晶块[大剑]@蜜柑魚 路徑優化

火神趕路結尾加上E下車
A02調整戰鬥位、避免點到鍋
A05調整前往第一個礦點路徑

* 自动修复 JSON 格式和版本号 [ci skip]

---------

Co-authored-by: GitHub Actions Bot <actions@github.com>
2025-08-11 12:56:10 +08:00
this-Fish
3770f39246 JS : Auto Theft NPC & 原食 2.0.1 (#1546)
新增纳塔杂货店NPC
2025-08-11 12:55:32 +08:00
91 changed files with 3804 additions and 294 deletions

916
repo.json

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,57 @@
{
"info": {
"name": "布纳马",
"type": "collect",
"authors": [
{
"name": "芝士贝果"
}
],
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.47.3",
"tags": [],
"last_modified_time": 1754489424074,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 9060.5419921875,
"y": -1847.5107421875,
"action_params": ""
},
{
"id": 2,
"x": 9089.0361328125,
"y": -1852.42919921875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 9088.6552734375,
"y": -1856.89306640625,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 9089.8935546875,
"y": -1857.2724609375,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -63,7 +63,7 @@
"y": -470.27734375,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5),keypress(F),wait(6),keydown(W),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),keyup(W)",
"action_params": "wait(0.5),keypress(F),wait(7.5),keydown(W),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),wait(0.5),keypress(SPACE),keyup(W)",
"type": "path"
}
]

View File

@@ -111,6 +111,14 @@ const npcData = {
"time": "any",
"path": "assets/path/阿鲁埃.json",
"goods": ["咖啡豆", "枫达"]
},
"Bunama": {
"name": "布纳马",
"enable": true,
"page": 2,
"time": "any",
"path": "assets/path/布纳马.json",
"goods": ["盐", "小麦", "胡椒", "洋葱", "牛奶", "番茄", "卷心菜", "土豆", "秃秃豆"]
}
}
@@ -400,11 +408,31 @@ async function qucikBuy() {
}
// 跳过对话
async function spikChat(count = 5) {
await sleep(100);
for (let i = 0; i < count; i++) {
keyPress("VK_F");
await sleep(1300);
async function spikChat(npcName) {
count = 5
await sleep(1000);
if(npcName== "布纳马"){
// 對話
await sleep(500);
keyDown("VK_MENU");// Alt
await sleep(1000);
await click(1255, 530);
await sleep(1000);
keyUp("VK_MENU");// Alt
// 跳過交互&進入買食畫面
await click(1345, 580);
await sleep(1000);
await click(1345, 580);
await sleep(1000);
await click(1345, 580);
await sleep(1000);
await click(1345, 580);
await sleep(1000);
}else {
for (let i = 0; i < count; i++) {
keyPress("VK_F");
await sleep(1300);
}
}
await sleep(1000);
}
@@ -525,6 +553,7 @@ async function initRo() {
// ==================== 自动购买 ====================
for (let [key, npc] of Object.entries(npcData)) {
if (npc.enable) {
await genshin.returnMainUi();
log.info("开始购买NPC: {npcName}", npc.name);
// 设置游戏时间
if (npc.time === "night") {
@@ -534,7 +563,7 @@ async function initRo() {
await setTime(8, 0); // 设置为早上8点
}
await autoPath(npc.path);
await spikChat();
await spikChat(npc.name);
await buyGoods(key);
// 返回主界面
await genshin.returnMainUi();

View File

@@ -1,8 +1,8 @@
{
"manifest_version": 1,
"name": "购买NPC食材-图像识别",
"version": "2.0.0",
"description": "原食脚本: 基于图像识别的抢劫NPC商品, 可选择性购买商品, 节省大量摩拉与时间.",
"version": "2.0.1",
"description": "原食脚本: 基于图像识别的购买NPC商品, 可选择性购买商品, 按地区顺序购买, 节省大量时间.",
"authors": [
{
"name": "听雨♪",

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "00-将角色1号位设置为砂糖 ",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "00-将角色2号位设置为火角色(安柏)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885615846,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "00使用前开启须弥沙漠下风蚀地七天神像",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754883427968,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "00使用前开启须弥沙漠列柱沙原七天神像",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754883466481,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "00使用前开启须弥沙漠塔尼特露营地七天神像",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754883534276,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,211 @@
{
"info": {
"name": "01-全自动沙漠书-前置锚点01",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754883792120,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 3993.3896,
"y": -1989.2354,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 3997.5947,
"y": -1989.8936,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4011.7266,
"y": -1991.3892,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4031.4297,
"y": -1994.1357,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 4044.4082,
"y": -1995.7197,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 4058.7812,
"y": -1995.7983,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 4069.2969,
"y": -1994.9668,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 4079.6348,
"y": -1992.4346,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 4091.3252,
"y": -1989.3779,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 4100.1348,
"y": -1988.0405,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 4110.1338,
"y": -1986.4604,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 12,
"x": 4120.3291,
"y": -1985.0483,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 4136.4014,
"y": -1983.3296,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 14,
"x": 4135.6299,
"y": -1993.1934,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 15,
"x": 4128.7305,
"y": -1995.9678,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 16,
"x": 4120.5439,
"y": -1998.4146,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 17,
"x": 4111.7207,
"y": -2001.688,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 18,
"x": 4105.207,
"y": -2004.7227,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 19,
"x": 4100.1768,
"y": -2010.8896,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 20,
"x": 4096.8203,
"y": -2018.0327,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 21,
"x": 4093.3281,
"y": -2023.9399,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,112 @@
{
"info": {
"name": "02-全自动沙漠书-接取任务",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754883990957,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 3993.3818,
"y": -1989.2271,
"action_params": ""
},
{
"id": 2,
"x": 4001.9082,
"y": -1990.8472,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4013.4824,
"y": -1992.813,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4025.0811,
"y": -1994.8521,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 4033.1436,
"y": -1995.2739,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 4042.6992,
"y": -1995.9858,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 4051.8584,
"y": -1995.8315,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 4060.8564,
"y": -1995.9976,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 4069.1689,
"y": -1996.1709,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 4079.7305,
"y": -2001.1982,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,805 @@
{
"info": {
"name": "03-全自动沙漠书-前往对话01",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754884249678,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 3993.375,
"y": -1989.2383,
"action_params": ""
},
{
"id": 2,
"x": 3992.8242,
"y": -1990.0542,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 3991.5,
"y": -1998.2427,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 3986.7461,
"y": -2002.8301,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 3981.8604,
"y": -2005.6748,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 3974.8945,
"y": -2009.9263,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 3967.2334,
"y": -2013.3096,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 3958.5234,
"y": -2017.272,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 3953.5986,
"y": -2024.8257,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 3948.2109,
"y": -2031.7769,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 3944.8164,
"y": -2038.0913,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 12,
"x": 3941.6016,
"y": -2046.2119,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 3940.4238,
"y": -2053.5137,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 14,
"x": 3940.6445,
"y": -2060.9512,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 15,
"x": 3942.4434,
"y": -2067.9844,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 16,
"x": 3945.3604,
"y": -2073.3828,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 17,
"x": 3950.1406,
"y": -2080.4619,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 18,
"x": 3956.498,
"y": -2091.4385,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 19,
"x": 3959.6523,
"y": -2100.4023,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 20,
"x": 3966.0205,
"y": -2110.0791,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 21,
"x": 3973.665,
"y": -2120.4258,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 22,
"x": 3983.2959,
"y": -2122.416,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 23,
"x": 3994.0801,
"y": -2121.1758,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 24,
"x": 4002.1279,
"y": -2123.1279,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 25,
"x": 4004.6514,
"y": -2126.0449,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 26,
"x": 4008.748,
"y": -2133.1973,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 27,
"x": 4014.5029,
"y": -2139.1504,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 28,
"x": 4023.2773,
"y": -2145.707,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 29,
"x": 4033.9355,
"y": -2149.8613,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 30,
"x": 4043.875,
"y": -2153.9844,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 31,
"x": 4054.2295,
"y": -2156.5889,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 32,
"x": 4064.9961,
"y": -2158.2812,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 33,
"x": 4070.9492,
"y": -2162.8291,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 34,
"x": 4076.3496,
"y": -2169.1562,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
},
{
"id": 35,
"x": 4077.1855,
"y": -2168.5303,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 36,
"x": 4082.1934,
"y": -2164.2168,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 37,
"x": 4089.4619,
"y": -2165.4824,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 38,
"x": 4100.0811,
"y": -2167.127,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 39,
"x": 4109.8887,
"y": -2168.6055,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 40,
"x": 4119.0117,
"y": -2166.3896,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 41,
"x": 4127.8477,
"y": -2160.7246,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 42,
"x": 4137.083,
"y": -2155.6211,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 43,
"x": 4146.2236,
"y": -2150.5732,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 44,
"x": 4154.3848,
"y": -2149.1465,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 45,
"x": 4164.6582,
"y": -2149.9023,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 46,
"x": 4174.8604,
"y": -2149.6641,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 47,
"x": 4184.7812,
"y": -2143.6113,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 48,
"x": 4188.9775,
"y": -2140.6465,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 49,
"x": 4196.9355,
"y": -2139.9258,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 50,
"x": 4204.668,
"y": -2143.6836,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 51,
"x": 4214.5811,
"y": -2150.8887,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 52,
"x": 4224.4307,
"y": -2162.416,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 53,
"x": 4229.0088,
"y": -2162.3379,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 54,
"x": 4234.7402,
"y": -2162.4883,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 55,
"x": 4240.4004,
"y": -2158.0879,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 56,
"x": 4242.9209,
"y": -2149.668,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 57,
"x": 4244.2471,
"y": -2139.7627,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 58,
"x": 4246.4766,
"y": -2123.3594,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 59,
"x": 4248.9883,
"y": -2106.8105,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 60,
"x": 4258.4873,
"y": -2095.3438,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 61,
"x": 4262.2988,
"y": -2084.4414,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 62,
"x": 4269.7832,
"y": -2071.6895,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 63,
"x": 4281.4844,
"y": -2080.832,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 64,
"x": 4294.1025,
"y": -2092.2627,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 65,
"x": 4299.8311,
"y": -2096.2705,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 66,
"x": 4308.3574,
"y": -2093.1973,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 67,
"x": 4318.332,
"y": -2084.3105,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 68,
"x": 4324.7949,
"y": -2082.0547,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 69,
"x": 4335.5303,
"y": -2081.6494,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 70,
"x": 4347.7207,
"y": -2082.2031,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 71,
"x": 4360.8535,
"y": -2077.7549,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 72,
"x": 4372.9316,
"y": -2076.2842,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 73,
"x": 4379.3896,
"y": -2079.0908,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 74,
"x": 4401.1035,
"y": -2080.8984,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "2"
},
{
"id": 75,
"x": 4405.3633,
"y": -2080.8887,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 76,
"x": 4416.5664,
"y": -2078.9551,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 77,
"x": 4427.5859,
"y": -2075.4814,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 78,
"x": 4437.4238,
"y": -2071.3545,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 79,
"x": 4445.5605,
"y": -2066.3477,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 80,
"x": 4454.8359,
"y": -2061.2363,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 81,
"x": 4470.0918,
"y": -2055.6777,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 82,
"x": 4474.3066,
"y": -2054.9795,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 83,
"x": 4482.208,
"y": -2056.2305,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": "2"
},
{
"id": 84,
"x": 4484.5996,
"y": -2054.9609,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 85,
"x": 4492.5312,
"y": -2055.5215,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 86,
"x": 4501.3125,
"y": -2054.9014,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 87,
"x": 4509.3643,
"y": -2052.3555,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,31 @@
{
"info": {
"name": "04-全自动沙漠书-对话01",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754884285549,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "combat_script",
"move_mode": "walk",
"type": "path",
"x": 4509.3633,
"y": -2052.084,
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,58 @@
{
"info": {
"name": "05-全自动沙漠书-对话02",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754888280368,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 4509.373,
"y": -2052.4248,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 2,
"x": 4504.9355,
"y": -2055.4902,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 4502.5527,
"y": -2060.7871,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": 4504.4512,
"y": -2064.4541,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,76 @@
{
"info": {
"name": "06-全自动沙漠书-对话03",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754884366510,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 4503.4092,
"y": -2063.5469,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4502.0098,
"y": -2061.7656,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4493.9883,
"y": -2059.0166,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4487.1055,
"y": -2061.7285,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 4478.3242,
"y": -2063.249,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 4472.5742,
"y": -2062.2002,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,76 @@
{
"info": {
"name": "07-全自动沙漠书-对话04",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754884420193,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 4472.5635,
"y": -2061.918,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 4473.0195,
"y": -2065.1074,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4468.25,
"y": -2072.4609,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4459.4961,
"y": -2077.2725,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 4451.3809,
"y": -2078.8809,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 4437.0938,
"y": -2082.5684,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,85 @@
{
"info": {
"name": "08-全自动沙漠书-对话05",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754884507106,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "path",
"x": 4438.8906,
"y": -2082.0254,
"action_params": ""
},
{
"id": 2,
"x": 4443.2197,
"y": -2082.1582,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 4450.8301,
"y": -2079.4824,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 4460.4141,
"y": -2074.583,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 4468.8799,
"y": -2070.2148,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 4478.3203,
"y": -2065.4775,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 10566.8662,
"y": 861.5854,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,148 @@
{
"info": {
"name": "09-全自动沙漠书-对话06",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754888581329,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 4492.5986,
"y": -2058.7139,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 2,
"x": 4488.2715,
"y": -2061.3184,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 4479.0449,
"y": -2067.2607,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": 4471.5098,
"y": -2072.4043,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 5,
"x": 4463.2461,
"y": -2076.4697,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": 4454.8799,
"y": -2079.3828,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 7,
"x": 4447.3262,
"y": -2077.8379,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": 4438.8223,
"y": -2077.7588,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 9,
"x": 4430.0723,
"y": -2077.2256,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 10,
"x": 4422.1367,
"y": -2074.168,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 11,
"x": 5863.9307,
"y": -389.0342,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 12,
"x": 5470.1299,
"y": -1616.7793,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 13,
"x": 10566.8662,
"y": 861.5854,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 14,
"x": 5591.0254,
"y": -839.7998,
"action": "combat_script",
"move_mode": "walk",
"action_params": "",
"type": "path"
}
]
}

View File

@@ -0,0 +1,76 @@
{
"info": {
"name": "10-全自动沙漠书-任务锚点01",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754884727004,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "path",
"x": 6027.3438,
"y": -1908.3018,
"action_params": ""
},
{
"id": 2,
"x": 6019.9707,
"y": -1904.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5969.957,
"y": -2510.9756,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5973.4121,
"y": -2509.1445,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 5970.8564,
"y": -2509.9961,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 5970.1885,
"y": -2510.1562,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,121 @@
{
"info": {
"name": "11-全自动沙漠书-前往遗迹01",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754884819134,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "teleport",
"x": 5657.6914,
"y": -240.8198,
"action_params": ""
},
{
"id": 2,
"x": 5655.1855,
"y": -243.1055,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5650.748,
"y": -247.9907,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 6552.5527,
"y": 757.7441,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 6550.5098,
"y": 756.6704,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 6546.4238,
"y": 751.8638,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 6529.9746,
"y": 754.4243,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 6527.6738,
"y": 754.3208,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 6524.875,
"y": 753.5156,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 5499.2285,
"y": -2882.0479,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 5495.1006,
"y": -2873.2715,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,94 @@
{
"info": {
"name": "12-全自动沙漠书-开启遗迹01",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754884917286,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": 5497.6602,
"y": -2860.5645,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 2,
"x": 5501.332,
"y": -2869.0918,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5504.7539,
"y": -2859.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5506.7842,
"y": -2854.5576,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 5503.1377,
"y": -2864.958,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 5502.5234,
"y": -2859.6631,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 5502.7129,
"y": -2860.332,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(1)"
},
{
"id": 8,
"x": 5502.4619,
"y": -2861.3535,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,67 @@
{
"info": {
"name": "13-全自动沙漠书-战斗1",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754884962343,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "path",
"x": 5502.4072,
"y": -2860.1182,
"action_params": ""
},
{
"id": 2,
"x": 5509.2461,
"y": -2870.7676,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5498.0,
"y": -2859.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5500.5957,
"y": -2879.3105,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 5497.6309,
"y": -2882.1055,
"type": "path",
"move_mode": "walk",
"action": "fight",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,103 @@
{
"info": {
"name": "14-全自动沙漠书-开启遗迹02",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885202117,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "path",
"x": 5519.3125,
"y": -2884.8115,
"action_params": ""
},
{
"id": 2,
"x": 5526.8809,
"y": -2875.8047,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5485.8105,
"y": -2869.3359,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5528.4805,
"y": -2883.8369,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 5525.5918,
"y": -2888.4717,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 5522.3271,
"y": -2889.7891,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 5475.8564,
"y": -2879.6719,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 5472.374,
"y": -2883.8906,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 5507.9727,
"y": -2891.5,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,202 @@
{
"info": {
"name": "15-全自动沙漠书-前往遗迹02",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885285209,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "path",
"x": 5474.1992,
"y": -2882.5566,
"action_params": ""
},
{
"id": 2,
"x": 5472.3477,
"y": -2883.1104,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5475.5928,
"y": -2891.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5468.75,
"y": -2889.9102,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 5470.25,
"y": -2891.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 5477.4785,
"y": -2891.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 5477.0,
"y": -2890.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 5479.3477,
"y": -2890.7842,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 5529.0723,
"y": -2878.1211,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": 5531.9834,
"y": -2880.7773,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 11,
"x": 5474.6738,
"y": -2891.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 12,
"x": 5525.8184,
"y": -2887.2637,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 13,
"x": 5524.3945,
"y": -2889.1875,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 14,
"x": 5523.0,
"y": -2891.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 15,
"x": 4375.1836,
"y": -632.1318,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 16,
"x": 4371.5117,
"y": -636.3003,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 17,
"x": 4376.3203,
"y": -635.6812,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 18,
"x": 4381.4941,
"y": -637.5649,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 19,
"x": 4382.9746,
"y": -638.9468,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 20,
"x": 5293.2988,
"y": -702.8931,
"type": "path",
"move_mode": "walk",
"action": "fight",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,85 @@
{
"info": {
"name": "16-全自动沙漠书-下行遗迹01",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885456235,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "",
"move_mode": "walk",
"type": "path",
"x": 5295.2178,
"y": -702.1719,
"action_params": ""
},
{
"id": 2,
"x": 5295.5312,
"y": -702.4141,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5318.9277,
"y": -696.8169,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 4,
"x": 5325.3789,
"y": -700.335,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 5331.8379,
"y": -699.1533,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 5332.3545,
"y": -699.5166,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 5332.5918,
"y": -700.3164,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "keypress(f)"
}
]
}

View File

@@ -0,0 +1,49 @@
{
"info": {
"name": "17-全自动沙漠书-火把01",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885568259,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"action": "stop_flying",
"move_mode": "walk",
"type": "path",
"x": 5332.7998,
"y": -702.521,
"action_params": "6"
},
{
"id": 2,
"x": 5332.418,
"y": -701.686,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": 5327.1543,
"y": -698.0396,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
}
]
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "18-全自动沙漠书-火把02(待补档)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "19-全自动沙漠书-火把03(待补档)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "20-全自动沙漠书-隐藏火把01(待补档)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "21-全自动沙漠书-前往遗迹03(待补档)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "22-全自动沙漠书-开启遗迹03(待补档)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "23-全自动沙漠书-战斗02(待补档)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "24-全自动沙漠书-前往遗迹04(待补档)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "25-全自动沙漠书-对话07(待补档)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "26-全自动沙漠书-解密01(待补档)",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -0,0 +1,21 @@
{
"info": {
"name": "27-全自动沙漠书-更新占用",
"type": "collect",
"authors": [
{
"name": "小大",
"links": "https://github.com/xd1145"
}
],
"version": "1.0",
"description": "全自动沙漠书",
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [],
"last_modified_time": 1754885099680,
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": []
}

View File

@@ -16,7 +16,8 @@
"双手剑"
],
"last_modified_time": 1752695211025,
"enable_monster_loot_split": false
"enable_monster_loot_split": false,
"author": "this-Fish"
},
"positions": [
{
@@ -62,7 +63,7 @@
"y": -2611.1,
"action": "combat_script",
"move_mode": "walk",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.4),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.7);",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.4),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.7),e;",
"type": "orientation"
},
{

View File

@@ -2,77 +2,79 @@
"info": {
"name": "A02-紫晶块-稻妻-鸣神岛-绀田村01-(有战斗,小怪)-5个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.47.0",
"bgi_version": "0.45.0",
"tags": [
"双手剑",
"小怪"
],
"last_modified_time": 1751103029339,
"last_modified_time": 1754877243909,
"authors": [
{
"name": "蜜柑魚",
"links": "https://github.com/this-Fish"
}
]
],
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": -4124.54,
"y": -2759.87,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -4094.21,
"y": -2747.25,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": -4065.99,
"y": -2763.1,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": -4040.42,
"y": -2802.05,
"type": "target",
"move_mode": "dash",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "dash",
"action_params": "wait(0.5)",
"type": "target"
},
{
"id": 5,
"x": -4024.67,
"y": -2817.47,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": -4024.02,
"y": -2828.33,
"type": "path",
"move_mode": "dash",
"x": -4021.4766,
"y": -2830.918,
"action": "fight",
"move_mode": "dash",
"action_params": "",
"locked": false,
"type": "path",
"point_ext_params": {
"misidentification": {
"type": [
@@ -87,123 +89,120 @@
},
{
"id": 7,
"x": -4024.02,
"y": -2828.33,
"type": "path",
"move_mode": "walk",
"x": -4021.4766,
"y": -2830.918,
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": -4034.8,
"y": -2797.4,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 9,
"x": -4035.85,
"y": -2805.09,
"type": "target",
"move_mode": "walk",
"action": "mining",
"move_mode": "walk",
"action_params": "",
"locked": false
"type": "target"
},
{
"id": 10,
"x": -4035.85,
"y": -2805.09,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 11,
"x": -4034.22,
"y": -2809.61,
"type": "target",
"move_mode": "walk",
"action": "mining",
"move_mode": "walk",
"action_params": "",
"locked": false
"type": "target"
},
{
"id": 12,
"x": -4034.22,
"y": -2809.61,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 13,
"x": -4036.41,
"y": -2810.36,
"type": "target",
"move_mode": "walk",
"action": "mining",
"move_mode": "walk",
"action_params": "",
"locked": false
"type": "target"
},
{
"id": 14,
"x": -4036.41,
"y": -2810.36,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 15,
"x": -4025.08,
"y": -2817.49,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 16,
"x": -4029.85,
"y": -2815.07,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 17,
"x": -4029.85,
"y": -2815.07,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 18,
"x": -4035.13,
"y": -2818.36,
"type": "target",
"move_mode": "jump",
"action": "mining",
"action_params": ""
"move_mode": "jump",
"action_params": "",
"type": "target"
},
{
"id": 19,
"x": -4035.15,
"y": -2818.39,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(1)"
"move_mode": "walk",
"action_params": "wait(1)",
"type": "path"
}
]
}

View File

@@ -2,6 +2,7 @@
"info": {
"name": "A03-紫晶块-稻妻-鸣神岛-绀田村02-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "A04-紫晶块-稻妻-鸣神岛-绀田村03-(有战斗,小怪)-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,96 +2,72 @@
"info": {
"name": "A05-紫晶块-稻妻-鸣神岛-荒海-8~9个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",
"bgi_version": "0.47.0",
"bgi_version": "0.45.0",
"tags": [
"双手剑"
],
"last_modified_time": 1751280231662,
"last_modified_time": 1754878077684,
"authors": [
{
"name": "蜜柑魚",
"links": "https://github.com/this-Fish"
}
]
],
"enable_monster_loot_split": false,
"map_match_method": ""
},
"positions": [
{
"id": 1,
"x": -4217.88,
"y": -2397.88,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -4210.65,
"y": -2338.82,
"action": "combat_script",
"move_mode": "fly",
"action_params": "j,wait(1),j,attack(0.2)",
"type": "path"
},
{
"id": 3,
"x": -4210.65,
"y": -2338.82,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": -4199.15,
"y": -2342.3,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 5,
"x": -4198.13,
"y": -2345.39,
"type": "target",
"move_mode": "walk",
"action": "",
"type": "teleport",
"x": -4217.5879,
"y": -2397.5205,
"action_params": ""
},
{
"id": 6,
"x": -4179.55,
"y": -2349.85,
"action": "stop_flying",
"id": 2,
"x": -4164.9453,
"y": -2387.1729,
"type": "path",
"move_mode": "fly",
"action_params": "",
"type": "target"
"action": "combat_script",
"action_params": "j,wait(2),j"
},
{
"id": 7,
"x": -4184.65,
"y": -2351.01,
"id": 3,
"x": -4179.55,
"y": -2349.85,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 4,
"x": -4183.8613,
"y": -2350.5459,
"action": "mining",
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 8,
"x": -4184.65,
"y": -2351.01,
"id": 5,
"x": -4183.8613,
"y": -2350.5459,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 9,
"id": 6,
"x": -4182.12,
"y": -2345.95,
"action": "mining",
@@ -100,7 +76,7 @@
"type": "target"
},
{
"id": 10,
"id": 7,
"x": -4182.16,
"y": -2345.88,
"action": "combat_script",
@@ -109,7 +85,7 @@
"type": "path"
},
{
"id": 11,
"id": 8,
"x": -4180.43,
"y": -2354.35,
"action": "mining",
@@ -118,7 +94,7 @@
"type": "target"
},
{
"id": 12,
"id": 9,
"x": -4180.43,
"y": -2354.35,
"action": "combat_script",
@@ -127,7 +103,7 @@
"type": "path"
},
{
"id": 13,
"id": 10,
"x": -4166.19,
"y": -2347.2,
"action": "",
@@ -136,7 +112,7 @@
"type": "path"
},
{
"id": 14,
"id": 11,
"x": -4165.43,
"y": -2328.98,
"action": "mining",
@@ -145,7 +121,7 @@
"type": "target"
},
{
"id": 15,
"id": 12,
"x": -4165.33,
"y": -2328.96,
"action": "combat_script",
@@ -154,7 +130,7 @@
"type": "path"
},
{
"id": 16,
"id": 13,
"x": -4165.22,
"y": -2322.14,
"action": "mining",
@@ -163,7 +139,7 @@
"type": "target"
},
{
"id": 17,
"id": 14,
"x": -4165.22,
"y": -2322.14,
"action": "combat_script",
@@ -172,7 +148,7 @@
"type": "path"
},
{
"id": 18,
"id": 15,
"x": -4162.23,
"y": -2299.39,
"action": "",
@@ -181,7 +157,7 @@
"type": "path"
},
{
"id": 19,
"id": 16,
"x": -4167.18,
"y": -2294.2,
"action": "",
@@ -190,16 +166,16 @@
"type": "path"
},
{
"id": 20,
"id": 17,
"x": -4244.83,
"y": -2205.28,
"action": "combat_script",
"move_mode": "",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.2),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.2);",
"move_mode": "walk",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.2),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.2),e;",
"type": "orientation"
},
{
"id": 21,
"id": 18,
"x": -4244.83,
"y": -2205.28,
"action": "",
@@ -208,7 +184,7 @@
"type": "path"
},
{
"id": 22,
"id": 19,
"x": -4258.99,
"y": -2196.27,
"action": "",
@@ -217,7 +193,7 @@
"type": "target"
},
{
"id": 23,
"id": 20,
"x": -4256.82,
"y": -2198.13,
"action": "mining",
@@ -238,7 +214,7 @@
}
},
{
"id": 24,
"id": 21,
"x": -4256.82,
"y": -2198.13,
"action": "combat_script",
@@ -247,7 +223,7 @@
"type": "path"
},
{
"id": 25,
"id": 22,
"x": -4253.16,
"y": -2201.33,
"action": "mining",
@@ -256,7 +232,7 @@
"type": "target"
},
{
"id": 26,
"id": 23,
"x": -4253.16,
"y": -2201.33,
"action": "combat_script",
@@ -265,7 +241,7 @@
"type": "path"
},
{
"id": 27,
"id": 24,
"x": -4251.25,
"y": -2206.2,
"action": "mining",
@@ -274,7 +250,7 @@
"type": "target"
},
{
"id": 28,
"id": 25,
"x": -4251.17,
"y": -2206.19,
"action": "combat_script",
@@ -283,7 +259,7 @@
"type": "path"
},
{
"id": 29,
"id": 26,
"x": -4253.01,
"y": -2208.1,
"action": "mining",
@@ -292,7 +268,7 @@
"type": "target"
},
{
"id": 30,
"id": 27,
"x": -4253.02,
"y": -2208.11,
"action": "combat_script",

View File

@@ -147,8 +147,8 @@
},
{
"id": 15,
"x": -4406.84,
"y": -2474.4,
"x": -4406.8359,
"y": -2474.4043,
"type": "path",
"move_mode": "walk",
"action": "",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "A07-紫晶块-稻妻-鸣神岛-神里屋敷-北-(有战斗,小怪)-4个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "A08-紫晶块-稻妻-鸣神岛-神里屋敷-南-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "A09-紫晶块-稻妻-鸣神岛-稻妻城-5个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "B01-紫晶块-稻妻-神無冢-九條陣屋-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "B02-紫晶块-稻妻-神無冢-踏鞴砂-大炮1-7~10个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "B03-紫晶块-稻妻-神無冢-踏鞴砂-大炮2-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "B04-紫晶块-稻妻-神无冢-踏鞴砂-借景之馆-(有战斗,小怪)-3~5个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "B05-紫晶块-稻妻-神無冢-踏鞴砂-南-5个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "B06-紫晶块-稻妻-神无冢-踏鞴砂-西南-8个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "B07-紫晶块-稻妻-神无冢-名椎滩-(有战斗,小怪)-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",
@@ -52,7 +53,7 @@
"y": -3572.89,
"action": "combat_script",
"move_mode": "walk",
"action_params": "玛薇卡 w(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.85);",
"action_params": "玛薇卡 w(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.85),e;",
"type": "orientation"
},
{

View File

@@ -2,6 +2,7 @@
"info": {
"name": "C01-紫晶块-稻妻-八酝島-名椎滩-西-2个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",
@@ -42,7 +43,7 @@
"y": -3533.1,
"action": "combat_script",
"move_mode": "walk",
"action_params": "玛薇卡 w(0.1),e(hold),wait(0.05),w(4.2);",
"action_params": "玛薇卡 w(0.1),e(hold),wait(0.05),w(4.2),e;",
"type": "path"
},
{

View File

@@ -30,8 +30,8 @@
},
{
"id": 2,
"x": -2181.5,
"y": -3466.12,
"x": -2181.502,
"y": -3466.1211,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -39,8 +39,8 @@
},
{
"id": 3,
"x": -2176.68,
"y": -3440.27,
"x": -2176.6846,
"y": -3440.2725,
"type": "path",
"move_mode": "dash",
"action": "",
@@ -84,8 +84,8 @@
},
{
"id": 8,
"x": -2179.97,
"y": -3422.44,
"x": -2179.9658,
"y": -3422.4355,
"type": "target",
"move_mode": "walk",
"action": "",
@@ -102,8 +102,8 @@
},
{
"id": 10,
"x": -2184.81,
"y": -3422.47,
"x": -2184.8128,
"y": -3422.4688,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(1)",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "C03-紫晶块-稻妻-八酝岛-椛染之庭-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "C04-紫晶块-稻妻-八酝岛-绯木村-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",
@@ -60,7 +61,7 @@
"y": -3759.99,
"action": "combat_script",
"move_mode": "walk",
"action_params": "玛薇卡 w(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.2),j,wait(0.1),j,wait(0.05),j,wait(0.5);",
"action_params": "玛薇卡 w(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.2),j,wait(0.1),j,wait(0.05),j,wait(0.5),e;",
"type": "orientation"
},
{

View File

@@ -2,6 +2,7 @@
"info": {
"name": "C05-紫晶块-稻妻-八酝岛-七天神像-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",
@@ -119,4 +120,4 @@
"type": "path"
}
]
}
}

View File

@@ -2,6 +2,7 @@
"info": {
"name": "C06-紫晶块-稻妻-八酝岛-阵代屋敷-西-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -210,8 +210,8 @@
},
{
"id": 22,
"x": -2279.05,
"y": -3965.19,
"x": -2279.0527,
"y": -3965.1865,
"type": "target",
"move_mode": "walk",
"action": "",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "C08-紫晶块-稻妻-八酝岛-蛇骨矿洞-东-(有战斗,小怪)-4个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "D01-紫晶块-稻妻-海衹岛-水月池-南-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "D02-紫晶块-稻妻-海衹岛-望泷村-东-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -16,7 +16,8 @@
"双手剑"
],
"last_modified_time": 1752688788189,
"enable_monster_loot_split": false
"enable_monster_loot_split": false,
"author": "this-Fish"
},
"positions": [
{
@@ -52,7 +53,7 @@
"y": -3988.36,
"action": "combat_script",
"move_mode": "dash",
"action_params": "玛薇卡 wait(0.11),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.9),dash(0.1);",
"action_params": "玛薇卡 wait(0.11),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.9),dash(0.1),e;",
"type": "orientation"
},
{

View File

@@ -2,6 +2,7 @@
"info": {
"name": "D04-紫晶块-稻妻-海衹岛-望泷村02-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "D05-紫晶块-稻妻-海衹岛-珊瑚宫-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "D06-紫晶块-稻妻-海衹岛-七天神像-5个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",
@@ -123,7 +124,7 @@
"y": -3791.85,
"action": "combat_script",
"move_mode": "fly",
"action_params": "keypress(VK_X),wait(0.2),attack(0.2)",
"action_params": "wait(0.3),keypress(VK_X),wait(0.2),attack(0.2)",
"type": "target"
},
{

View File

@@ -2,6 +2,7 @@
"info": {
"name": "E01-紫晶块-稻妻-清籁岛-天云峠(有战斗,高危,精英200x3)-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -16,7 +16,8 @@
"双手剑"
],
"last_modified_time": 1752691152211,
"enable_monster_loot_split": false
"enable_monster_loot_split": false,
"author": "this-Fish"
},
"positions": [
{
@@ -160,7 +161,7 @@
"y": -5105.72,
"action": "combat_script",
"move_mode": "dash",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.02),j,wait(0.5);",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.02),j,wait(0.5),e;",
"type": "orientation"
},
{

View File

@@ -2,6 +2,7 @@
"info": {
"name": "E03-紫晶块-稻妻-清籁岛-越石村-8个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "E04-紫晶块-稻妻-清籁岛-越石村左(有戰鬥,小怪)-2个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "E05-紫晶块-稻妻-清籁岛-沉眠之庭-7个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "F01-紫晶块-稻妻-鹤观-黄金王兽旁1-2个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "F02-紫晶块-稻妻-鹤观-黄金王兽旁2(有战斗,高危,精英400x1,200x1)-2个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "F03-紫晶块-稻妻-鹤观-逢岳之野下-4个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "F04-紫晶块-稻妻-鹤观-菅名山-4个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",
@@ -51,7 +52,7 @@
"y": -6406.19,
"action": "combat_script",
"move_mode": "walk",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.5);",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.5),e;",
"type": "orientation"
},
{

View File

@@ -2,6 +2,7 @@
"info": {
"name": "F05-紫晶块-稻妻-鹤观-荗知祭场左上-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "F06-紫晶块-稻妻-鹤观-知比山-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "F07-紫晶块-稻妻-鹤观-七天神像-2个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Teyvat",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G01-紫晶块-渊下宫-蛇肠之路下-2个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G02-紫晶块-渊下宫-蛇心之地下(定位不准,有战斗,小怪)-4个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G03-紫晶块-渊下宫-蛇心之地(有战斗,小怪)-4个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G04-紫晶块-渊下宫-蛇心之地左上01(有战斗,小怪)-3个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G05-紫晶块-渊下宫-蛇心之地左上02-2个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G06-紫晶块-渊下宫-蛇心之地左上03(有战斗,火免,精英200x1,小怪)-4个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G07-紫晶块-渊下宫-蛇心之地右-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",
@@ -160,7 +161,7 @@
"y": -82.7,
"action": "combat_script",
"move_mode": "dash",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.5),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.8);",
"action_params": "玛薇卡 wait(0.2),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.5),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.8),e;",
"type": "orientation"
},
{

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G08-紫晶块-渊下宫-大日御舆-4个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",
@@ -33,7 +34,7 @@
"y": 122.89,
"action": "combat_script",
"move_mode": "dash",
"action_params": "玛薇卡 w(0.1),e(hold),wait(0.05),w(2.5);",
"action_params": "玛薇卡 w(0.1),e(hold),wait(0.05),w(2.5),e;",
"type": "path"
},
{

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G09-紫晶块-渊下宫-狹間之街01(有战斗,小怪)-5个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G10-紫晶块-渊下宫-狹間之街02(有战斗,火免,精英200x1,小怪)-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",
@@ -53,7 +54,7 @@
"y": 655.2,
"action": "combat_script",
"move_mode": "dash",
"action_params": "玛薇卡 wait(0.15),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.2),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.1);",
"action_params": "玛薇卡 wait(0.15),e(hold),wait(0.05),keydown(w),wait(0.01),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.2),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(1.0),j,wait(0.15),j,wait(0.1),j,wait(0.01),j,wait(0.1),e;",
"type": "orientation"
},
{

View File

@@ -2,6 +2,7 @@
"info": {
"name": "G11-紫晶块-渊下宫-常夜灵庙下-2个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
"description": "",
"map_name": "Enkanomiya",

View File

@@ -16,7 +16,8 @@
"双手剑"
],
"last_modified_time": 1752694794120,
"enable_monster_loot_split": false
"enable_monster_loot_split": false,
"author": "this-Fish"
},
"positions": [
{