refactor(配置): 调整英雄属性和全局加成数值

- 将物理防御属性类型从百分比改为数值型
- 降低全局生命加成并替换速度加成为闪避率加成
- 更新英雄属性计算以使用闪避率而非速度
- 启用 MissionCardComp 的调试模式以方便测试
This commit is contained in:
panw
2026-02-06 16:50:04 +08:00
parent b48547b1f1
commit 84963f6a3b
4 changed files with 2532 additions and 12650 deletions

View File

@@ -146,7 +146,7 @@ export const AttrsType: Record<Attrs, BType> = {
[Attrs.AREA_OF_EFFECT]: BType.VALUE, // 作用范围 - 数值型
// ========== 防御属性(混合类型) ==========
[Attrs.DEF]: BType.RATIO, // 物理防御 - 百分比
[Attrs.DEF]: BType.VALUE, // 物理防御 - 数值
[Attrs.DODGE]: BType.RATIO, // 闪避率 - 百分比型
[Attrs.THORNS]: BType.RATIO, // 反伤 - 百分比型