Commit ec876a01 authored by wind2009's avatar wind2009

Fix 運否の天賦羅-EBI

parent 72c09b70
No preview for this file type
......@@ -8,6 +8,7 @@
101207010
101207019
101207020
101207030
101207031
101207032
101207033
......
--運否の天賦羅-EBI
--運否の天賦羅EBI
local s,id,o=GetID()
function s.initial_effect(c)
aux.EnablePendulumAttribute(c)
......@@ -14,11 +14,14 @@ function s.initial_effect(c)
c:RegisterEffect(e1)
end
s.toss_coin=true
function s.cofilter(c,e,tp)
return c:IsCanBeSpecialSummoned(e,0,tp,false,false,POS_FACEUP)
end
function s.cotg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsLocation(LOCATION_PZONE) end
if chk==0 then return Duel.IsExistingTarget(aux.TRUE,tp,LOCATION_PZONE,0,1,nil) end
if chkc then return chkc:IsLocation(LOCATION_PZONE) and s.cofilter(chkc,e,tp) end
if chk==0 then return Duel.IsExistingTarget(s.cofilter,tp,LOCATION_PZONE,0,1,nil,e,tp) and Duel.GetLocationCount(tp,LOCATION_MZONE)>0 end
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TARGET)
Duel.SelectTarget(tp,aux.TRUE,tp,LOCATION_PZONE,0,1,1,nil)
Duel.SelectTarget(tp,s.cofilter,tp,LOCATION_PZONE,0,1,1,nil,e,tp)
end
function s.coop(e,tp,eg,ep,ev,re,r,rp)
local tc=Duel.GetFirstTarget()
......
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