refactor: 调整测试模式、英雄等级和卡池配置

1. 开启单挑测试模式
2. 将英雄最大等级从3下调至2
3. 更新卡池升级波次配置为[4,7,10,13]
4. 修复任务预制体的精灵帧和节点缩放配置
This commit is contained in:
panFD
2026-06-18 23:26:17 +08:00
parent 9f738ab881
commit 875d2d68b5
4 changed files with 12 additions and 14 deletions

View File

@@ -89,8 +89,7 @@ export class MissionComp extends CCComp {
/** 怪物数量恢复阈值(降至此值以下恢复刷怪) */
private resumeMonsterCount: number = 45;
/** 卡池升级波次配置:达到对应波次时,推送卡池升级事件 */
@property({ type: [CCInteger], tooltip: "卡池升级波次配置,例如 [10, 20] 表示第10波升到2级第20波升到3级" })
cardPoolUpgradeWaves: number[] = [5, 10];
public cardPoolUpgradeWaves: number[] = [4, 7, 10, 13];
// ======================== 编辑器绑定节点 ========================

View File

@@ -544,7 +544,7 @@ export const InfiniteModeConfig = {
*/
export const TestModeConfig = {
/** 是否开启单挑测试模式 */
enable: false,
enable: true,
/** 测试模式中生成怪物的基础生命值 (对应 1级 英雄) */
baseHp: 150,
/** 测试模式中生成怪物的基础攻击力 (对应 1级 英雄) */