mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-07-08 19:17:05 +08:00
fix(Weapons/HXD): 调整攻击力计算公式系数从2改为1.5
平衡HXD武器的攻击力增长,避免后期数值膨胀
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
extends Weapon
|
extends Weapon
|
||||||
|
|
||||||
func update(to: int, origin: Dictionary, _entity: EntityBase):
|
func update(to: int, origin: Dictionary, _entity: EntityBase):
|
||||||
origin["atk"] += 2 * to * soulLevel
|
origin["atk"] += 1.5 * to * soulLevel
|
||||||
return origin
|
return origin
|
||||||
func attack(entity: EntityBase):
|
func attack(entity: EntityBase):
|
||||||
for i in readStore("atk"):
|
for i in readStore("atk"):
|
||||||
|
|||||||
Reference in New Issue
Block a user