Skip to content

Commit a321ebd

Browse files
committed
fixed interaction with Maximum Mode and Ritual Summon
Maximum Side pieces should not be able to be Tributed for a Ritual Summon
1 parent db48295 commit a321ebd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

proc_maximum.lua

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,15 @@ function Card.AddSideMaximumHandler(c,eff)
323323
e16:SetValue(-1000000)
324324
c:RegisterEffect(e16)
325325

326+
--cannot be tributed for a cost or a Ritual Summon
327+
local e17=Effect.CreateEffect(c)
328+
e17:SetType(EFFECT_TYPE_SINGLE)
329+
e17:SetCode(EFFECT_UNRELEASABLE_NONSUM)
330+
e17:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
331+
e17:SetCondition(Maximum.sideCon)
332+
e17:SetValue(1)
333+
c:RegisterEffect(e17)
334+
326335
baseeff:Reset()
327336
end
328337
function Maximum.SelfDestructCondition(e)

0 commit comments

Comments
 (0)