Commit ed8c50c5 authored by TanakaKotoha's avatar TanakaKotoha

fbk

parent d4efcec4
No preview for this file type
......@@ -25,7 +25,7 @@ function c33310200.filter3(c,e)
return c:IsLocation(LOCATION_HAND) and c:IsPublic() and c:IsAbleToDeck() and not c:IsImmuneToEffect(e)
end
function c33310200.grfilter(c)
return c:IsCanBeFusionMaterial() and c:IsAbleToDeck()
return c:IsCanBeFusionMaterial() and c:IsAbleToDeck() and c:IsType(TYPE_MONSTER)
end
function c33310200.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then
......
......@@ -170,7 +170,13 @@ function c33310207.activate(e,tp,eg,ep,ev,re,r,rp,chk)
if not e:GetHandler():IsRelateToEffect(e) then return end
local g=Duel.SelectMatchingCard(tp,c33310207.costfil,tp,LOCATION_DECK,0,1,1,nil)
if g:GetCount()>0 then
Duel.SendtoHand(g,tp,REASON_EFFECT)
Duel.SendtoDeck(g,nil,2,REASON_EFFECT)
if Duel.SendtoHand(g,tp,REASON_EFFECT)~=0 then
Duel.ConfirmCards(1-tp,g)
if Duel.IsExistingMatchingCard(Card.IsAbleToDeck,tp,LOCATION_HAND,0,1,nil) then
local sg=Duel.SelectMatchingCard(tp,Card.IsAbleToDeck,tp,LOCATION_HAND,0,1,1,nil)
Duel.HintSelection(sg)
Duel.SendtoDeck(sg,nil,2,REASON_EFFECT)
end
end
end
end
\ No newline at end of file
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