From 7ddd9ecf84150474d082fc29141873bf81168c92 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: Mon, 2 Feb 2026 10:18:49 +0800 Subject: [PATCH] =?UTF-8?q?fix(Weapons/HXD):=20=E8=B0=83=E6=95=B4=E6=94=BB?= =?UTF-8?q?=E5=87=BB=E5=8A=9B=E8=AE=A1=E7=AE=97=E5=85=AC=E5=BC=8F=E7=B3=BB?= =?UTF-8?q?=E6=95=B0=E4=BB=8E2=E6=94=B9=E4=B8=BA1.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 平衡HXD武器的攻击力增长,避免后期数值膨胀 --- scripts/Contents/Weapons/HXD.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Contents/Weapons/HXD.gd b/scripts/Contents/Weapons/HXD.gd index d8a0617..6bab0e4 100644 --- a/scripts/Contents/Weapons/HXD.gd +++ b/scripts/Contents/Weapons/HXD.gd @@ -2,7 +2,7 @@ extends Weapon func update(to: int, origin: Dictionary, _entity: EntityBase): - origin["atk"] += 2 * to * soulLevel + origin["atk"] += 1.5 * to * soulLevel return origin func attack(entity: EntityBase): for i in readStore("atk"):