Commit 7b481d6b authored by POLYMER's avatar POLYMER

fix

parent 4057ed63
...@@ -73,7 +73,7 @@ end ...@@ -73,7 +73,7 @@ end
function c43480090.desop(e,tp,eg,ep,ev,re,r,rp) function c43480090.desop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
local p=tp local p=tp
if Duel.IsPlayerAffectedByEffect(tp,4348050) then p=1-tp end if Duel.IsPlayerAffectedByEffect(tp,43480050) then p=1-tp end
local dg=Duel.GetMatchingGroup(c43480090.desfil,p,LOCATION_MZONE,0,nil) local dg=Duel.GetMatchingGroup(c43480090.desfil,p,LOCATION_MZONE,0,nil)
if dg:GetCount()>0 then if dg:GetCount()>0 then
Duel.Destroy(dg,REASON_EFFECT) Duel.Destroy(dg,REASON_EFFECT)
......
...@@ -40,11 +40,11 @@ function s.initial_effect(c) ...@@ -40,11 +40,11 @@ function s.initial_effect(c)
e1:SetOperation(s.scop) e1:SetOperation(s.scop)
c:RegisterEffect(e1) c:RegisterEffect(e1)
--反面【表】 --反面【表】
local e11=e2:Clone() local e11=e1:Clone()
e11:SetCondition(s.mecon1) e11:SetCondition(s.mecon1)
c:RegisterEffect(e11) c:RegisterEffect(e11)
--反面【里】 --反面【里】
local e12=e1:Clone() local e12=e2:Clone()
e12:SetCost(s.rmcost) e12:SetCost(s.rmcost)
e12:SetCondition(s.handcon1) e12:SetCondition(s.handcon1)
c:RegisterEffect(e12) c:RegisterEffect(e12)
......
...@@ -127,12 +127,10 @@ function s.descost(e,tp,eg,ep,ev,re,r,rp,chk) ...@@ -127,12 +127,10 @@ function s.descost(e,tp,eg,ep,ev,re,r,rp,chk)
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TODECK) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TODECK)
local g=Duel.SelectMatchingCard(tp,s.filter,tp,LOCATION_GRAVE+LOCATION_REMOVED,0,0,#mg+1,nil) local g=Duel.SelectMatchingCard(tp,s.filter,tp,LOCATION_GRAVE+LOCATION_REMOVED,0,0,#mg+1,nil)
Duel.HintSelection(g) Duel.HintSelection(g)
local g1=g+mg --Group.__add(g,mg) local g1=g+mg
if g1 then if g1 then
local count=Duel.SendtoDeck(g1,nil,SEQ_DECKSHUFFLE,REASON_COST) e:SetLabel(g1:GetCount())
if count then Duel.SendtoDeck(g1,nil,SEQ_DECKSHUFFLE,REASON_COST)
e:SetLabel(count)
end
end end
end end
function s.desop(e,tp,eg,ep,ev,re,r,rp) function s.desop(e,tp,eg,ep,ev,re,r,rp)
......
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