From 7c9bbea45097e3171a6139fda909b396a442ab1d Mon Sep 17 00:00:00 2001 From: walkpan Date: Fri, 20 Mar 2026 20:47:12 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=90=91=E5=9F=BA=E7=A1=80=E5=8D=A1?= =?UTF-8?q?=E6=B1=A0=E4=B8=AD=E6=B7=BB=E5=8A=A0=E5=A4=9A=E4=B8=AA=E8=8B=B1?= =?UTF-8?q?=E9=9B=84=E5=8D=A1=E7=89=8C=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 新增英雄卡牌配置项,包括不同等级和编号的英雄,以扩展游戏基础卡池的多样性。 --- assets/script/game/common/config/CardSet.ts | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/assets/script/game/common/config/CardSet.ts b/assets/script/game/common/config/CardSet.ts index 1bda3923..01a68020 100644 --- a/assets/script/game/common/config/CardSet.ts +++ b/assets/script/game/common/config/CardSet.ts @@ -36,9 +36,21 @@ export const CARD_POOL_MAX_LEVEL = CardKind.LV6 /** 基础卡池(英雄、技能、Buff、Debuff) */ export const CardPoolList: CardConfig[] = [ { uuid: 5001, type: CardType.Hero, cost: 3, weight: 25, lv: 1 ,hero_lv:1,}, + { uuid: 5002, type: CardType.Hero, cost: 3, weight: 25, lv: 3 ,hero_lv:1,}, + { uuid: 5003, type: CardType.Hero, cost: 3, weight: 25, lv: 2 ,hero_lv:1,}, + { uuid: 5004, type: CardType.Hero, cost: 3, weight: 25, lv: 4 ,hero_lv:1,}, + { uuid: 5101, type: CardType.Hero, cost: 3, weight: 25, lv: 1 ,hero_lv:1,}, + { uuid: 5102, type: CardType.Hero, cost: 3, weight: 25, lv: 2 ,hero_lv:1,}, + { uuid: 5103, type: CardType.Hero, cost: 3, weight: 25, lv: 3 ,hero_lv:1,}, + { uuid: 5104, type: CardType.Hero, cost: 3, weight: 25, lv: 4 ,hero_lv:1,}, + { uuid: 5105, type: CardType.Hero, cost: 3, weight: 25, lv: 5 ,hero_lv:1,}, + { uuid: 5201, type: CardType.Hero, cost: 3, weight: 25, lv: 1 ,hero_lv:1,}, + { uuid: 5202, type: CardType.Hero, cost: 3, weight: 25, lv: 3 ,hero_lv:1,}, + { uuid: 5301, type: CardType.Hero, cost: 3, weight: 25, lv: 1 ,hero_lv:1,}, + { uuid: 5302, type: CardType.Hero, cost: 3, weight: 25, lv: 2 ,hero_lv:1,}, + { uuid: 5303, type: CardType.Hero, cost: 3, weight: 25, lv: 4 ,hero_lv:1,}, + { uuid: 5304, type: CardType.Hero, cost: 3, weight: 25, lv: 6 ,hero_lv:1,}, - - { uuid: 7001, type: CardType.Special, cost: 1, weight: 20, lv: 1 }, ]