mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-06-12 14:47:13 +08:00
fix(武器): 调整HXD武器攻击力计算公式
将攻击力加成从3倍降低为2倍,以平衡游戏难度
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"] += 3 * to * soulLevel
|
origin["atk"] += 2 * to * soulLevel
|
||||||
origin["count"] += 2 * (soulLevel - 1)
|
origin["count"] += 2 * (soulLevel - 1)
|
||||||
return origin
|
return origin
|
||||||
func attack(entity: EntityBase):
|
func attack(entity: EntityBase):
|
||||||
|
|||||||
Reference in New Issue
Block a user