1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-06-07 20:27:13 +08:00

refactor: 调整武器和召唤物属性及配置

- 移除LGBTFlag的最大生命值设置
- 调整HJM武器的伤害和时间系数
- 修改Arrow子弹的轨迹参数
- 将BulletBase的伤害计算从initialDamage改为baseDamage
- 简化LGBTWeapon的召唤参数
- 提升Bow武器的攻击力和降低能量消耗
- 调整HJM武器的属性和描述
- 更新Rooster角色的武器配置
This commit is contained in:
2025-11-29 21:39:56 +08:00
parent 4c9a848ef0
commit c6ff68541b
8 changed files with 20 additions and 19 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
extends Weapon
func update(to: int, origin: Dictionary, _entity: EntityBase):
origin["time"] /= 1 + 0.05 * to * soulLevel
origin["time"] /= 1 + 0.01 * to * soulLevel
origin["atk"] += 2 * to * soulLevel
return origin
func attack(entity: EntityBase):