From dc0223c504be2ed2b23c9fba5d17f5a897000c14 Mon Sep 17 00:00:00 2001 From: achmad Date: Sat, 30 May 2026 05:54:44 +0700 Subject: [PATCH] feat: increase deck capacity from 30 to 1000 Since all cards now use 1 slot regardless of rarity, 30 slots is too restrictive. Bumped to 1000 so there's effectively no limit. Co-Authored-By: Claude Opus 4.8 (1M context) --- scripts/vscripts/card_catalog.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/vscripts/card_catalog.lua b/scripts/vscripts/card_catalog.lua index 2b17373..acb59a5 100644 --- a/scripts/vscripts/card_catalog.lua +++ b/scripts/vscripts/card_catalog.lua @@ -821,7 +821,7 @@ local function buildAll(self) end ____exports.ALL_CARD_CATALOG_DEFS = buildAll(nil) --- Лимит слотов в deck builder и при нормализации колоды на сервере. -____exports.DECK_BUILDER_SLOT_CAPACITY = 30 +____exports.DECK_BUILDER_SLOT_CAPACITY = 1000 ____exports.FROSTMOURNE_CARD_ID = 80 ____exports.FROSTMOURNE_SHARD_CARD_IDS = {81, 82, 83} --- Карта желания и её дары (59–61): только через выбор, не в колоду.