Commit 9e9e45d1 authored by Tachibana's avatar Tachibana

ndyd

parent e3678a43
Pipeline #4969 passed with stages
in 17 minutes and 52 seconds
......@@ -43,7 +43,7 @@ function c20000162.initial_effect(c)
Duel.BreakEffect()
Duel.Hint(HINT_SELECTMSG,p,HINTMSG_TODECK)
local sg=g:Select(p,1,1,nil)
Duel.SendtoDeck(sg,nil,0,REASON_EFFECT)
Duel.SendtoDeck(sg,nil,1,REASON_EFFECT)
Duel.SortDecktop(p,p,1)
end
end)
......
......@@ -42,7 +42,7 @@ function c20000163.initial_effect(c)
Duel.BreakEffect()
Duel.Hint(HINT_SELECTMSG,p,HINTMSG_TODECK)
local sg=g:Select(p,1,1,nil)
Duel.SendtoDeck(sg,nil,0,REASON_EFFECT)
Duel.SendtoDeck(sg,nil,1,REASON_EFFECT)
Duel.SortDecktop(p,p,1)
end
end)
......
......@@ -43,7 +43,7 @@ function c20000164.initial_effect(c)
Duel.BreakEffect()
Duel.Hint(HINT_SELECTMSG,p,HINTMSG_TODECK)
local sg=g:Select(p,1,1,nil)
Duel.SendtoDeck(sg,nil,0,REASON_EFFECT)
Duel.SendtoDeck(sg,nil,1,REASON_EFFECT)
Duel.SortDecktop(p,p,1)
end
end)
......
......@@ -43,7 +43,7 @@ function c20000165.initial_effect(c)
Duel.BreakEffect()
Duel.Hint(HINT_SELECTMSG,p,HINTMSG_TODECK)
local sg=g:Select(p,1,1,nil)
Duel.SendtoDeck(sg,nil,0,REASON_EFFECT)
Duel.SendtoDeck(sg,nil,1,REASON_EFFECT)
Duel.SortDecktop(p,p,1)
end
end)
......
......@@ -6,7 +6,7 @@ function c37900007.initial_effect(c)
c:RegisterEffect(e1)
--e2
local e2=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(37900007,0))
e2:SetDescription(aux.Stringid(37900007,0))
e2:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH)
e2:SetType(EFFECT_TYPE_IGNITION)
e2:SetRange(LOCATION_SZONE)
......@@ -15,7 +15,7 @@ function c37900007.initial_effect(c)
local c=e:GetHandler()
if chk==0 then return Duel.GetFieldGroupCount(tp,LOCATION_DECK,0)>=3 end
Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,0,LOCATION_DECK)
end)
end
e2:SetOperation(function(e,tp,eg,ep,ev,re,r,rp)
if not e:GetHandler():IsRelateToEffect(e) then return end
Duel.ConfirmDecktop(tp,3)
......
......@@ -40,6 +40,7 @@ function cm.initial_effect(c)
local g=Duel.SelectMatchingCard(tp,aux.NecroValleyFilter(cm.tf2),tp,LOCATION_GRAVE,0,1,1,nil)
if g:GetCount()>0 then
Duel.SendtoHand(g,tp,REASON_EFFECT)
Duel.ConfirmCards(1-tp,g)
end
end)
c:RegisterEffect(e2)
......
......@@ -40,6 +40,7 @@ function cm.initial_effect(c)
local g=Duel.SelectMatchingCard(tp,cm.tf2,tp,LOCATION_DECK,0,1,1,nil)
if g:GetCount()>0 then
Duel.SendtoHand(g,tp,REASON_EFFECT)
Duel.ConfirmCards(1-tp,g)
end
end)
c:RegisterEffect(e2)
......
......@@ -18,6 +18,7 @@ function cm.initial_effect(c)
local g=Duel.SelectMatchingCard(tp,cm.tf1,tp,LOCATION_DECK,0,1,1,nil)
if g:GetCount()>0 then
Duel.SendtoHand(g,tp,REASON_EFFECT)
Duel.ConfirmCards(1-tp,g)
end
end)
c:RegisterEffect(e1)
......
......@@ -18,6 +18,7 @@ function cm.initial_effect(c)
local g=Duel.SelectMatchingCard(tp,cm.tf1,tp,LOCATION_DECK,0,1,1,nil)
if g:GetCount()>0 then
Duel.SendtoHand(g,tp,REASON_EFFECT)
Duel.ConfirmCards(1-tp,g)
end
end)
c:RegisterEffect(e1)
......
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