Commit 0377af14 authored by salix5's avatar salix5

Merge pull request #1130 from nekrozar/patch-2

fix Cyber Shadow Gardna
parents 961ab637 04e663c1
...@@ -12,7 +12,8 @@ function c90440725.initial_effect(c) ...@@ -12,7 +12,8 @@ function c90440725.initial_effect(c)
c:RegisterEffect(e1) c:RegisterEffect(e1)
end end
function c90440725.condition(e,tp,eg,ep,ev,re,r,rp) function c90440725.condition(e,tp,eg,ep,ev,re,r,rp)
return Duel.GetTurnPlayer()==1-tp and Duel.GetCurrentPhase()==PHASE_MAIN1 local ph=Duel.GetCurrentPhase()
return Duel.GetTurnPlayer()==1-tp and (ph==PHASE_MAIN1 or ph==PHASE_MAIN2)
end end
function c90440725.target(e,tp,eg,ep,ev,re,r,rp,chk) function c90440725.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 and if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 and
......
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