Commit 85e5d1f0 authored by YuGiOhMoDDeR's avatar YuGiOhMoDDeR

fix

it requires Monster Card to be sent, not any card
parent 198c816b
......@@ -11,7 +11,7 @@ function c23857661.initial_effect(c)
c:RegisterEffect(e1)
end
function c23857661.cfilter(c)
return c:IsSetCard(0x88) and c:IsAbleToGraveAsCost()
return c:IsSetCard(0x88) and c:IsType(TYPE_MONSTER) and c:IsAbleToGraveAsCost()
end
function c23857661.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return e:GetHandler():IsAbleToRemoveAsCost()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment