From d84b87b1a75c6b7b5f7dca83e69ba4f3aefacc0f 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: Thu, 4 Dec 2025 22:33:52 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=AD=A6=E5=99=A8):=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E7=81=AB=E5=B1=B1=E6=AD=A6=E5=99=A8=E7=9A=84=E5=B1=9E=E6=80=A7?= =?UTF-8?q?=E5=92=8C=E4=BC=A4=E5=AE=B3=E8=AE=A1=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将火山武器的攻击力从10提升至20,海滩球消耗从300降低至200 同时略微降低dmg5的成长系数,从0.03调整为0.025 --- components/Weapons/Volcano.tscn | 4 ++-- scripts/Contents/Weapons/Volcano.gd | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Weapons/Volcano.tscn b/components/Weapons/Volcano.tscn index 87030c0..ab17d03 100644 --- a/components/Weapons/Volcano.tscn +++ b/components/Weapons/Volcano.tscn @@ -13,7 +13,7 @@ quality = 4 typeTopic = 2 costBeachball = 200 store = { -"atk": 10.0, +"atk": 20.0, "count": 1.0, "dmg1": 1.0, "dmg2": 0.5, @@ -39,7 +39,7 @@ cooldown = 1750.0 texture = ExtResource("2_hh01t") [node name="beachball" parent="container/info/infos" index="1"] -count = 300 +count = 200 [node name="soul" parent="container/info/infos" index="2"] count = 1 diff --git a/scripts/Contents/Weapons/Volcano.gd b/scripts/Contents/Weapons/Volcano.gd index fe019a7..2088aa1 100644 --- a/scripts/Contents/Weapons/Volcano.gd +++ b/scripts/Contents/Weapons/Volcano.gd @@ -7,7 +7,7 @@ func update(to: int, origin: Dictionary, _entity: EntityBase): origin["dmg2"] += 0.03 * to * soulLevel origin["dmg3"] += 0.03 * to * soulLevel origin["dmg4"] += 0.03 * to * soulLevel - origin["dmg5"] += 0.03 * to * soulLevel + origin["dmg5"] += 0.025 * to * soulLevel origin["count"] = 1 * soulLevel origin["atk"] += 2 * to * soulLevel return origin