From 9fb617d107cd8147929047ac2ec3ae48c091fb57 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, 7 Dec 2025 16:18:16 +0800 Subject: [PATCH] =?UTF-8?q?fix(Weapons/PurpleCrystal):=20=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E6=94=BB=E5=87=BB=E5=8A=9B=E8=AE=A1=E7=AE=97=E5=85=AC?= =?UTF-8?q?=E5=BC=8F=E4=BB=8E5=E5=80=8D=E6=94=B9=E4=B8=BA3=E5=80=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/Contents/Weapons/PurpleCrystal.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Contents/Weapons/PurpleCrystal.gd b/scripts/Contents/Weapons/PurpleCrystal.gd index a0d88cf..e16d1cb 100644 --- a/scripts/Contents/Weapons/PurpleCrystal.gd +++ b/scripts/Contents/Weapons/PurpleCrystal.gd @@ -3,7 +3,7 @@ extends Weapon class_name PurpleCrystalWeapon func update(to: int, origin: Dictionary, _entity: EntityBase): - origin["atk"] += 5 * to * soulLevel + origin["atk"] += 3 * to * soulLevel return origin func attack(entity: EntityBase): var weaponPos = entity.findWeaponAnchor("normal")