1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-06-07 12:17:12 +08:00

refactor(EntityBase): 将BASEBALL和BASKETBALL数量改为无限

测试时将BASEBALL和BASKETBALL的初始数量从500改为无限(INF),便于测试场景使用
This commit is contained in:
2025-09-21 16:50:09 +08:00
parent e5b23e7715
commit 4cb2b97586
+2 -2
View File
@@ -53,8 +53,8 @@ var attackCooldowner = {
0: CooldownTimer.new()
}
var inventory = {
ItemStore.ItemType.BASEBALL: 500,
ItemStore.ItemType.BASKETBALL: 500,
ItemStore.ItemType.BASEBALL: INF, # 测试一下
ItemStore.ItemType.BASKETBALL: INF,
ItemStore.ItemType.APPLE: 5,
ItemStore.ItemType.BEACHBALL: 0,
ItemStore.ItemType.SOUL: 0,