Commit 38754dab authored by fallenstardust's avatar fallenstardust
parent bc475080
...@@ -39,7 +39,7 @@ function s.initial_effect(c) ...@@ -39,7 +39,7 @@ function s.initial_effect(c)
c:RegisterEffect(e3) c:RegisterEffect(e3)
end end
function s.filter(c) function s.filter(c)
return c:IsSetCard(0x1a4) return c:IsSetCard(0x1a4) and c:IsFaceup()
end end
function s.filter1(c,tp) function s.filter1(c,tp)
return c:IsAbleToRemove(tp,POS_FACEDOWN) return c:IsAbleToRemove(tp,POS_FACEDOWN)
...@@ -58,7 +58,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -58,7 +58,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
end end
end end
function s.refilter(c) function s.refilter(c)
return c:IsSetCard(0x1a4) and c:IsSummonLocation(LOCATION_EXTRA) return c:IsSetCard(0x1a4) and c:IsSummonLocation(LOCATION_EXTRA) and c:IsFaceup()
end end
function s.recon(e,tp,eg,ep,ev,re,r,rp) function s.recon(e,tp,eg,ep,ev,re,r,rp)
return Duel.IsExistingMatchingCard(s.refilter,tp,LOCATION_MZONE,0,1,nil) return Duel.IsExistingMatchingCard(s.refilter,tp,LOCATION_MZONE,0,1,nil)
...@@ -87,4 +87,4 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp) ...@@ -87,4 +87,4 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp)
if tc:IsRelateToEffect(e) then if tc:IsRelateToEffect(e) then
Duel.SendtoHand(tc,nil,REASON_EFFECT) Duel.SendtoHand(tc,nil,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