Commit 91cfefce authored by Tachibana's avatar Tachibana

1145141919810

parent e3571e99
Pipeline #15048 passed with stages
in 26 minutes and 17 seconds
...@@ -74,14 +74,18 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -74,14 +74,18 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
local th=Duel.SelectMatchingCard(tp,cm.ffilter,tp,LOCATION_GRAVE,0,1,1,g) local th=Duel.SelectMatchingCard(tp,cm.ffilter,tp,LOCATION_GRAVE,0,1,1,g)
g:Merge(th) g:Merge(th)
end end
-- if g:GetCount()>ft then -- if g:GetCount()>ft then
-- Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TOFIELD) -- Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TOFIELD)
-- local rg=g:Select(tp,ft,ft,nil) -- local rg=g:Select(tp,ft,ft,nil)
-- g=rg -- g=rg
-- end -- end
local tc=g:GetFirst() local tc=g:GetFirst()
while tc do while tc do
Duel.MoveToField(tc,tp,tp,LOCATION_SZONE,POS_FACEUP,true) if tc:IsType(TYPE_FIELD) then
Duel.MoveToField(tc,tp,tp,LOCATION_FZONE,POS_FACEUP,true)
else
Duel.MoveToField(tc,tp,tp,LOCATION_SZONE,POS_FACEUP,true)
end
local e1=Effect.CreateEffect(e:GetHandler()) local e1=Effect.CreateEffect(e:GetHandler())
e1:SetCode(EFFECT_CHANGE_TYPE) e1:SetCode(EFFECT_CHANGE_TYPE)
e1:SetType(EFFECT_TYPE_SINGLE) e1:SetType(EFFECT_TYPE_SINGLE)
......
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