1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-31 00:11:54 +08:00

fix(武器): 调整氧化加农炮的伤害数值

将基础攻击力从3.0提升至5.0,同时降低升级时的攻击力和火焰攻击力加成系数
This commit is contained in:
2026-01-25 20:00:21 +08:00
parent a4611680fc
commit a438ae5dd4
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
extends Weapon
func update(to: int, origin: Dictionary, _entity: EntityBase):
origin["atk"] += 1 * to * soulLevel
origin["fireatk"] += 0.5 * to * soulLevel
origin["atk"] += 0.75 * to * soulLevel
origin["fireatk"] += 0.35 * to * soulLevel
origin["max-n"] *= soulLevel
return origin
func attack(entity: EntityBase):