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

fix(Weapons/Oxygener): 调整武器属性加成系数

降低氧气生成器对攻击力和火属性攻击力的加成系数,以平衡游戏性
This commit is contained in:
2026-01-25 20:04:46 +08:00
parent 4992bf40a8
commit 22072fbfc1
+2 -2
View File
@@ -2,8 +2,8 @@
extends Weapon
func update(to: int, origin: Dictionary, _entity: EntityBase):
origin["atk"] += 0.75 * to * soulLevel
origin["fireatk"] += 0.35 * to * soulLevel
origin["atk"] += 0.3 * to * soulLevel
origin["fireatk"] += 0.1 * to * soulLevel
origin["max-n"] *= soulLevel
return origin
func attack(entity: EntityBase):