错误版本

This commit is contained in:
panw
2025-08-14 15:47:47 +08:00
parent 3b4ce5b33e
commit 96ae0481d1
16 changed files with 17974 additions and 15860 deletions

View File

@@ -48,7 +48,6 @@ export class CardControllerComp extends CCComp {
this.node.getChildByName("mission_home").active = true
let mission=this.node.getChildByName("mission")
mission.active = false
mission_home.load_ui_heros()
}
show_hero_home(){
let hero_home=this.node.getChildByName("hero_home")

View File

@@ -0,0 +1,14 @@
import { _decorator, Component, Node } from 'cc';
const { ccclass, property } = _decorator;
@ccclass('HeroPageCom')
export class HeroPageCom extends Component {
start() {
}
update(deltaTime: number) {
}
}

View File

@@ -0,0 +1,9 @@
{
"ver": "4.0.23",
"importer": "typescript",
"imported": true,
"uuid": "dc69fd33-16d1-4c08-a2ce-1303c31abe3c",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@@ -266,8 +266,8 @@ export function getMonsterUUIDsByType(monsterType: MonsterType): number[] {
case MonsterType.BOSS:
// 紫色及以上品质为Boss怪物
const purpleMonsters = getMonList(HQuality.PURPLE);
const orangeMonsters = getMonList(HQuality.ORANGE);
return [...purpleMonsters, ...orangeMonsters];
const redMonsters = getMonList(HQuality.RED);
return [...purpleMonsters, ...redMonsters];
default:
return [];
}