feat(config): 更新公会捐赠配置并增加转换次数

- 修改 GuildDonateConfig.json 中的 limittimes 字段,从 5 调整为 50
- 在 json2lua.js 中添加 GuildDonateConfig 到处理列表,以便进行 JSON 到 Lua 的转换
This commit is contained in:
2025-01-24 19:02:39 +08:00
parent de74aaf33a
commit 200dc23305
2 changed files with 5 additions and 1 deletions

View File

@@ -1 +1,4 @@
{"2":{"staticcounttype":30,"type":2,"cost":200000,"adddonate":20,"addcion":20,"limittimes":5},"3":{"staticcounttype":31,"type":3,"cost":20,"adddonate":88,"addcion":88,"limittimes":5}}
{
"2": { "staticcounttype": 30, "type": 2, "cost": 200000, "adddonate": 20, "addcion": 20, "limittimes": 50 },
"3": { "staticcounttype": 31, "type": 3, "cost": 20, "adddonate": 88, "addcion": 88, "limittimes": 50 }
}

View File

@@ -12,6 +12,7 @@ const scope = [
"ActivitiesConf",
"UpstarPriceConfig",
"UpstarConfig",
"GuildDonateConfig",
// "NpcTransConf"
// "MergeTotal", "RecyclingSettingConfig", "UpstarConfig",
].filter(Boolean);