From 977073dbc064e9b67926e964d5f08285712ddf89 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: Sat, 13 Dec 2025 11:28:15 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=AD=A6=E5=99=A8):=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E7=B4=AB=E6=B0=B4=E6=99=B6=E7=B0=87=E7=9A=84=E6=94=BB=E5=87=BB?= =?UTF-8?q?=E5=8A=9B=E5=92=8C=E4=BB=B7=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将紫水晶簇的攻击加成从3倍降低到1倍,同时将价格从250降低到200 --- components/Weapons/PurpleCrystal.tscn | 5 +---- scripts/Contents/Weapons/PurpleCrystal.gd | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/components/Weapons/PurpleCrystal.tscn b/components/Weapons/PurpleCrystal.tscn index 3912649..fa9bc24 100644 --- a/components/Weapons/PurpleCrystal.tscn +++ b/components/Weapons/PurpleCrystal.tscn @@ -10,7 +10,7 @@ offset_bottom = 302.0 script = ExtResource("2_0xgcv") avatarTexture = ExtResource("2_wgtcw") displayName = "紫水晶簇" -costBeachball = 250 +costBeachball = 200 descriptionTemplate = "撞击造成$atk点伤害。" cooldown = 200.0 @@ -23,9 +23,6 @@ texture = ExtResource("2_wgtcw") [node name="beachball" parent="container/info/infos" index="1"] count = 250 -[node name="soul" parent="container/info/infos" index="2"] -count = 1 - [node name="name" parent="container/info" index="2"] displayName = "紫水晶簇" diff --git a/scripts/Contents/Weapons/PurpleCrystal.gd b/scripts/Contents/Weapons/PurpleCrystal.gd index e16d1cb..e1f4091 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"] += 3 * to * soulLevel + origin["atk"] += 1 * to * soulLevel return origin func attack(entity: EntityBase): var weaponPos = entity.findWeaponAnchor("normal")