From 11953fee54be5f7fc1f6ceb57c80ffd9640bcac0 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, 14 Dec 2025 22:25:24 +0800 Subject: [PATCH] =?UTF-8?q?fix(Weapons/RedCrystal):=20=E6=8F=90=E9=AB=98?= =?UTF-8?q?=E7=BA=A2=E6=B0=B4=E6=99=B6=E6=AD=A6=E5=99=A8=E7=9A=84=E6=94=BB?= =?UTF-8?q?=E5=87=BB=E5=8A=9B=E5=8A=A0=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将攻击力加成从2倍提升至5倍,以增强该武器的战斗效果 --- scripts/Contents/Weapons/RedCrystal.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Contents/Weapons/RedCrystal.gd b/scripts/Contents/Weapons/RedCrystal.gd index cfee540..c14df89 100644 --- a/scripts/Contents/Weapons/RedCrystal.gd +++ b/scripts/Contents/Weapons/RedCrystal.gd @@ -3,7 +3,7 @@ extends Weapon class_name RedCrystalWeapon func update(to: int, origin: Dictionary, _entity: EntityBase): - origin["atk"] += 2 * to * soulLevel + origin["atk"] += 5 * to * soulLevel origin["radius"] += 4 * to * soulLevel return origin func attack(entity: EntityBase):