Commit f8f963e2 authored by Tachibana's avatar Tachibana

ndyd

parent ed751c29
No preview for this file type
......@@ -31,7 +31,7 @@ function cm.initial_effect(c)
c:RegisterEffect(e2)
end
function cm.ffilter(c,fc,sub,mg,sg)
return c:IsFusionSetCard(0xcfac) and (not sg or not sg:IsExists(Card.IsFusionCode,1,c,c:GetFusionCode()))
return c:IsFusionSetCard(0xcfac) and (not sg or not sg:IsExists(Card.IsFusionCode,1,c,c:GetFusionCode())) and c:IsType(TYPE_MONSTER)
end
function cm.descon(e,tp,eg,ep,ev,re,r,rp)
local loc=Duel.GetChainInfo(ev,CHAININFO_TRIGGERING_LOCATION)
......
......@@ -48,7 +48,7 @@ function cm.thtg(e,tp,eg,ep,ev,re,r,rp,chk)
Duel.SetOperationInfo(0,CATEGORY_TODECK,nil,1,tp,LOCATION_HAND)
end
function cm.rfilter(c,tp)
return ( c:GetAttack()==0 or c:GetDefense()==0 ) and c:IsAbleToRemove(tp,POS_FACEDOWN)
return ( c:GetAttack()==0 or c:GetDefense()==0 ) and c:IsAbleToRemove(tp,POS_FACEDOWN) and c:IsType(TYPE_MONSTER)
end
function cm.thop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
......
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