feat(游戏配置): 添加CardKind枚举并更新英雄配置

为卡牌系统添加CardKind枚举类型定义
在heroInfo接口中添加icon字段并更新所有英雄配置
调整ubtns.plist.meta中的边框值
This commit is contained in:
panw
2026-01-16 10:07:09 +08:00
parent 90e6bd755a
commit 8cb52f484e
4 changed files with 1797 additions and 123 deletions

View File

@@ -36,6 +36,16 @@ export interface IPoolConfig {
tag?: string; // 辅助筛选从全池中筛选带tag的如 "special"
}
export enum CardKind {
Atk = 1,
Atted = 2,
Buff = 3,
Attr = 4,
Skill = 5,
Hp = 6,
Dead = 7,
Partner = 8,
}
// 默认单卡权重
const DEFAULT_CARD_WEIGHT = 100;