From a809d97464f3d75f4fd7a921202168dd03c89573 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: Sat, 20 Sep 2025 17:23:57 +0800 Subject: [PATCH] =?UTF-8?q?fix(Weapon):=20=E8=B0=83=E6=95=B4costBeachball?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=80=BC=E4=BB=8E100=E5=88=B0500?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改武器基础消耗值以平衡游戏经济系统 --- scripts/Structs/Weapon.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Structs/Weapon.gd b/scripts/Structs/Weapon.gd index e16ebe2..08b6ef1 100644 --- a/scripts/Structs/Weapon.gd +++ b/scripts/Structs/Weapon.gd @@ -7,7 +7,7 @@ class_name Weapon @export var quality: WeaponName.Quality = WeaponName.Quality.COMMON @export var typeTopic: WeaponName.TypeTopic = WeaponName.TypeTopic.IMPACT @export var soulLevel: int = 1 -@export var costBeachball: int = 100 +@export var costBeachball: int = 500 @export var store: Dictionary = { "atk": 10 }