From 38833e284065288de51b0e34d289bcfd65a0be98 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, 18 Jan 2026 14:14:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4ChainGun=E6=94=BB?= =?UTF-8?q?=E5=87=BB=E5=8A=9B=E8=AE=A1=E7=AE=97=E5=92=8C=E5=BD=A9=E8=99=B9?= =?UTF-8?q?=E7=B3=96=E5=B1=9E=E6=80=A7=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将ChainGun的攻击力加成从2倍降低为1倍,同时调整彩虹糖的fieldValues数组中的两个数值 --- components/Feeds/RainbowCandy.tscn | 2 +- scripts/Contents/Weapons/ChainGun.gd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Feeds/RainbowCandy.tscn b/components/Feeds/RainbowCandy.tscn index 569bdc2..b9c92dc 100644 --- a/components/Feeds/RainbowCandy.tscn +++ b/components/Feeds/RainbowCandy.tscn @@ -9,7 +9,7 @@ displayName = "彩虹糖" quality = 3 topic = 4 fields = Array[int]([1, 5, 6, 13, 7, 3]) -fieldValues = Array[float]([0.3, 0.35, 0.1, 2.0, 15.0, -0.6]) +fieldValues = Array[float]([0.3, 0.35, 0.1, 2.0, 30.0, -0.8]) costs = Array[int]([0, 3]) costCounts = Array[int]([700, 100]) diff --git a/scripts/Contents/Weapons/ChainGun.gd b/scripts/Contents/Weapons/ChainGun.gd index 1d38b96..f552ff4 100644 --- a/scripts/Contents/Weapons/ChainGun.gd +++ b/scripts/Contents/Weapons/ChainGun.gd @@ -2,7 +2,7 @@ extends Weapon func update(to, origin, _entity): - origin["atk"] += 2 * to * soulLevel + origin["atk"] += 1 * to * soulLevel origin["count"] = 1 * soulLevel origin["split"] /= 1 + 0.005 * to * soulLevel return origin