更新 js: 背包统计采集系统 中 对JS脚本产出档案剖析用网页 (#1247)

* Update 对产出的latest_record.txt档案进行剖析用的网页@由蜜柑魚制作.html

* Update 对产出的latest_record.txt档案进行剖析用的网页@由蜜柑魚制作.html

* Delete repo/pathing/矿物/紫晶块/紫晶块之大剑矿闻录@蜜柑魚 directory

* 地圖追蹤 : 紫晶块之大剑矿闻录 路徑優化 補充戰后復位

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

* fix: authors

---------

Co-authored-by: GitHub Actions Bot <actions@github.com>
Co-authored-by: 起个名字好难 <25520958+MisakaAldrich@users.noreply.github.com>
This commit is contained in:
this-Fish
2025-07-01 00:16:58 +08:00
committed by GitHub
parent b1030f6017
commit 367e36f7cd
18 changed files with 1197 additions and 961 deletions

View File

@@ -6,8 +6,9 @@
请先至少扫瞄两次记录
功能
1.显示两次扫描记录中,背包材料各个物品的变更数量
2.当物品数量大于9000时会标记红色提示用户作出处理
2.点击表格中的标题"变更数量",切换变更数量 由少至多 或 由多至少 排序
3.怪物掉落素材独有,依照稀有度排序,快速看到多了多少个不能分解的紫色、蓝色材料
4.当物品数量大于9000时会标记红色提示用户作出处理
快捷键
Alt+f = 进入或退出全屏模式
w = 向上滚动
@@ -22,6 +23,9 @@
适配各种Windows系统时间格式避免因时间格式不同而不显示的问题
1.3
00:00~06:30 预设深色模式
1.4
新增 依据背包材料数量排序
点击表格中的标题[较新日斯],切换依据背包材料数量 由少至多 或 由多至少 排序
-->
<!DOCTYPE html>
<html lang="zh-TW">
@@ -403,8 +407,10 @@
/* 排序按钮样式 */
.sortable {
cursor: pointer;
position: relative;
padding-right: 20px;
/* 为箭头留出空间 */
cursor: pointer;
}
.sortable:hover {
@@ -416,7 +422,7 @@
}
.sortable::after {
content: "";
content: "";
position: absolute;
right: 8px;
font-size: 0.8em;
@@ -551,6 +557,18 @@
border: 2px dashed #4a6fa5;
background-color: #1a2a3a;
}
/* 新增样式:未激活排序的指示符 */
.sortable.inactive::after {
content: "↕";
color: #999;
opacity: 0.5;
}
/* 深色模式下的未激活排序指示符 */
body.dark-mode .sortable.inactive::after {
color: #aaa;
}
</style>
</head>
@@ -878,7 +896,6 @@
if (scans.length < 2) continue;
const latestScan = scans[0];
const previousScan = scans[1];
console.log("N:" + scans[0].timestamp + ":" + scans[1].timestamp)
// 创建表格
const section = document.createElement('div');
@@ -896,8 +913,9 @@
<button class="rare-sort-btn">稀有度排序</button>
</th>
<th>${previousScan.timestamp}</th>
<th>${latestScan.timestamp}</th>
<th class="sortable" data-sort="desc">变更数量</th>
<!-- 添加 inactive 类表示初始未激活状态 -->
<th class="sortable inactive" data-sort-type="newQty" data-sort="none">${latestScan.timestamp}</th>
<th class="sortable" data-sort-type="change" data-sort="desc">变更数量</th>
</tr>
</thead>
<tbody>
@@ -907,7 +925,7 @@
const tbody = section.querySelector('tbody');
const toggleBtn = section.querySelector('.category-header');
const sortHeader = section.querySelector('.sortable');
const sortHeaders = section.querySelectorAll('.sortable');
const rareSortBtn = section.querySelector('.rare-sort-btn');
// 添加折叠功能
@@ -922,33 +940,65 @@
}
});
// 添加变更数量排序功能
sortHeader.addEventListener('click', function () {
const currentSort = this.getAttribute('data-sort');
const newSort = currentSort === 'desc' ? 'asc' : 'desc';
this.setAttribute('data-sort', newSort);
// 为所有可排序列添加点击事件
sortHeaders.forEach(header => {
header.addEventListener('click', function () {
const sortType = this.getAttribute('data-sort-type');
const currentSort = this.getAttribute('data-sort');
// 新排序指示器
this.classList.remove('asc', 'desc');
this.classList.add(newSort);
// 确定新排序方向
let newSort;
if (currentSort === 'none') {
newSort = 'desc'; // 从未激活状态开始设为降序
} else {
newSort = currentSort === 'desc' ? 'asc' : 'desc';
}
// 获取当前稀有度排序状态
const useRareSort = rareSortBtn.classList.contains('active');
sortTable(tbody, newSort, useRareSort);
// 更新排序状态
this.setAttribute('data-sort', newSort);
// 移除所有排序状态类
this.classList.remove('asc', 'desc', 'inactive');
// 添加新状态类
this.classList.add(newSort);
// 重置其他排序列的状态
sortHeaders.forEach(otherHeader => {
if (otherHeader !== this) {
otherHeader.setAttribute('data-sort', 'none');
otherHeader.classList.remove('asc', 'desc');
otherHeader.classList.add('inactive');
}
});
// 获取稀有度排序状态
const useRareSort = rareSortBtn.classList.contains('active');
// 调用排序函数
sortTable(tbody, sortType, newSort, useRareSort);
});
});
// 添加稀有度排序功能
// 更新稀有度排序按钮事件
rareSortBtn.addEventListener('click', function (e) {
e.stopPropagation();
// 切换按钮状态
const isActive = this.classList.toggle('active');
// 获取当前变更数量的排序方向
const sortDirection = sortHeader.getAttribute('data-sort');
// 获取当前激活的排序
const activeHeader = section.querySelector('.sortable.asc, .sortable.desc');
let sortType = 'change'; // 默认使用变更数量排序
let sortDirection = 'desc';
// 重新排序表格
sortTable(tbody, sortDirection, isActive);
if (activeHeader) {
sortType = activeHeader.getAttribute('data-sort-type');
sortDirection = activeHeader.getAttribute('data-sort');
}
// 重新排序
sortTable(tbody, sortType, sortDirection, isActive);
});
// 处理每个物品
@@ -981,11 +1031,11 @@
// 检查数量是否超过9000
const row = document.createElement('tr');
row.innerHTML = `
<td class="${rarityClass}">${item}</td>
<td class="${previousQty > 9000 ? 'high-quantity' : ''}">${previousQty}</td>
<td class="${latestQty > 9000 ? 'high-quantity' : ''}">${latestQty}</td>
<td class="${changeClass}">${changeSign}${change}</td>
`;
<td class="${rarityClass}">${item}</td>
<td class="${previousQty > 9000 ? 'high-quantity' : ''}">${previousQty}</td>
<td class="${latestQty > 9000 ? 'high-quantity' : ''}">${latestQty}</td>
<td class="${changeClass}">${changeSign}${change}</td>
`;
// 存储稀有度等级用于排序
row.dataset.rarity = getRarityLevel(item);
@@ -997,7 +1047,15 @@
if (tbody.children.length > 0) {
resultsContainer.appendChild(section);
// 初始排序(由多到少)
sortTable(tbody, 'desc', false);
sortTable(tbody, 'change', 'desc', false);
// 给变更数量列添加默认排序指示
const changeHeader = section.querySelector('[data-sort-type="change"]');
changeHeader.classList.add('desc');
// 给较新日期列添加未激活指示
const newQtyHeader = section.querySelector('[data-sort-type="newQty"]');
newQtyHeader.classList.add('inactive');
}
}
@@ -1007,14 +1065,11 @@
}
}
// 表格排序函数
function sortTable(tbody, sortDirection, useRareSort) {
// 排序函数
function sortTable(tbody, sortType, sortDirection, useRareSort) {
const rows = Array.from(tbody.querySelectorAll('tr'));
rows.sort((a, b) => {
const aChange = parseInt(a.cells[3].textContent);
const bChange = parseInt(b.cells[3].textContent);
// 如果启用了稀有度排序
if (useRareSort) {
const aRarity = parseInt(a.dataset.rarity);
@@ -1026,8 +1081,25 @@
}
}
// 再按变更数量排序
return sortDirection === 'desc' ? bChange - aChange : aChange - bChange;
// 根据排序类型获取值
let aValue, bValue;
if (sortType === 'change') {
// 变更数量在第四列索引3
aValue = parseInt(a.cells[3].textContent);
bValue = parseInt(b.cells[3].textContent);
} else if (sortType === 'newQty') {
// 新时间数量在第三列索引2
aValue = parseInt(a.cells[2].textContent);
bValue = parseInt(b.cells[2].textContent);
} else {
// 默认按变更数量
aValue = parseInt(a.cells[3].textContent);
bValue = parseInt(b.cells[3].textContent);
}
// 根据排序方向排序
return sortDirection === 'desc' ? bValue - aValue : aValue - bValue;
});
// 清空表格并重新添加排序后的行

View File

@@ -88,6 +88,15 @@
},
{
"id": 7,
"x": -4024.02,
"y": -2828.33,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": -4027.03,
"y": -2806.72,
"type": "path",
@@ -96,7 +105,7 @@
"action_params": ""
},
{
"id": 8,
"id": 9,
"x": -4035.74,
"y": -2807.54,
"type": "target",
@@ -106,7 +115,7 @@
"locked": false
},
{
"id": 9,
"id": 10,
"x": -4035.74,
"y": -2807.54,
"type": "path",
@@ -114,27 +123,27 @@
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 10,
"x": -4034.22,
"y": -2809.61,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
},
{
"id": 11,
"x": -4034.22,
"y": -2809.61,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
},
{
"id": 12,
"x": -4034.22,
"y": -2809.61,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 12,
"id": 13,
"x": -4036.41,
"y": -2810.36,
"type": "target",
@@ -144,7 +153,7 @@
"locked": false
},
{
"id": 13,
"id": 14,
"x": -4036.41,
"y": -2810.36,
"type": "path",
@@ -153,7 +162,7 @@
"action_params": "wait(0.5)"
},
{
"id": 14,
"id": 15,
"x": -4028.08,
"y": -2815.49,
"type": "path",
@@ -162,7 +171,7 @@
"action_params": ""
},
{
"id": 15,
"id": 16,
"x": -4031.75,
"y": -2815.45,
"type": "target",
@@ -171,7 +180,7 @@
"action_params": ""
},
{
"id": 16,
"id": 17,
"x": -4031.78,
"y": -2815.36,
"type": "path",
@@ -180,7 +189,7 @@
"action_params": "wait(0.5)"
},
{
"id": 17,
"id": 18,
"x": -4035.43,
"y": -2818.36,
"type": "target",
@@ -189,7 +198,7 @@
"action_params": ""
},
{
"id": 18,
"id": 19,
"x": -4035.45,
"y": -2818.39,
"type": "path",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "A04-紫晶块-稻妻-鸣神岛-荒海-8个",
"name": "A04-紫晶块-稻妻-鸣神岛-荒海-8~9个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
@@ -10,7 +10,7 @@
"tags": [
"双手剑"
],
"last_modified_time": 1751105146351,
"last_modified_time": 1751280231662,
"authors": [
{
"name": "蜜柑魚",
@@ -23,227 +23,257 @@
"id": 1,
"x": -4217.88,
"y": -2397.88,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -4210.65,
"y": -2338.82,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": -4196.45,
"y": -2345.28,
"type": "target",
"move_mode": "walk",
"x": -4199.15,
"y": -2342.3,
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 4,
"x": -4179.55,
"y": -2349.85,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 5,
"x": -4184.65,
"y": -2351.01,
"type": "target",
"move_mode": "dash",
"action": "mining",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 6,
"x": -4184.65,
"y": -2351.01,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 7,
"x": -4182.12,
"y": -2345.95,
"type": "target",
"move_mode": "dash",
"action": "mining",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 8,
"x": -4182.16,
"y": -2345.88,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 9,
"x": -4166.19,
"y": -2347.2,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 10,
"x": -4165.43,
"y": -2328.98,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
},
{
"id": 11,
"x": -4165.33,
"y": -2328.96,
"x": -4180.43,
"y": -2354.35,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 12,
"x": -4165.22,
"y": -2322.14,
"id": 10,
"x": -4180.43,
"y": -2354.35,
"type": "target",
"move_mode": "walk",
"move_mode": "jump",
"action": "mining",
"action_params": "",
"locked": false
},
{
"id": 13,
"x": -4165.22,
"y": -2322.14,
"type": "path",
"id": 11,
"x": -4166.19,
"y": -2347.2,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 12,
"x": -4165.43,
"y": -2328.98,
"action": "mining",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 13,
"x": -4165.33,
"y": -2328.96,
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 14,
"x": -4162.23,
"y": -2299.4,
"type": "path",
"x": -4165.22,
"y": -2322.14,
"action": "mining",
"move_mode": "walk",
"action": "",
"action_params": ""
"action_params": "",
"type": "target"
},
{
"id": 15,
"x": -4236.39,
"y": -2239.8,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
"x": -4165.22,
"y": -2322.14,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 16,
"x": -4244.83,
"y": -2205.28,
"type": "path",
"move_mode": "dash",
"x": -4162.23,
"y": -2299.4,
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 17,
"x": -4258.99,
"y": -2196.27,
"type": "target",
"move_mode": "walk",
"x": -4236.39,
"y": -2239.8,
"action": "",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 18,
"x": -4258.28,
"y": -2198.68,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"x": -4244.83,
"y": -2205.28,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 19,
"x": -4257.91,
"y": -2198.35,
"type": "path",
"x": -4258.99,
"y": -2196.27,
"action": "",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 20,
"x": -4253.92,
"y": -2202.66,
"type": "target",
"move_mode": "walk",
"x": -4258.28,
"y": -2198.68,
"action": "mining",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target",
"point_ext_params": {
"misidentification": {
"type": [
"unrecognized",
"pathTooFar"
],
"handling_mode": "mapRecognition",
"arrival_time": 0
},
"description": "",
"monster_tag": ""
}
},
{
"id": 21,
"x": -4253.97,
"y": -2202.76,
"type": "path",
"move_mode": "walk",
"x": -4257.91,
"y": -2198.35,
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 22,
"x": -4251.25,
"y": -2206.2,
"type": "target",
"move_mode": "walk",
"x": -4253.92,
"y": -2202.66,
"action": "mining",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 23,
"x": -4251.17,
"y": -2206.19,
"type": "path",
"move_mode": "walk",
"x": -4253.97,
"y": -2202.76,
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 24,
"x": -4253.01,
"y": -2208.1,
"type": "target",
"move_mode": "jump",
"x": -4251.25,
"y": -2206.2,
"action": "mining",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 25,
"x": -4251.17,
"y": -2206.19,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 26,
"x": -4253.01,
"y": -2208.1,
"action": "mining",
"move_mode": "jump",
"action_params": "",
"type": "target"
},
{
"id": 27,
"x": -4253.02,
"y": -2208.11,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(1)"
"move_mode": "walk",
"action_params": "wait(1)",
"type": "path"
}
]
}

View File

@@ -78,6 +78,15 @@
},
{
"id": 6,
"x": -4590.93,
"y": -2448.7,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": -4566.55,
"y": -2449.24,
"type": "target",
@@ -86,7 +95,7 @@
"action_params": ""
},
{
"id": 7,
"id": 8,
"x": -4566.54,
"y": -2449.24,
"type": "path",
@@ -95,7 +104,7 @@
"action_params": "wait(0.5)"
},
{
"id": 8,
"id": 9,
"x": -4561.24,
"y": -2449.12,
"type": "target",
@@ -104,7 +113,7 @@
"action_params": ""
},
{
"id": 9,
"id": 10,
"x": -4561.14,
"y": -2449.14,
"type": "path",
@@ -113,7 +122,7 @@
"action_params": "wait(0.5)"
},
{
"id": 10,
"id": 11,
"x": -4557.48,
"y": -2446.93,
"type": "target",
@@ -123,7 +132,7 @@
"locked": false
},
{
"id": 11,
"id": 12,
"x": -4557.48,
"y": -2446.93,
"type": "path",
@@ -132,7 +141,7 @@
"action_params": "wait(0.5)"
},
{
"id": 12,
"id": 13,
"x": -4564.69,
"y": -2437.49,
"type": "path",
@@ -141,7 +150,7 @@
"action_params": ""
},
{
"id": 13,
"id": 14,
"x": -4561.12,
"y": -2441.17,
"type": "target",
@@ -150,7 +159,7 @@
"action_params": ""
},
{
"id": 14,
"id": 15,
"x": -4561.13,
"y": -2441.17,
"type": "path",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "B02-紫晶块-稻妻-神無冢-踏鞴砂-大炮1-7个",
"name": "B02-紫晶块-稻妻-神無冢-踏鞴砂-大炮1-7~10个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
@@ -10,7 +10,7 @@
"tags": [
"双手剑"
],
"last_modified_time": 1751110781021,
"last_modified_time": 1751295890043,
"authors": [
{
"name": "蜜柑魚",
@@ -23,191 +23,262 @@
"id": 1,
"x": -3393.15,
"y": -3556.05,
"type": "teleport",
"move_mode": "walk",
"action": "",
"move_mode": "walk",
"action_params": "",
"locked": false
"type": "teleport"
},
{
"id": 2,
"x": -3396.51,
"y": -3566.39,
"type": "path",
"move_mode": "fly",
"action": "",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": -3398.58,
"y": -3562.49,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 4,
"x": -3394.85,
"y": -3560.4,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 5,
"x": -3394.87,
"y": -3560.03,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(1)"
"move_mode": "walk",
"action_params": "wait(1)",
"type": "path"
},
{
"id": 6,
"x": -3393.15,
"y": -3556.05,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 7,
"x": -3386.44,
"y": -3536.52,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 8,
"x": -3380.41,
"y": -3525.65,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 9,
"x": -3383.77,
"y": -3547.37,
"type": "target",
"move_mode": "dash",
"action": "mining",
"action_params": ""
"x": -3378.82,
"y": -3531.6,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 10,
"x": -3383.8,
"y": -3547.29,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"x": -3383.77,
"y": -3547.37,
"action": "mining",
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 11,
"x": -3362.1,
"y": -3503.24,
"type": "target",
"move_mode": "dash",
"action": "mining",
"action_params": ""
"x": -3383.8,
"y": -3547.29,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 12,
"x": -3362.11,
"y": -3503.27,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"x": -3362.1,
"y": -3503.24,
"action": "mining",
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 13,
"x": -3368.61,
"y": -3496.56,
"type": "target",
"move_mode": "dash",
"action": "mining",
"action_params": ""
"x": -3362.11,
"y": -3503.27,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 14,
"x": -3368.61,
"y": -3496.54,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"y": -3496.56,
"action": "mining",
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 15,
"x": -3368.61,
"y": -3496.54,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 16,
"x": -3374.11,
"y": -3492.86,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 17,
"x": -3369.65,
"y": -3490.95,
"action": "mining",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 18,
"x": -3369.63,
"y": -3490.96,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "target"
},
{
"id": 19,
"x": -3376.49,
"y": -3500.39,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 20,
"x": -3374.29,
"y": -3502.1,
"action": "mining",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 21,
"x": -3374.29,
"y": -3502.1,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 22,
"x": -3373.57,
"y": -3498.25,
"action": "mining",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 23,
"x": -3373.57,
"y": -3498.25,
"action": "pick_around",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 24,
"x": -3388.46,
"y": -3497.06,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 25,
"x": -3406.49,
"y": -3439.82,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 16,
"x": -3369.65,
"y": -3490.95,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
},
{
"id": 17,
"x": -3369.63,
"y": -3490.96,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 18,
"x": -3425.84,
"y": -3448.41,
"type": "path",
"move_mode": "dash",
"action": "mining",
"action_params": ""
},
{
"id": 19,
"x": -3425.79,
"y": -3448.39,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 20,
"id": 26,
"x": -3418.62,
"y": -3434.61,
"type": "target",
"move_mode": "dash",
"action": "mining",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 21,
"id": 27,
"x": -3418.64,
"y": -3434.58,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(1)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 28,
"x": -3425.84,
"y": -3448.41,
"action": "mining",
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 29,
"x": -3425.79,
"y": -3448.39,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(1)",
"type": "path"
}
]
}

View File

@@ -87,6 +87,15 @@
},
{
"id": 7,
"x": -3321.8,
"y": -3928.2,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": -3315.04,
"y": -3930.46,
"action": "",
@@ -95,7 +104,7 @@
"type": "path"
},
{
"id": 8,
"id": 9,
"x": -3306.97,
"y": -3936.98,
"action": "mining",
@@ -104,7 +113,7 @@
"type": "target"
},
{
"id": 9,
"id": 10,
"x": -3306.97,
"y": -3936.98,
"action": "combat_script",
@@ -113,7 +122,7 @@
"type": "path"
},
{
"id": 10,
"id": 11,
"x": -3305.02,
"y": -3947.91,
"action": "",
@@ -122,7 +131,7 @@
"type": "path"
},
{
"id": 11,
"id": 12,
"x": -3303.23,
"y": -3943.98,
"action": "mining",
@@ -131,7 +140,7 @@
"type": "target"
},
{
"id": 12,
"id": 13,
"x": -3303.23,
"y": -3943.98,
"action": "combat_script",
@@ -140,7 +149,7 @@
"type": "path"
},
{
"id": 13,
"id": 14,
"x": -3303.13,
"y": -3961.34,
"action": "mining",
@@ -149,7 +158,7 @@
"type": "target"
},
{
"id": 14,
"id": 15,
"x": -3303.13,
"y": -3961.34,
"action": "combat_script",
@@ -158,7 +167,7 @@
"type": "path"
},
{
"id": 15,
"id": 16,
"x": -3308.24,
"y": -3944.39,
"type": "target",
@@ -168,7 +177,7 @@
"locked": false
},
{
"id": 16,
"id": 17,
"x": -3309.39,
"y": -3941.78,
"type": "path",
@@ -177,7 +186,7 @@
"action_params": ""
},
{
"id": 17,
"id": 18,
"x": -3308.67,
"y": -3942.64,
"type": "path",

View File

@@ -79,6 +79,15 @@
},
{
"id": 6,
"x": -2714.42,
"y": -3572.89,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": -2746.19,
"y": -3555.42,
"type": "target",
@@ -88,7 +97,7 @@
"locked": false
},
{
"id": 7,
"id": 8,
"x": -2746.19,
"y": -3555.42,
"type": "target",
@@ -97,7 +106,7 @@
"action_params": "wait(0.5)"
},
{
"id": 8,
"id": 9,
"x": -2749.3,
"y": -3551.26,
"type": "path",
@@ -106,7 +115,7 @@
"action_params": ""
},
{
"id": 9,
"id": 10,
"x": -2750.23,
"y": -3555.95,
"type": "target",
@@ -116,7 +125,7 @@
"locked": false
},
{
"id": 10,
"id": 11,
"x": -2750.23,
"y": -3555.95,
"type": "path",
@@ -125,7 +134,7 @@
"action_params": "wait(0.5)"
},
{
"id": 11,
"id": 12,
"x": -2753.57,
"y": -3551.78,
"type": "target",
@@ -135,7 +144,7 @@
"locked": false
},
{
"id": 12,
"id": 13,
"x": -2753.57,
"y": -3551.78,
"type": "path",

View File

@@ -101,7 +101,7 @@
"x": -2485.9,
"y": -4066.27,
"type": "path",
"move_mode": "dash",
"move_mode": "walk",
"action": "",
"action_params": "",
"locked": false

View File

@@ -10,7 +10,7 @@
"tags": [
"双手剑"
],
"last_modified_time": 1751135280493,
"last_modified_time": 1751296455354,
"authors": [
{
"name": "蜜柑魚",
@@ -23,187 +23,186 @@
"id": 1,
"x": -755.64,
"y": -4001.09,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -734.04,
"y": -4009.53,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": -678.54,
"y": -4001.61,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": -660.91,
"y": -3985.23,
"type": "path",
"move_mode": "dash",
"action": "",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 5,
"x": -650.84,
"y": -3988.36,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": -629.66,
"y": -4008.14,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 7,
"x": -632.32,
"y": -4009.12,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 8,
"x": -632.32,
"y": -4009.12,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 9,
"x": -632.8,
"y": -4017.07,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 10,
"x": -632.9,
"y": -4017.13,
"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": -624.41,
"y": -4041.38,
"type": "target",
"move_mode": "dash",
"action": "mining",
"action_params": ""
"move_mode": "dash",
"action_params": "",
"type": "target"
},
{
"id": 12,
"x": -624.33,
"y": -4041.29,
"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": -626.62,
"y": -4036.12,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 14,
"x": -626.9,
"y": -4035.34,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(1)"
"move_mode": "walk",
"action_params": "wait(1)",
"type": "path"
},
{
"id": 15,
"x": -755.58,
"y": -4001.08,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 16,
"x": -776.51,
"y": -3946.92,
"type": "target",
"move_mode": "fly",
"action": "combat_script",
"move_mode": "fly",
"action_params": "keypress(VK_SPACE),wait(2),keypress(VK_SPACE),attack(0.2)",
"locked": false
"type": "target"
},
{
"id": 17,
"x": -776.51,
"y": -3946.92,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 18,
"x": -785.39,
"y": -3947.01,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 19,
"x": -785.4,
"y": -3947.02,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 20,
"x": -785.47,
"y": -3941.81,
"type": "target",
"x": -777.63,
"y": -3934.82,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 21,
"x": -791.47,
"y": -3940.19,
"x": -784.93,
"y": -3932.23,
"type": "path",
"move_mode": "walk",
"action": "",
@@ -211,39 +210,57 @@
},
{
"id": 22,
"x": -794.43,
"y": -3941.03,
"type": "target",
"x": -791.47,
"y": -3940.19,
"action": "",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "",
"type": "path"
},
{
"id": 23,
"x": -794.42,
"y": -3941.0,
"type": "path",
"x": -794.43,
"y": -3941.03,
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 24,
"x": -797.61,
"y": -3938.93,
"type": "target",
"x": -794.42,
"y": -3941.0,
"action": "combat_script",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 25,
"x": -797.62,
"y": -3938.93,
"x": -792.85,
"y": -3937.61,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 26,
"x": -797.61,
"y": -3938.93,
"action": "mining",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 27,
"x": -797.62,
"y": -3938.93,
"action": "combat_script",
"action_params": "wait(1)"
"move_mode": "walk",
"action_params": "wait(1)",
"type": "path"
}
]
}

View File

@@ -10,7 +10,7 @@
"tags": [
"双手剑"
],
"last_modified_time": 1751136421620,
"last_modified_time": 1751297003178,
"authors": [
{
"name": "蜜柑魚",
@@ -23,173 +23,181 @@
"id": 1,
"x": -575.24,
"y": -3832.18,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": -612.87,
"y": -3808.9,
"x": -574.01,
"y": -3827.48,
"type": "path",
"move_mode": "dash",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 3,
"x": -614.37,
"y": -3798.98,
"type": "path",
"move_mode": "fly",
"action": "combat_script",
"action_params": "keypress(VK_SPACE),wait(1.75),keypress(VK_SPACE),attack(0.2)"
"x": -612.87,
"y": -3808.9,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 4,
"x": -614.38,
"x": -614.37,
"y": -3798.98,
"type": "path",
"action": "combat_script",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"action_params": "keypress(VK_SPACE),wait(1.75),keypress(VK_SPACE),attack(0.2)",
"type": "path"
},
{
"id": 5,
"x": -609.15,
"y": -3808.24,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"x": -614.38,
"y": -3798.98,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": -609.15,
"y": -3808.29,
"type": "path",
"y": -3808.24,
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 7,
"x": -613.46,
"y": -3816.45,
"type": "target",
"x": -609.15,
"y": -3808.29,
"action": "combat_script",
"move_mode": "walk",
"action": "",
"action_params": ""
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 8,
"x": -611.11,
"y": -3821.93,
"type": "target",
"x": -613.46,
"y": -3816.45,
"action": "",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "",
"type": "target"
},
{
"id": 9,
"x": -611.09,
"y": -3821.96,
"type": "target",
"x": -611.11,
"y": -3821.93,
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 10,
"x": -677.28,
"y": -3791.85,
"type": "target",
"move_mode": "fly",
"x": -611.09,
"y": -3821.96,
"action": "combat_script",
"action_params": "keypress(VK_X),wait(0.2),attack(0.2)",
"locked": false
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "target"
},
{
"id": 11,
"x": -677.28,
"y": -3791.85,
"type": "target",
"action": "combat_script",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"action_params": "keypress(VK_X),wait(0.2),attack(0.2)",
"type": "target"
},
{
"id": 12,
"x": -680.08,
"y": -3787.5,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"x": -677.28,
"y": -3791.85,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 13,
"x": -680.08,
"y": -3787.5,
"type": "path",
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 14,
"x": -671.28,
"y": -3788.68,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"x": -680.08,
"y": -3787.5,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 15,
"x": -674.02,
"y": -3787.51,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"x": -671.28,
"y": -3788.68,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 16,
"x": -674.03,
"x": -674.02,
"y": -3787.51,
"type": "path",
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 17,
"x": -675.95,
"y": -3773.81,
"type": "path",
"x": -674.03,
"y": -3787.51,
"action": "combat_script",
"move_mode": "walk",
"action": "",
"action_params": ""
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 18,
"x": -681.15,
"y": -3774.12,
"type": "target",
"x": -675.95,
"y": -3773.81,
"action": "",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "",
"type": "path"
},
{
"id": 19,
"x": -681.15,
"y": -3774.13,
"type": "path",
"y": -3774.12,
"action": "mining",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 20,
"x": -681.15,
"y": -3774.13,
"action": "combat_script",
"action_params": "wait(1)"
"move_mode": "walk",
"action_params": "wait(1)",
"type": "path"
}
]
}

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "E01-紫晶块-稻妻-清籁岛-天云峠-6个",
"name": "E01-紫晶块-稻妻-清籁岛-天云峠(有战斗,高危,精英200x3)-6个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
@@ -8,7 +8,8 @@
"map_name": "Teyvat",
"bgi_version": "0.45.0",
"tags": [
"双手剑"
"双手剑",
"精英怪"
],
"last_modified_time": 1751032792201,
"authors": [
@@ -58,6 +59,35 @@
},
{
"id": 5,
"x": -4248.25,
"y": -4644.63,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": -4238.13,
"y": -4633.35,
"type": "path",
"move_mode": "run",
"action": "fight",
"action_params": "",
"point_ext_params": {
"misidentification": {
"type": [
"unrecognized"
],
"handling_mode": "previousDetectedPoint",
"arrival_time": 0
},
"description": "遗迹机兵*3",
"monster_tag": "elite"
}
},
{
"id": 7,
"x": -4241.27,
"y": -4653.62,
"action": "",
@@ -66,7 +96,7 @@
"type": "path"
},
{
"id": 6,
"id": 8,
"x": -4253.5,
"y": -4660.46,
"action": "combat_script",
@@ -75,7 +105,7 @@
"type": "path"
},
{
"id": 7,
"id": 9,
"x": -4249.12,
"y": -4660.18,
"action": "combat_script",
@@ -84,7 +114,7 @@
"type": "path"
},
{
"id": 8,
"id": 10,
"x": -4260.42,
"y": -4663.65,
"action": "combat_script",
@@ -93,7 +123,7 @@
"type": "path"
},
{
"id": 9,
"id": 11,
"x": -4260.42,
"y": -4663.65,
"action": "stop_flying",
@@ -102,7 +132,7 @@
"type": "path"
},
{
"id": 10,
"id": 12,
"x": -4251.57,
"y": -4664.13,
"action": "mining",
@@ -112,7 +142,7 @@
"locked": false
},
{
"id": 11,
"id": 13,
"x": -4251.57,
"y": -4664.13,
"action": "combat_script",
@@ -121,7 +151,7 @@
"type": "path"
},
{
"id": 12,
"id": 14,
"x": -4253.06,
"y": -4656.03,
"type": "target",
@@ -131,7 +161,7 @@
"locked": false
},
{
"id": 13,
"id": 15,
"x": -4253.06,
"y": -4656.03,
"type": "path",
@@ -140,7 +170,7 @@
"action_params": "wait(0.5)"
},
{
"id": 14,
"id": 16,
"x": -4256.4,
"y": -4658.76,
"type": "path",
@@ -149,7 +179,7 @@
"action_params": ""
},
{
"id": 15,
"id": 17,
"x": -4255.92,
"y": -4654.71,
"type": "target",
@@ -159,7 +189,7 @@
"locked": false
},
{
"id": 16,
"id": 18,
"x": -4255.92,
"y": -4654.71,
"type": "path",
@@ -168,7 +198,7 @@
"action_params": "wait(0.5)"
},
{
"id": 17,
"id": 19,
"x": -4261.52,
"y": -4656.69,
"type": "target",
@@ -177,7 +207,7 @@
"action_params": ""
},
{
"id": 18,
"id": 20,
"x": -4261.51,
"y": -4656.69,
"type": "path",
@@ -186,7 +216,7 @@
"action_params": "wait(0.5)"
},
{
"id": 19,
"id": 21,
"x": -4266.83,
"y": -4668.9,
"type": "target",
@@ -195,7 +225,7 @@
"action_params": ""
},
{
"id": 20,
"id": 22,
"x": -4266.83,
"y": -4668.9,
"type": "path",
@@ -204,7 +234,7 @@
"action_params": "wait(0.5)"
},
{
"id": 21,
"id": 23,
"x": -4265.38,
"y": -4671.53,
"type": "target",
@@ -213,7 +243,7 @@
"action_params": ""
},
{
"id": 22,
"id": 24,
"x": -4265.37,
"y": -4671.53,
"type": "path",

View File

@@ -10,7 +10,7 @@
"tags": [
"双手剑"
],
"last_modified_time": 1751024950275,
"last_modified_time": 1751290027249,
"authors": [
{
"name": "蜜柑魚",
@@ -23,200 +23,209 @@
"id": 1,
"x": -2556.41,
"y": -6007.52,
"type": "teleport",
"move_mode": "walk",
"action": "",
"move_mode": "walk",
"action_params": "",
"locked": false
"type": "teleport"
},
{
"id": 2,
"x": -2529.39,
"y": -6077.66,
"type": "path",
"action": "combat_script",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"action_params": "keypress(VK_SPACE),wait(1.5),keypress(VK_SPACE),attack(0.2)",
"type": "path"
},
{
"id": 3,
"x": -2527.69,
"y": -6072.45,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"x": -2529.39,
"y": -6077.66,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "path",
"locked": false
},
{
"id": 4,
"x": -2527.69,
"y": -6072.44,
"type": "path",
"y": -6072.45,
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 5,
"x": -2529.77,
"y": -6073.04,
"type": "path",
"x": -2527.69,
"y": -6072.44,
"action": "combat_script",
"move_mode": "walk",
"action": "",
"action_params": ""
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 6,
"x": -2530.24,
"y": -6072.12,
"type": "target",
"x": -2529.77,
"y": -6073.04,
"action": "",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "",
"type": "path"
},
{
"id": 7,
"x": -2530.17,
"y": -6072.04,
"type": "path",
"x": -2530.24,
"y": -6072.12,
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(1)"
"action_params": "",
"type": "target"
},
{
"id": 8,
"x": -2556.41,
"y": -6007.52,
"type": "teleport",
"x": -2530.17,
"y": -6072.04,
"action": "combat_script",
"move_mode": "walk",
"action": "",
"action_params": ""
"action_params": "wait(1)",
"type": "path"
},
{
"id": 9,
"x": -2546.34,
"y": -5971.49,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"x": -2556.41,
"y": -6007.52,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 10,
"x": -2540.23,
"y": -5977.59,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
"x": -2546.34,
"y": -5971.49,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "target"
},
{
"id": 11,
"x": -2540.34,
"y": -5976.49,
"type": "target",
"x": -2540.23,
"y": -5977.59,
"action": "",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "",
"type": "target"
},
{
"id": 12,
"x": -2540.41,
"y": -5976.54,
"type": "path",
"x": -2540.34,
"y": -5976.49,
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 13,
"x": -2547.33,
"y": -5968.97,
"type": "target",
"x": -2540.41,
"y": -5976.54,
"action": "combat_script",
"move_mode": "walk",
"action": "",
"action_params": ""
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 14,
"x": -2545.73,
"y": -5966.84,
"type": "target",
"x": -2547.33,
"y": -5968.97,
"action": "",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "",
"type": "target"
},
{
"id": 15,
"x": -2545.75,
"y": -5966.81,
"type": "path",
"x": -2545.73,
"y": -5966.84,
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(1)"
"action_params": "",
"type": "target"
},
{
"id": 16,
"x": -2556.39,
"y": -6007.48,
"type": "teleport",
"x": -2545.75,
"y": -5966.81,
"action": "combat_script",
"move_mode": "walk",
"action": "",
"action_params": ""
"action_params": "wait(1)",
"type": "path"
},
{
"id": 17,
"x": -2552.78,
"y": -5997.54,
"type": "path",
"move_mode": "walk",
"x": -2556.39,
"y": -6007.48,
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 18,
"x": -2527.46,
"y": -5934.66,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"x": -2552.78,
"y": -5997.54,
"action": "",
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 19,
"x": -2533.43,
"y": -5936.21,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"x": -2527.46,
"y": -5934.66,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 20,
"x": -2533.43,
"y": -5936.18,
"type": "path",
"y": -5936.21,
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 21,
"x": -2535.4,
"y": -5935.07,
"type": "target",
"x": -2533.43,
"y": -5936.18,
"action": "combat_script",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 22,
"x": -2535.4,
"y": -5935.07,
"action": "mining",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 23,
"x": -2535.45,
"y": -5934.64,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(1)"
"move_mode": "walk",
"action_params": "wait(1)",
"type": "target"
}
]
}

View File

@@ -69,15 +69,24 @@
},
{
"id": 5,
"x": 573.9,
"y": -563.9,
"type": "target",
"x": 548.14,
"y": -563.57,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 6,
"x": 573.9,
"y": -563.9,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 7,
"x": 572.22,
"y": -564.9,
"type": "target",
@@ -86,7 +95,7 @@
"action_params": ""
},
{
"id": 7,
"id": 8,
"x": 572.22,
"y": -564.9,
"type": "path",
@@ -95,7 +104,7 @@
"action_params": "wait(0.5)"
},
{
"id": 8,
"id": 9,
"x": 573.9,
"y": -563.9,
"type": "path",
@@ -104,7 +113,7 @@
"action_params": ""
},
{
"id": 9,
"id": 10,
"x": 570.7,
"y": -562.4,
"type": "target",
@@ -113,7 +122,7 @@
"action_params": ""
},
{
"id": 10,
"id": 11,
"x": 570.7,
"y": -562.4,
"type": "path",
@@ -122,7 +131,7 @@
"action_params": "wait(0.5)"
},
{
"id": 11,
"id": 12,
"x": 574.22,
"y": -564.45,
"type": "path",
@@ -131,7 +140,7 @@
"action_params": ""
},
{
"id": 12,
"id": 13,
"x": 571.59,
"y": -544.89,
"type": "path",
@@ -140,7 +149,7 @@
"action_params": ""
},
{
"id": 13,
"id": 14,
"x": 568.0,
"y": -544.65,
"type": "target",
@@ -149,7 +158,7 @@
"action_params": ""
},
{
"id": 14,
"id": 15,
"x": 568.0,
"y": -544.65,
"type": "path",
@@ -158,7 +167,7 @@
"action_params": "wait(0.5)"
},
{
"id": 15,
"id": 16,
"x": 572.35,
"y": -538.25,
"type": "path",
@@ -167,7 +176,7 @@
"action_params": ""
},
{
"id": 16,
"id": 17,
"x": 573.5,
"y": -538.65,
"type": "target",
@@ -176,7 +185,7 @@
"action_params": ""
},
{
"id": 17,
"id": 18,
"x": 573.5,
"y": -538.65,
"type": "path",
@@ -185,7 +194,7 @@
"action_params": "wait(0.5)"
},
{
"id": 18,
"id": 19,
"x": 573.22,
"y": -538.64,
"type": "path",

View File

@@ -11,7 +11,7 @@
"双手剑",
"小怪"
],
"last_modified_time": 1750934819820,
"last_modified_time": 1751290732896,
"authors": [
{
"name": "蜜柑魚",
@@ -24,64 +24,64 @@
"id": 1,
"x": 386.97,
"y": -334.88,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 385.63,
"y": -333.53,
"type": "path",
"move_mode": "jump",
"action": "",
"action_params": ""
"move_mode": "jump",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 365.47,
"y": -315.96,
"type": "path",
"move_mode": "fly",
"action": "combat_script",
"action_params": "wait(5.5)"
"move_mode": "fly",
"action_params": "wait(5.7)",
"type": "path"
},
{
"id": 4,
"x": 356.23,
"y": -303.52,
"type": "path",
"move_mode": "fly",
"action": "combat_script",
"action_params": "wait(2)"
"move_mode": "fly",
"action_params": "wait(2.2)",
"type": "path"
},
{
"id": 5,
"x": 346.24,
"y": -299.41,
"type": "path",
"move_mode": "fly",
"action": "combat_script",
"action_params": "wait(2)"
"move_mode": "fly",
"action_params": "wait(2.2)",
"type": "path"
},
{
"id": 6,
"x": 334.63,
"y": -291.66,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 7,
"x": 334.63,
"y": -291.66,
"type": "path",
"move_mode": "walk",
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path",
"point_ext_params": {
"misidentification": {
"type": [
@@ -96,94 +96,102 @@
},
{
"id": 8,
"x": 335.0,
"y": -289.79,
"type": "target",
"x": 334.63,
"y": -291.66,
"type": "path",
"move_mode": "walk",
"action": "mining",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 335.0,
"y": -289.79,
"type": "path",
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 10,
"x": 327.92,
"y": -288.72,
"type": "target",
"x": 335.0,
"y": -289.79,
"action": "combat_script",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 11,
"x": 327.92,
"y": -288.72,
"type": "path",
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 12,
"x": 325.57,
"y": -296.36,
"type": "target",
"x": 327.92,
"y": -288.72,
"action": "combat_script",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 13,
"x": 325.57,
"y": -296.36,
"type": "path",
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 14,
"x": 326.79,
"y": -298.29,
"type": "path",
"x": 325.57,
"y": -296.36,
"action": "combat_script",
"move_mode": "walk",
"action": "",
"action_params": "",
"locked": false
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 15,
"x": 326.35,
"y": -300.32,
"type": "target",
"x": 326.79,
"y": -298.29,
"action": "",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "",
"type": "path"
},
{
"id": 16,
"x": 326.35,
"y": -300.32,
"type": "path",
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 17,
"x": 326.35,
"y": -300.32,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 18,
"x": 326.79,
"y": -298.29,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "path"
}
]
}

View File

@@ -96,6 +96,15 @@
},
{
"id": 8,
"x": 488.75,
"y": -127.46,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 9,
"x": 465.12,
"y": -124.7,
"type": "path",
@@ -104,7 +113,7 @@
"action_params": ""
},
{
"id": 9,
"id": 10,
"x": 468.0,
"y": -119.35,
"type": "target",
@@ -114,7 +123,7 @@
"locked": false
},
{
"id": 10,
"id": 11,
"x": 467.84,
"y": -118.81,
"type": "path",
@@ -123,7 +132,7 @@
"action_params": "wait(0.5)"
},
{
"id": 11,
"id": 12,
"x": 464.69,
"y": -116.12,
"type": "path",
@@ -132,7 +141,7 @@
"action_params": ""
},
{
"id": 12,
"id": 13,
"x": 464.11,
"y": -111.73,
"type": "target",
@@ -142,7 +151,7 @@
"locked": false
},
{
"id": 13,
"id": 14,
"x": 464.11,
"y": -111.73,
"type": "path",
@@ -151,7 +160,7 @@
"action_params": "wait(1)"
},
{
"id": 14,
"id": 15,
"x": 449.64,
"y": -122.14,
"type": "teleport",
@@ -160,7 +169,7 @@
"action_params": ""
},
{
"id": 15,
"id": 16,
"x": 400.56,
"y": -120.17,
"type": "path",
@@ -169,16 +178,16 @@
"action_params": "wait(0.5)"
},
{
"id": 16,
"id": 17,
"x": 318.09,
"y": -103.34,
"type": "path",
"move_mode": "fly",
"action": "combat_script",
"action_params": "keypress(VK_SPACE),wait(1.8),keypress(VK_SPACE)"
"action_params": "keypress(VK_SPACE),wait(2),keypress(VK_SPACE)"
},
{
"id": 17,
"id": 18,
"x": 327.88,
"y": -111.78,
"type": "path",
@@ -187,7 +196,7 @@
"action_params": ""
},
{
"id": 18,
"id": 19,
"x": 336.51,
"y": -121.92,
"type": "path",
@@ -196,7 +205,7 @@
"action_params": ""
},
{
"id": 19,
"id": 20,
"x": 341.13,
"y": -119.61,
"type": "target",
@@ -205,7 +214,7 @@
"action_params": ""
},
{
"id": 20,
"id": 21,
"x": 341.25,
"y": -120.2,
"type": "target",
@@ -214,7 +223,7 @@
"action_params": ""
},
{
"id": 21,
"id": 22,
"x": 341.25,
"y": -120.2,
"type": "path",

View File

@@ -88,6 +88,15 @@
},
{
"id": 7,
"x": 459.87,
"y": -235.49,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 8,
"x": 460.14,
"y": -241.95,
"type": "path",
@@ -96,7 +105,7 @@
"action_params": ""
},
{
"id": 8,
"id": 9,
"x": 467.13,
"y": -250.16,
"type": "path",
@@ -106,7 +115,7 @@
"locked": false
},
{
"id": 9,
"id": 10,
"x": 468.14,
"y": -231.65,
"type": "target",
@@ -116,7 +125,7 @@
"locked": false
},
{
"id": 10,
"id": 11,
"x": 451.3,
"y": -225.55,
"type": "path",
@@ -126,7 +135,7 @@
"locked": false
},
{
"id": 11,
"id": 12,
"x": 444.3,
"y": -228.58,
"type": "path",
@@ -135,7 +144,7 @@
"action_params": ""
},
{
"id": 12,
"id": 13,
"x": 443.46,
"y": -229.2,
"type": "target",
@@ -144,7 +153,7 @@
"action_params": ""
},
{
"id": 13,
"id": 14,
"x": 443.46,
"y": -229.2,
"type": "path",
@@ -153,7 +162,7 @@
"action_params": "wait(0.5)"
},
{
"id": 14,
"id": 15,
"x": 444.32,
"y": -229.65,
"type": "target",
@@ -162,7 +171,7 @@
"action_params": ""
},
{
"id": 15,
"id": 16,
"x": 442.83,
"y": -229.27,
"type": "path",
@@ -171,7 +180,7 @@
"action_params": ""
},
{
"id": 16,
"id": 17,
"x": 451.3,
"y": -225.55,
"type": "path",
@@ -180,7 +189,7 @@
"action_params": ""
},
{
"id": 17,
"id": 18,
"x": 468.14,
"y": -231.65,
"type": "target",
@@ -189,7 +198,7 @@
"action_params": ""
},
{
"id": 18,
"id": 19,
"x": 467.13,
"y": -250.16,
"type": "path",
@@ -198,7 +207,7 @@
"action_params": ""
},
{
"id": 19,
"id": 20,
"x": 491.97,
"y": -243.27,
"type": "path",
@@ -207,7 +216,7 @@
"action_params": ""
},
{
"id": 20,
"id": 21,
"x": 498.1,
"y": -244.02,
"type": "path",
@@ -216,7 +225,7 @@
"action_params": ""
},
{
"id": 21,
"id": 22,
"x": 495.84,
"y": -248.66,
"type": "path",
@@ -236,7 +245,16 @@
}
},
{
"id": 22,
"id": 23,
"x": 495.84,
"y": -248.66,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 24,
"x": 497.78,
"y": -238.05,
"type": "path",
@@ -245,7 +263,7 @@
"action_params": ""
},
{
"id": 23,
"id": 25,
"x": 495.27,
"y": -237.27,
"type": "target",
@@ -254,7 +272,7 @@
"action_params": ""
},
{
"id": 24,
"id": 26,
"x": 495.27,
"y": -237.27,
"type": "path",
@@ -263,7 +281,7 @@
"action_params": "wait(0.5)"
},
{
"id": 25,
"id": 27,
"x": 493.75,
"y": -242.43,
"type": "path",
@@ -273,7 +291,7 @@
"locked": false
},
{
"id": 26,
"id": 28,
"x": 493.31,
"y": -242.35,
"type": "target",
@@ -282,7 +300,7 @@
"action_params": ""
},
{
"id": 27,
"id": 29,
"x": 493.31,
"y": -242.35,
"type": "path",
@@ -291,7 +309,7 @@
"action_params": "wait(0.5)"
},
{
"id": 28,
"id": 30,
"x": 493.75,
"y": -242.43,
"type": "path",

View File

@@ -1,6 +1,6 @@
{
"info": {
"name": "G08-紫晶块-渊下宫-狹間之街(有战斗,小怪)-10个",
"name": "G08-紫晶块-渊下宫-狹間之街(有战斗,火免,精英200x1,小怪)-10个",
"type": "collect",
"author": "蜜柑魚",
"version": "1.0",
@@ -9,9 +9,10 @@
"bgi_version": "0.45.0",
"tags": [
"双手剑",
"精英怪",
"小怪"
],
"last_modified_time": 1750950604819,
"last_modified_time": 1751292839940,
"authors": [
{
"name": "蜜柑魚",
@@ -22,267 +23,167 @@
"positions": [
{
"id": 1,
"x": 626.05,
"y": 621.99,
"type": "teleport",
"move_mode": "walk",
"x": 625.37,
"y": 621.31,
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "teleport"
},
{
"id": 2,
"x": 613.0,
"y": 639.11,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
"x": 578.31,
"y": 637.1,
"action": "",
"move_mode": "dash",
"action_params": "",
"type": "path"
},
{
"id": 3,
"x": 609.57,
"y": 637.11,
"type": "target",
"move_mode": "walk",
"action": "mining",
"x": 514.37,
"y": 658.27,
"action": "fight",
"move_mode": "dash",
"action_params": "",
"locked": false
"type": "path",
"point_ext_params": {
"misidentification": {
"type": [
"unrecognized"
],
"handling_mode": "previousDetectedPoint",
"arrival_time": 0
},
"description": "火深渊法师*1、丘丘人*2、冰箭丘丘人*1",
"monster_tag": "elite"
}
},
{
"id": 4,
"x": 609.57,
"y": 637.11,
"x": 514.37,
"y": 658.27,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action": "",
"action_params": ""
},
{
"id": 5,
"x": 611.75,
"y": 633.21,
"type": "path",
"move_mode": "walk",
"x": 503.32,
"y": 665.36,
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 6,
"x": 611.13,
"y": 632.37,
"type": "target",
"move_mode": "walk",
"action": "mining",
"x": 497.53,
"y": 674.85,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"locked": false
"type": "target"
},
{
"id": 7,
"x": 611.13,
"y": 632.37,
"type": "path",
"x": 498.9,
"y": 663.93,
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 8,
"x": 604.63,
"y": 677.6,
"type": "path",
"x": 498.9,
"y": 663.93,
"action": "combat_script",
"move_mode": "walk",
"action": "",
"action_params": ""
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 9,
"x": 629.05,
"y": 669.8,
"type": "path",
"move_mode": "walk",
"x": 498.43,
"y": 676.7,
"action": "",
"action_params": ""
"move_mode": "walk",
"action_params": "",
"type": "path"
},
{
"id": 10,
"x": 632.67,
"y": 673.04,
"type": "path",
"move_mode": "walk",
"x": 502.71,
"y": 678.66,
"action": "mining",
"move_mode": "walk",
"action_params": "",
"locked": false
"type": "target"
},
{
"id": 11,
"x": 632.67,
"y": 673.04,
"type": "path",
"move_mode": "walk",
"x": 502.73,
"y": 678.76,
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 12,
"x": 636.36,
"y": 673.32,
"type": "target",
"x": 495.85,
"y": 678.81,
"action": "",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "",
"type": "target"
},
{
"id": 13,
"x": 636.36,
"y": 673.32,
"type": "path",
"x": 500.4,
"y": 707.59,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action": "",
"action_params": ""
},
{
"id": 14,
"x": 639.37,
"y": 670.4,
"type": "target",
"x": 509.16,
"y": 726.78,
"action": "",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action_params": "",
"type": "path"
},
{
"id": 15,
"x": 639.37,
"y": 670.4,
"type": "path",
"x": 516.29,
"y": 736.4,
"action": "",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(1)"
"action_params": "",
"type": "path"
},
{
"id": 16,
"x": 625.37,
"y": 621.31,
"type": "teleport",
"move_mode": "walk",
"action": "",
"action_params": ""
"x": 530.95,
"y": 763.53,
"action": "stop_flying",
"move_mode": "fly",
"action_params": "",
"type": "path"
},
{
"id": 17,
"x": 578.31,
"y": 637.1,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 18,
"x": 504.99,
"y": 653.33,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 19,
"x": 496.55,
"y": 663.96,
"type": "target",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 20,
"x": 498.9,
"y": 663.93,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
},
{
"id": 21,
"x": 498.9,
"y": 663.93,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 22,
"x": 498.43,
"y": 676.7,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 23,
"x": 502.71,
"y": 678.66,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
},
{
"id": 24,
"x": 502.73,
"y": 678.76,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
},
{
"id": 25,
"x": 495.85,
"y": 678.81,
"type": "target",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 26,
"x": 509.16,
"y": 726.78,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 27,
"x": 516.29,
"y": 736.4,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 28,
"x": 530.95,
"y": 763.53,
"type": "path",
"move_mode": "fly",
"action": "stop_flying",
"action_params": ""
},
{
"id": 29,
"x": 535.89,
"y": 768.5,
"type": "path",
"move_mode": "walk",
"action": "fight",
"move_mode": "walk",
"action_params": "",
"type": "path",
"point_ext_params": {
"misidentification": {
"type": [
@@ -296,79 +197,85 @@
}
},
{
"id": 30,
"id": 18,
"x": 535.89,
"y": 768.5,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 19,
"x": 535.45,
"y": 758.4,
"type": "target",
"move_mode": "walk",
"action": "mining",
"move_mode": "walk",
"action_params": "",
"locked": false
"type": "target"
},
{
"id": 31,
"id": 20,
"x": 535.45,
"y": 758.4,
"type": "target",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "target"
},
{
"id": 32,
"id": 21,
"x": 541.14,
"y": 765.6,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 33,
"x": 543.0,
"y": 762.7,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
"type": "path"
},
{
"id": 34,
"id": 22,
"x": 543.0,
"y": 762.7,
"type": "path",
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 35,
"id": 23,
"x": 543.0,
"y": 762.7,
"action": "combat_script",
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 24,
"x": 540.34,
"y": 770.23,
"type": "path",
"move_mode": "walk",
"action": "",
"action_params": ""
},
{
"id": 36,
"x": 542.06,
"y": 771.99,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": "",
"locked": false
"type": "path"
},
{
"id": 37,
"id": 25,
"x": 542.06,
"y": 771.99,
"type": "path",
"action": "mining",
"move_mode": "walk",
"action_params": "",
"type": "target"
},
{
"id": 26,
"x": 542.06,
"y": 771.99,
"action": "combat_script",
"action_params": "wait(1)"
"move_mode": "walk",
"action_params": "wait(1)",
"type": "path"
}
]
}

View File

@@ -10,7 +10,7 @@
"tags": [
"双手剑"
],
"last_modified_time": 1750931029549,
"last_modified_time": 1751293420336,
"authors": [
{
"name": "蜜柑魚",
@@ -77,10 +77,10 @@
"id": 7,
"x": -329.89,
"y": 131.82,
"type": "path",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"move_mode": "walk",
"action_params": "wait(0.5)",
"type": "path"
},
{
"id": 8,
@@ -93,29 +93,41 @@
},
{
"id": 9,
"x": -336.1,
"y": 128.9,
"x": -331.18,
"y": 127.45,
"type": "target",
"move_mode": "walk",
"action": "mining",
"action_params": ""
"action": "",
"action_params": "",
"point_ext_params": {
"misidentification": {
"type": [
"unrecognized",
"pathTooFar"
],
"handling_mode": "mapRecognition",
"arrival_time": 0
},
"description": "",
"monster_tag": ""
}
},
{
"id": 10,
"x": -336.1,
"y": 128.9,
"type": "path",
"action": "mining",
"move_mode": "walk",
"action": "combat_script",
"action_params": "wait(0.5)"
"action_params": "",
"type": "target"
},
{
"id": 11,
"x": -335.77,
"y": 128.54,
"action": "",
"x": -336.1,
"y": 128.9,
"action": "combat_script",
"move_mode": "walk",
"action_params": "",
"action_params": "wait(1)",
"type": "path"
}
]