refactor(heroSet): 调整可选英雄列表并修正英雄信息

- 从可选英雄列表中移除5008
- 将召唤法师从5008移至5006并更新相关信息
- 修正火焰法师的uuid从5006改为5004
This commit is contained in:
panw
2026-01-07 17:07:35 +08:00
parent 6c681803ae
commit 76b89442f9

View File

@@ -122,7 +122,7 @@ export interface heroInfo {
info: string; // 描述文案
}
export const CanSelectHeros = [5001, 5002, 5003, 5004, 5005, 5006, 5007, 5008];
export const CanSelectHeros = [5001, 5002, 5003, 5004, 5005, 5006, 5007];
export const HeroInfo: Record<number, heroInfo> = {
// ========== 英雄角色 ==========
@@ -147,19 +147,21 @@ export const HeroInfo: Record<number, heroInfo> = {
rangeType: SkillRange.Mid,
buff:[],tal:[],info:"牧师"},
5006:{uuid:5006,name:"火焰法师",path:"hm1", fac:FacSet.HERO, kind:2,as:1.5,
5004:{uuid:5004,name:"火焰法师",path:"hm1", fac:FacSet.HERO, kind:2,as:1.5,
type:HType.mage,lv:1,hp:85,mp:140,def:0,ap:16,dis:400,speed:90,skills:[6003,6101],
rangeType: SkillRange.Mid,
buff:[],tal:[],info:"火焰法师"},
5006:{uuid:5006,name:"召唤法师",path:"hz1", fac:FacSet.HERO, kind:2,as:1.5,
type:HType.support,lv:1,hp:115,mp:145,def:0,ap:8,dis:380,speed:105,skills:[6003,6101],
rangeType: SkillRange.Mid,
buff:[],tal:[],info:"召唤法师"},
5007:{uuid:5007,name:"刺客",path:"hc1", fac:FacSet.HERO, kind:1,as:1.5,
type:HType.assassin,lv:1,hp:80,mp:60,def:0,ap:22,dis:120,speed:180,skills:[6001,6004],
rangeType: SkillRange.Melee,
buff:[],tal:[],info:"刺客"},
5008:{uuid:5008,name:"召唤法师",path:"hz1", fac:FacSet.HERO, kind:2,as:1.5,
type:HType.support,lv:1,hp:115,mp:145,def:0,ap:8,dis:380,speed:105,skills:[6003,6101],
rangeType: SkillRange.Mid,
buff:[],tal:[],info:"召唤法师"},