refactor(game-config): 删除过时的配置和简化代码结构

- 移除 BoxSet.ts 中未使用的 HeroConSet 和 QualitySet 枚举定义
- 清理 Mission.ts 中冗余的得分系统及相关计算函数
- 删除 HeroUI、VmInfo 等无用状态对象
- 删除复杂得分计算逻辑及远征奖励配置相关代码
- 简化 heroSet.ts,添加 HeroConf 枚举定义优化配置管理
This commit is contained in:
2025-10-22 11:13:56 +08:00
parent d01761b604
commit e1f0492f34
3 changed files with 4 additions and 296 deletions

View File

@@ -58,16 +58,6 @@ export enum FacSet {
HERO=0,
MON=1,
}
export enum HeroConSet{
INFO=0,
SELECT=1,
}
export enum QualitySet{
GREEN=0,
BLUE=1,
PURPLE=2,
ORANGE=3,
}
/** 数字格式化工具函数 */
export class NumberFormatter {