1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-27 22:41:56 +08:00

fix: 调整ChainGun攻击力计算和彩虹糖属性值

将ChainGun的攻击力加成从2倍降低为1倍,同时调整彩虹糖的fieldValues数组中的两个数值
This commit is contained in:
2026-01-18 14:14:31 +08:00
parent 53db80ceb7
commit 38833e2840
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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])
+1 -1
View File
@@ -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