1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 06:51:54 +08:00

fix: 将BASEBALL和BASKETBALL的初始数量从INF改为200

测试用的无限数量已被移除,调整为合理的初始值200以匹配游戏平衡需求
This commit is contained in:
2025-09-21 17:00:30 +08:00
parent e4b0f2e5f3
commit ca1d66a204
+2 -2
View File
@@ -53,8 +53,8 @@ var attackCooldowner = {
0: CooldownTimer.new()
}
var inventory = {
ItemStore.ItemType.BASEBALL: INF, # 测试一下
ItemStore.ItemType.BASKETBALL: INF,
ItemStore.ItemType.BASEBALL: 200,
ItemStore.ItemType.BASKETBALL: 200,
ItemStore.ItemType.APPLE: 5,
ItemStore.ItemType.BEACHBALL: 0,
ItemStore.ItemType.SOUL: 0,