From f33018194fe795d54a188b64307eaafb8ef522f9 Mon Sep 17 00:00:00 2001 From: gahusb Date: Tue, 23 Jun 2026 21:40:17 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B5=90=ED=99=9C=20=EC=B9=B4=EB=93=9C?= =?UTF-8?q?=20=EC=B4=88=EA=B8=B0=20=ED=95=84=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- RootDesk/MyDesk/SlayDeckController.codeblock | 14 ++++++++++++++ tools/deck/gen-slaydeck.mjs | 2 ++ 2 files changed, 16 insertions(+) diff --git a/RootDesk/MyDesk/SlayDeckController.codeblock b/RootDesk/MyDesk/SlayDeckController.codeblock index c9efa62..209bfd2 100644 --- a/RootDesk/MyDesk/SlayDeckController.codeblock +++ b/RootDesk/MyDesk/SlayDeckController.codeblock @@ -736,6 +736,20 @@ "Attributes": [], "Name": "SkillCostReductionThisTurn" }, + { + "Type": "any", + "DefaultValue": "nil", + "SyncDirection": 0, + "Attributes": [], + "Name": "SkillSlyOnPlayCards" + }, + { + "Type": "any", + "DefaultValue": "nil", + "SyncDirection": 0, + "Attributes": [], + "Name": "TurnSkillSlyCards" + }, { "Type": "any", "DefaultValue": "nil", diff --git a/tools/deck/gen-slaydeck.mjs b/tools/deck/gen-slaydeck.mjs index f7562d7..27de468 100644 --- a/tools/deck/gen-slaydeck.mjs +++ b/tools/deck/gen-slaydeck.mjs @@ -124,6 +124,8 @@ function writeCodeblocks() { prop('boolean', 'HandCostZeroThisTurn', 'false'), prop('boolean', 'DrawDisabledThisTurn', 'false'), prop('number', 'SkillCostReductionThisTurn', '0'), + prop('any', 'SkillSlyOnPlayCards'), + prop('any', 'TurnSkillSlyCards'), prop('any', 'CombatCardCostReduction'), prop('number', 'ActiveAttackDamageVsWeakMultiplier', '1'), prop('number', 'DrawDamageThisTurn', '0'),