Commit 61e31325 authored by TanakaKotoha's avatar TanakaKotoha

wadashimo

parent 937b17b5
Pipeline #626 passed with stages
in 42 minutes and 5 seconds
...@@ -83,7 +83,24 @@ function cm.disop(e,tp,eg,ep,ev,re,r,rp) ...@@ -83,7 +83,24 @@ function cm.disop(e,tp,eg,ep,ev,re,r,rp)
-- local ct=Duel.GetCurrentChain() -- local ct=Duel.GetCurrentChain()
local rx=Duel.GetMatchingGroup(cm.tdfilter3,rc,LOCATION_MZONE,LOCATION_MZONE,nil) local rx=Duel.GetMatchingGroup(cm.tdfilter3,rc,LOCATION_MZONE,LOCATION_MZONE,nil)
local rxs=rx:GetCount() local rxs=rx:GetCount()
if loc>=rxs and rc:IsAbleToDeck() and not rc:IsCode(m) then if loc>=rxs then
Duel.SendtoDeck(rc,nil,2,REASON_EFFECT) if (rc:IsType(TYPE_SPELL) or rc:IsType(TYPE_TRAP)) then
if re:IsHasType(EFFECT_TYPE_ACTIVATE) then
rc:CancelToGrave()
Duel.SendtoDeck(rc,nil,2,REASON_EFFECT)
return
else
if rc:IsAbleToDeck() then
Duel.SendtoDeck(rc,nil,2,REASON_EFFECT)
return
end
return
end
else
if rc:IsAbleToDeck() then
Duel.SendtoDeck(rc,nil,2,REASON_EFFECT)
return
end
end
end end
end end
\ No newline at end of file
...@@ -22,16 +22,15 @@ function cm.ritual_filter(c) ...@@ -22,16 +22,15 @@ function cm.ritual_filter(c)
return c:IsCode(81027000) return c:IsCode(81027000)
end end
function cm.drfilter(c) function cm.drfilter(c)
return c:IsCode(81027000) and c:IsAbleToDeck() return c:IsCode(81027000) and c:IsAbleToDeck() and not c:IsPublic()
end end
function cm.drtg(e,tp,eg,ep,ev,re,r,rp,chk) function cm.drtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsPlayerCanDraw(tp) if chk==0 then return Duel.IsPlayerCanDraw(tp)
and Duel.IsExistingMatchingCard(cm.drfilter,tp,LOCATION_HAND,0,1,nil) end and Duel.IsExistingMatchingCard(cm.drfilter,tp,LOCATION_HAND,0,1,e:GetHandler()) end
Duel.SetTargetPlayer(tp) Duel.SetTargetPlayer(tp)
Duel.SetOperationInfo(0,CATEGORY_TODECK,nil,1,tp,LOCATION_HAND) Duel.SetOperationInfo(0,CATEGORY_TODECK,nil,1,tp,LOCATION_HAND)
end end
function cm.drop(e,tp,eg,ep,ev,re,r,rp) function cm.drop(e,tp,eg,ep,ev,re,r,rp)
if not e:GetHandler():IsRelateToEffect(e) then return end
local p=Duel.GetChainInfo(0,CHAININFO_TARGET_PLAYER) local p=Duel.GetChainInfo(0,CHAININFO_TARGET_PLAYER)
Duel.Hint(HINT_SELECTMSG,p,HINTMSG_TODECK) Duel.Hint(HINT_SELECTMSG,p,HINTMSG_TODECK)
local g=Duel.SelectMatchingCard(p,cm.drfilter,p,LOCATION_HAND,0,1,63,nil) local g=Duel.SelectMatchingCard(p,cm.drfilter,p,LOCATION_HAND,0,1,63,nil)
......
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