Commit c4ffac40 authored by wind2009's avatar wind2009

Improve GMX Applied Experiment #55

parent 3e3c1041
Pipeline #42936 passed with stages
in 3 minutes and 19 seconds
...@@ -12,15 +12,21 @@ function s.initial_effect(c) ...@@ -12,15 +12,21 @@ function s.initial_effect(c)
e1:SetOperation(s.activate) e1:SetOperation(s.activate)
c:RegisterEffect(e1) c:RegisterEffect(e1)
end end
function s.cfilter1(c,tp) function s.cfilter1(c)
return c:IsSetCard(0x2dd) and c:IsType(TYPE_MONSTER) return c:IsSetCard(0x2dd) and c:IsType(TYPE_MONSTER)
and Duel.IsExistingMatchingCard(s.cfilter2,tp,LOCATION_DECK,0,1,c)
end end
function s.cfilter2(c) function s.cfilter2(c)
return c:IsRace(RACE_DINOSAUR) return c:IsRace(RACE_DINOSAUR)
end end
function s.target(e,tp,eg,ep,ev,re,r,rp,chk) function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(s.cfilter1,tp,LOCATION_DECK,0,1,nil,tp) end if chk==0 then
return Duel.IsExistingMatchingCard(s.cfilter1,tp,LOCATION_DECK,0,1,nil)
and Duel.IsExistingMatchingCard(s.cfilter2,tp,LOCATION_DECK,0,1,nil)
and Duel.IsExistingMatchingCard(
function(c) return s.cfilter1(c) or s.cfilter2(c) end,
tp,LOCATION_DECK,0,2,nil
)
end
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,0,LOCATION_EXTRA) Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,nil,1,0,LOCATION_EXTRA)
end end
function s.filter2(c,e,tp,m,f,chkf) function s.filter2(c,e,tp,m,f,chkf)
...@@ -28,31 +34,32 @@ function s.filter2(c,e,tp,m,f,chkf) ...@@ -28,31 +34,32 @@ function s.filter2(c,e,tp,m,f,chkf)
and c:IsCanBeSpecialSummoned(e,SUMMON_TYPE_FUSION,tp,false,false) and c:CheckFusionMaterial(m,nil,chkf) and c:IsCanBeSpecialSummoned(e,SUMMON_TYPE_FUSION,tp,false,false) and c:CheckFusionMaterial(m,nil,chkf)
end end
function s.activate(e,tp,eg,ep,ev,re,r,rp) function s.activate(e,tp,eg,ep,ev,re,r,rp)
local g1=Duel.GetMatchingGroup(s.cfilter1,tp,LOCATION_DECK,0,nil,tp)
local dcount=Duel.GetFieldGroupCount(tp,LOCATION_DECK,0) local dcount=Duel.GetFieldGroupCount(tp,LOCATION_DECK,0)
if dcount==0 then return end if dcount==0 then return end
local seq1=-1 local g1=Duel.GetMatchingGroup(s.cfilter1,tp,LOCATION_DECK,0,nil)
for tc in aux.Next(g1) do if #g1==0 then return end
if tc:GetSequence()>seq1 then
seq1=tc:GetSequence()
end
end
local g2=Duel.GetMatchingGroup(s.cfilter2,tp,LOCATION_DECK,0,nil) local g2=Duel.GetMatchingGroup(s.cfilter2,tp,LOCATION_DECK,0,nil)
local seq2=-1 if #g2==0 then return end
for tc in aux.Next(g2) do -- top card in g1
if tc:GetSequence()>seq2 and tc:GetSequence()~=seq1 then local c1=g1:GetMaxGroup(Card.GetSequence):GetFirst()
seq2=tc:GetSequence() -- top card in g2
end local c2=g2:GetMaxGroup(Card.GetSequence):GetFirst()
end local seq=math.min(c1:GetSequence(),c2:GetSequence())
if seq1==-1 or seq2==-1 then -- same card: try 2nd top
Duel.ConfirmDecktop(tp,dcount) if c1==c2 then
Duel.ShuffleDeck(tp) g1:RemoveCard(c1)
return g2:RemoveCard(c2)
-- if no 2nd cards, just exit
if #g1==0 and #g2==0 then return end
local seq1=(#g1>0) and select(2,g1:GetMaxGroup(Card.GetSequence)) or -1
local seq2=(#g2>0) and select(2,g2:GetMaxGroup(Card.GetSequence)) or -1
seq=math.max(seq1,seq2)
end end
if seq2<seq1 then seq1=seq2 end local excavate_count=dcount-seq
Duel.ConfirmDecktop(tp,dcount-seq1) Duel.ConfirmDecktop(tp,excavate_count)
Duel.SetLP(tp,Duel.GetLP(tp)-(dcount-seq1)*400) Duel.SetLP(tp,Duel.GetLP(tp)-excavate_count*400)
local mg=Duel.GetDecktopGroup(tp,dcount-seq1):Filter(Card.IsType,nil,TYPE_MONSTER) local mg=Duel.GetDecktopGroup(tp,excavate_count):Filter(Card.IsType,nil,TYPE_MONSTER)
local chkf=tp local chkf=tp
local sg1=Duel.GetMatchingGroup(s.filter2,tp,LOCATION_EXTRA,0,nil,e,tp,mg,nil,chkf) local sg1=Duel.GetMatchingGroup(s.filter2,tp,LOCATION_EXTRA,0,nil,e,tp,mg,nil,chkf)
local mg2=nil local mg2=nil
...@@ -79,6 +86,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -79,6 +86,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
Duel.SpecialSummon(tc,SUMMON_TYPE_FUSION,tp,tp,false,false,POS_FACEUP) Duel.SpecialSummon(tc,SUMMON_TYPE_FUSION,tp,tp,false,false,POS_FACEUP)
elseif ce~=nil then elseif ce~=nil then
local mat2=Duel.SelectFusionMaterial(tp,tc,mg2,nil,chkf) local mat2=Duel.SelectFusionMaterial(tp,tc,mg2,nil,chkf)
Duel.BreakEffect()
local fop=ce:GetOperation() local fop=ce:GetOperation()
fop(ce,e,tp,tc,mat2) fop(ce,e,tp,tc,mat2)
end end
......
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