From 76b89442f941d482449bb13f7d817ce86e810e8e Mon Sep 17 00:00:00 2001 From: panw Date: Wed, 7 Jan 2026 17:07:35 +0800 Subject: [PATCH] =?UTF-8?q?refactor(heroSet):=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E5=8F=AF=E9=80=89=E8=8B=B1=E9=9B=84=E5=88=97=E8=A1=A8=E5=B9=B6?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E8=8B=B1=E9=9B=84=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 从可选英雄列表中移除5008 - 将召唤法师从5008移至5006并更新相关信息 - 修正火焰法师的uuid从5006改为5004 --- assets/script/game/common/config/heroSet.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/assets/script/game/common/config/heroSet.ts b/assets/script/game/common/config/heroSet.ts index 4859bcbd..57107b92 100644 --- a/assets/script/game/common/config/heroSet.ts +++ b/assets/script/game/common/config/heroSet.ts @@ -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 = { // ========== 英雄角色 ========== @@ -147,19 +147,21 @@ export const HeroInfo: Record = { 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:"召唤法师"},