refactor(config): 调整物品合成配置

- 修改了多个物品的合成数量和结果物品 ID
- 优化了合成次数的设置,提高了部分物品的合成效率
- 统一了合成结果物品的类型和数量
This commit is contained in:
2025-01-27 20:14:56 +08:00
parent 608e016890
commit a79ce8d06f
2 changed files with 53 additions and 53 deletions

View File

@@ -131,7 +131,7 @@ const start = () => {
values.forEach((v, i) => {
const reg = new RegExp(`S${i + 1}`, "g");
if (Array.isArray(v)) {
str = str.replace(reg, v[i]);
str = str.replace(reg, v[index]);
} else str = str.replace(reg, v + index * interval[i]);
});
return str;