Commit a101af48 authored by POLYMER's avatar POLYMER

fix

parent c084c5c9
No preview for this file type
expansions/pics/11180057.jpg

29.9 KB | W: | H:

expansions/pics/11180057.jpg

259 KB | W: | H:

expansions/pics/11180057.jpg
expansions/pics/11180057.jpg
expansions/pics/11180057.jpg
expansions/pics/11180057.jpg
  • 2-up
  • Swipe
  • Onion skin
expansions/pics/9911720.jpg

59.8 KB | W: | H:

expansions/pics/9911720.jpg

59.9 KB | W: | H:

expansions/pics/9911720.jpg
expansions/pics/9911720.jpg
expansions/pics/9911720.jpg
expansions/pics/9911720.jpg
  • 2-up
  • Swipe
  • Onion skin
......@@ -34,16 +34,16 @@ function s.initial_effect(c)
e4:SetTarget(s.sptg)
e4:SetOperation(s.spop)
c:RegisterEffect(e4)
if not cm.Effect_Count then
cm.Effect_Count=true
if not s.Effect_Count then
s.Effect_Count=true
local e7_1=Effect.GlobalEffect()
e7_1:SetType(EFFECT_TYPE_CONTINUOUS+EFFECT_TYPE_FIELD)
e7_1:SetCode(EVENT_CHAINING)
e7_1:SetOperation(cm.counterop)
e7_1:SetOperation(s.counterop)
Duel.RegisterEffect(e7_1,0)
end
end
function cm.counterop(e,tp,eg,ep,ev,re,r,rp)
function s.counterop(e,tp,eg,ep,ev,re,r,rp)
if Duel.GetTurnPlayer()==e:GetHandlerPlayer() then
Duel.RegisterFlagEffect(e:GetHandlerPlayer(),id+1,RESET_PHASE+PHASE_END,0,2)
end
......
......@@ -30,7 +30,7 @@ function c75081043.initial_effect(c)
e3:SetDescription(aux.Stringid(75081043,1))
e3:SetCategory(CATEGORY_TOGRAVE)
e3:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e3:SetProperty(EFFECT_FLAG_DAMAGE_STEP)
e3:SetProperty(EFFECT_FLAG_DAMAGE_STEP+EFFECT_FLAG_DELAY)
e3:SetCode(EVENT_SUMMON_SUCCESS)
e3:SetCondition(c75081043.descon)
e3:SetTarget(c75081043.target)
......
......@@ -29,7 +29,7 @@ function c95101034.activate(e,tp,eg,ep,ev,re,r,rp)
if ft<=0 then return end
local tc=Duel.GetFirstTarget()
if tc:IsFaceup() and tc:IsRelateToEffect(e) then
local code=c:GetCode()
local code=tc:GetCode()
local g=Duel.GetMatchingGroup(c95101034.spfilter,tp,LOCATION_DECK,0,nil,e,tp,code)
local ct=g:GetCount()
if ct==0 then return end
......
......@@ -3,7 +3,7 @@ function c98500302.initial_effect(c)
c:EnableReviveLimit()
aux.AddCodeList(c,10000000,10000010,10000020)
aux.AddFusionProcFunFunRep(c,aux.FilterBoolFunction(Card.IsFusionCode,10000020,10000000,10000010),c98500302.ffilter,1,2,true)
aux.AddContactFusionProcedure(c,c98500302.cfilter,LOCATION_HAND+LOCATION_MZONE,0,c98500302.sprop(c))
aux.AddContactFusionProcedure(c,c98500302.cfilter,LOCATION_HAND+LOCATION_MZONE+LOCATION_REMOVED,0,c98500302.sprop(c))
--CANNOT_BE_FUSION_MATERIAL
local e0=Effect.CreateEffect(c)
e0:SetType(EFFECT_TYPE_SINGLE)
......@@ -77,6 +77,7 @@ function c98500302.sprop(c)
local code=tc:GetOriginalCode()
c:CopyEffect(code,RESET_EVENT+RESETS_STANDARD-RESET_TOFIELD,1)
tc=cg:GetNext()
c:RegisterFlagEffect(98500302,RESET_EVENT+0xff0000,EFFECT_FLAG_CLIENT_HINT,1,0,aux.Stringid(98500302,3))
end
end
end
......
......@@ -2,7 +2,7 @@
function c9911720.initial_effect(c)
--fusion material
c:EnableReviveLimit()
aux.AddFusionProcFunRep(c,aux.FilterBoolFunction(Card.IsFusionSetCard,0x9957),2,false)
aux.AddFusionProcFunRep(c,c9911720.mfilter,2,false)
aux.AddContactFusionProcedure(c,aux.FilterBoolFunction(Card.IsReleasable,REASON_SPSUMMON),LOCATION_MZONE,0,Duel.Release,REASON_SPSUMMON+REASON_MATERIAL)
--spsummon condition
local e1=Effect.CreateEffect(c)
......@@ -34,6 +34,9 @@ function c9911720.initial_effect(c)
e3:SetOperation(c9911720.rmop)
c:RegisterEffect(e3)
end
function c9911720.mfilter(c)
return c:IsFusionSetCard(0x9957) and not c:IsType(TYPE_FUSION)
end
function c9911720.thfilter(c)
return c:IsSetCard(0x9957) and c:IsAbleToHand()
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