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

fix(Weapons/DaoStatue): 调整基础伤害倍率从125%降至105%

修改了DaoStatue武器的rate2属性值及其相关描述,将基础伤害倍率从125%降低至105%以平衡游戏性
This commit is contained in:
2026-05-08 16:34:28 +08:00
parent 2563dc8c81
commit 8c95202d72
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ extends Weapon
func update(to: int, origin: Dictionary, _entity: EntityBase):
origin["atk"] += 3 * to * soulLevel
origin["rate1"] *= soulLevel
origin["rate2"] += 0.12 * (soulLevel - 1)
origin["rate2"] += 0.1 * (soulLevel - 1)
return origin
func checkAttack(entity: EntityBase) -> bool:
return len(entity.getOrCreateCycleTimer("parry", 2000, 100).bullets) > 2