From 7d1690cdae060a46d4541c61d23fa372346feb02 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:06:02 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=AD=A6=E5=99=A8):=20=E6=8F=90=E9=AB=98HX?= =?UTF-8?q?D=E6=AD=A6=E5=99=A8=E7=9A=84=E6=94=BB=E5=87=BB=E5=8A=9B?= =?UTF-8?q?=E5=8A=A0=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将攻击力加成从1倍提升至2倍,以增强该武器的战斗效果 --- 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 28f94ba..d8a0617 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"] += 1 * to * soulLevel + origin["atk"] += 2 * to * soulLevel return origin func attack(entity: EntityBase): for i in readStore("atk"):