From ca1d66a2040a3bdc3a2cf5dc639e08f2fd5da38e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=A8=E8=90=BD=E5=9F=BA=E5=9B=B4=E8=99=BE?= <3161880837@qq.com> Date: Sun, 21 Sep 2025 17:00:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86BASEBALL=E5=92=8CBASKETBALL?= =?UTF-8?q?=E7=9A=84=E5=88=9D=E5=A7=8B=E6=95=B0=E9=87=8F=E4=BB=8EINF?= =?UTF-8?q?=E6=94=B9=E4=B8=BA200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 测试用的无限数量已被移除,调整为合理的初始值200以匹配游戏平衡需求 --- scripts/Statemachine/EntityBase.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Statemachine/EntityBase.gd b/scripts/Statemachine/EntityBase.gd index 5dc035f..bfc1150 100644 --- a/scripts/Statemachine/EntityBase.gd +++ b/scripts/Statemachine/EntityBase.gd @@ -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,