We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db48295 commit a321ebdCopy full SHA for a321ebd
proc_maximum.lua
@@ -323,6 +323,15 @@ function Card.AddSideMaximumHandler(c,eff)
323
e16:SetValue(-1000000)
324
c:RegisterEffect(e16)
325
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
+
335
baseeff:Reset()
336
end
337
function Maximum.SelfDestructCondition(e)
0 commit comments