diff --git a/assets/script/game/common/config/CardSet.ts b/assets/script/game/common/config/CardSet.ts index d8670c61..f8bd4ffc 100644 --- a/assets/script/game/common/config/CardSet.ts +++ b/assets/script/game/common/config/CardSet.ts @@ -196,7 +196,7 @@ const normalizeTypeFilter = (type: CardType | CardType[]): Set => { return new Set(list) } -/** 常规发牌:前 2 英雄 + 后 2 其他;支持按类型和等级模式过滤 */ +/** 常规发牌:前 3 英雄 + 后 1 其他;支持按类型和等级模式过滤 */ export const getCardsByLv = ( lv: number, type?: CardType | CardType[], @@ -210,8 +210,8 @@ export const getCardsByLv = ( } const heroPool = pool.filter(card => card.type === CardType.Hero) const otherPool = pool.filter(card => card.type !== CardType.Hero) - const heroes = pickCards(heroPool, 2) - const others = pickCards(otherPool, 2) + const heroes = pickCards(heroPool, 3) + const others = pickCards(otherPool, 1) return [...heroes, ...others] }