도적 카드 공용 효과 추가

This commit is contained in:
2026-06-19 02:57:11 +09:00
parent b2bf1bf4dd
commit acf295d56c
9 changed files with 106 additions and 17 deletions

View File

@@ -382,6 +382,12 @@ end
if c.skillCostReductionThisTurn ~= nil and c.skillCostReductionThisTurn > 0 then
self.SkillCostReductionThisTurn = (self.SkillCostReductionThisTurn or 0) + c.skillCostReductionThisTurn
end
if c.handCostZeroThisTurn == true then
self.HandCostZeroThisTurn = true
end
if c.drawDisabledThisTurn == true then
self.DrawDisabledThisTurn = true
end
if c.kind == "Attack" then
if c.damage ~= nil then
self:PlayerAttackMotion()