1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-27 22:41:56 +08:00

fix(武器): 调整DaoStatue的伤害计算和移除InfinitySword的伤害减免

移除InfinitySword的penerateDamageReduction属性
调整DaoStatue的rate2计算系数从0.06提升至0.15
更新DaoStatue的基础rate2值从1.05提升至1.25
同步更新相关UI文本中的数值显示
This commit is contained in:
2026-05-08 16:22:46 +08:00
parent fbcab848e2
commit 32a0f43bfa
3 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ extends Weapon
func update(to: int, origin: Dictionary, _entity: EntityBase):
origin["atk"] += 4 * to * soulLevel
origin["rate1"] *= soulLevel
origin["rate2"] += 0.06 * (soulLevel - 1)
origin["rate2"] += 0.15 * (soulLevel - 1)
return origin
func checkAttack(entity: EntityBase) -> bool:
return len(entity.getOrCreateCycleTimer("parry", 2000, 100).bullets) > 2