Commit 4f048a15 authored by wyykak's avatar wyykak

74563666 qol

Signed-off-by: wyykak's avatarwyykak <wyy_1414@126.com>
parent 8ac5a3b7
Pipeline #14203 passed with stage
in 2 minutes and 2 seconds
......@@ -24,6 +24,7 @@ function c74563666.initial_effect(c)
e5:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e5:SetCode(EVENT_FREE_CHAIN)
e5:SetRange(LOCATION_REMOVED)
e5:SetLabelObject(e1)
e5:SetCondition(c74563666.con)
e5:SetOperation(c74563666.sprop1)
c:RegisterEffect(e5)
......@@ -47,13 +48,16 @@ function c74563666.sprcon(e,c)
local tp=c:GetControler()
return Duel.GetLocationCount(tp,LOCATION_MZONE)>-1
and Duel.IsExistingMatchingCard(c74563666.sprfilter,tp,LOCATION_MZONE,0,3,nil)
and (c74563666.special or not c:IsLocation(LOCATION_REMOVED))
end
function c74563666.sprop(e,tp,eg,ep,ev,re,r,rp,c)
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_REMOVE)
local g=Duel.SelectMatchingCard(tp,c74563666.sprfilter,tp,LOCATION_MZONE,0,3,3,nil)
Duel.Remove(g,POS_FACEUP,REASON_COST)
c74563666.special=false
end
function c74563666.sprop1(e,tp,eg,ep,ev,re,r,rp,chk)
c74563666.special=true
Duel.SpecialSummonRule(e:GetHandler():GetControler(),e:GetHandler())
end
function c74563666.cpfilter(c)
......@@ -61,7 +65,10 @@ function c74563666.cpfilter(c)
and c:CheckActivateEffect(true,true,false)~=nil
end
function c74563666.con(e,tp,eg,ep,ev,re,r,rp)
return Duel.GetCurrentChain()==0 and (Duel.GetCurrentPhase()==PHASE_MAIN1 or Duel.GetCurrentPhase()==PHASE_MAIN2) and Duel.GetLocationCount(tp,LOCATION_MZONE)>-1 and Duel.IsExistingMatchingCard(c74563666.sprfilter,tp,LOCATION_MZONE,0,3,nil)
c74563666.special=true
local cansp=e:GetHandler():IsCanBeSpecialSummoned(e:GetLabelObject(),0,tp,false,true)
c74563666.special=false
return Duel.GetCurrentChain()==0 and (Duel.GetCurrentPhase()==PHASE_MAIN1 or Duel.GetCurrentPhase()==PHASE_MAIN2) and Duel.GetLocationCount(tp,LOCATION_MZONE)>-1 and Duel.IsExistingMatchingCard(c74563666.sprfilter,tp,LOCATION_MZONE,0,3,nil) and cansp
end
function c74563666.cpcost(e,tp,eg,ep,ev,re,r,rp,chk)
e:SetLabel(1)
......
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