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

@@ -28,9 +28,7 @@ interface ICardEvent {
@ccclass('MissionCardComp')
@ecs.register('MissionCard', false)
export class MissionCardComp extends CCComp {
@property({ tooltip: "是否启用调试日志" })
private debugMode: boolean = false;
private debugMode: boolean = true;
/** 视图层逻辑代码分离演示 */
@property(Node)
card1:Node = null!