mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-06-27 05:52:29 +08:00
fix(武器): 修正武器计数计算逻辑并调整彩虹糖属性
调整多个武器的count计算方式,移除soulLevel-1的减一操作 修改RainbowCandy的fieldValues和quality值 调整EntityBase中MAX_HEALTH的计算公式
This commit is contained in:
@@ -4,7 +4,7 @@ class_name LGBTWeapon
|
||||
|
||||
func update(to: int, origin: Dictionary, _entity: EntityBase):
|
||||
origin["angle"] /= 1 + 0.025 * to * soulLevel
|
||||
origin["count"] += 1 * (soulLevel - 1)
|
||||
origin["count"] = soulLevel + 1
|
||||
origin["atk"] += 2 * to * soulLevel
|
||||
origin["power"] += 0.005 * to * soulLevel
|
||||
origin["trace"] += 0.05 * to * soulLevel
|
||||
|
||||
Reference in New Issue
Block a user