Commit b068db65 authored by nanahira's avatar nanahira

updates

parent 88352770
...@@ -43,14 +43,14 @@ function cm.desop(e,tp,eg,ep,ev,re,r,rp) ...@@ -43,14 +43,14 @@ function cm.desop(e,tp,eg,ep,ev,re,r,rp)
local tc=g:GetFirst() local tc=g:GetFirst()
while tc do while tc do
--Senya.ExileCard(tc) --Senya.ExileCard(tc)
Duel.MoveToField(tc,tp,tp,LOCATION_SZONE,POS_FACEUP,true) Duel.MoveToField(tc,tp,tp,LOCATION_PZONE,POS_FACEUP,true)
tc=g:GetNext() tc=g:GetNext()
end end
else else
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_CONTROL) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_CONTROL)
local tc=g:Select(tp,1,1,nil):GetFirst() local tc=g:Select(tp,1,1,nil):GetFirst()
--Duel.SendtoDeck(tc,nil,-1,REASON_RULE) --Duel.SendtoDeck(tc,nil,-1,REASON_RULE)
Duel.MoveToField(tc,tp,tp,LOCATION_SZONE,POS_FACEUP,true) Duel.MoveToField(tc,tp,tp,LOCATION_PZONE,POS_FACEUP,true)
end end
end end
function cm.filter(c) function cm.filter(c)
......
...@@ -57,7 +57,7 @@ function cm.initial_effect(c) ...@@ -57,7 +57,7 @@ function cm.initial_effect(c)
local g=Duel.SelectMatchingCard(tp,cm.pcfilter,tp,LOCATION_DECK,0,2,2,nil) local g=Duel.SelectMatchingCard(tp,cm.pcfilter,tp,LOCATION_DECK,0,2,2,nil)
local pc=g:GetFirst() local pc=g:GetFirst()
while pc do while pc do
Duel.MoveToField(pc,tp,tp,LOCATION_SZONE,POS_FACEUP,true) Duel.MoveToField(pc,tp,tp,LOCATION_PZONE,POS_FACEUP,true)
local e1=Effect.CreateEffect(e:GetHandler()) local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_SINGLE) e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DISABLE) e1:SetCode(EFFECT_DISABLE)
......
...@@ -71,7 +71,7 @@ function cm.damcon(e,tp,eg,ep,ev,re,r,rp) ...@@ -71,7 +71,7 @@ function cm.damcon(e,tp,eg,ep,ev,re,r,rp)
return c:GetFlagEffect(m)~=0 return c:GetFlagEffect(m)~=0
end end
function cm.damop(e,tp,eg,ep,ev,re,r,rp) function cm.damop(e,tp,eg,ep,ev,re,r,rp)
e:GetHandler():AddCounter(0x18,3) e:GetHandler():AddCounter(0x18,1)
end end
function cm.dfilter(c) function cm.dfilter(c)
return c:IsLocation(LOCATION_MZONE) and c:IsFaceup() and Senya.check_set(c,"mf") return c:IsLocation(LOCATION_MZONE) and c:IsFaceup() and Senya.check_set(c,"mf")
...@@ -89,5 +89,5 @@ function cm.value(e,c) ...@@ -89,5 +89,5 @@ function cm.value(e,c)
return c:IsFaceup() and c:IsControler(tp) and c:GetLocation()==LOCATION_MZONE and Senya.check_set(c,"mf") return c:IsFaceup() and c:IsControler(tp) and c:GetLocation()==LOCATION_MZONE and Senya.check_set(c,"mf")
end end
function cm.desop(e,tp,eg,ep,ev,re,r,rp) function cm.desop(e,tp,eg,ep,ev,re,r,rp)
Duel.RemoveCounter(tp,1,0,0x1,1,REASON_COST) Duel.RemoveCounter(tp,1,0,0x1,3,REASON_COST)
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