Commit 47c3e92f authored by Tachibana's avatar Tachibana

ndyd

parent 98f99472
Pipeline #5313 failed with stages
in 55 minutes and 9 seconds
No preview for this file type
......@@ -81,7 +81,7 @@ function cm.desop(e,tp,eg,ep,ev,re,r,rp)
tc:RegisterEffect(e1)
end
function cm.rmcon(e,tp,eg,ep,ev,re,r,rp)
return e:GetHandler():IsSummonType(SUMMON_TYPE_SYNCHRO)
return e:GetHandler():IsSummonType(SUMMON_TYPE_RITUAL)
end
function cm.rmtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(Card.IsAbleToRemove,tp,0,LOCATION_GRAVE,1,nil) end
......
......@@ -37,6 +37,9 @@ function c19500001.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
Duel.SetOperationInfo(0,CATEGORY_DESTROY,sg,sg:GetCount(),0,0)
Duel.SetOperationInfo(0,CATEGORY_SPECIAL_SUMMON,c,1,0,0)
Duel.SetChainLimit(c19500001.chainlm)
if e:IsHasType(EFFECT_TYPE_IGNITION) then
Duel.SetChainLimit(aux.FALSE)
end
end
function c19500001.spop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
......@@ -66,6 +69,9 @@ function c19500001.thtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return true end
Duel.SetOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_GRAVE)
Duel.SetChainLimit(c19500001.chainlm)
if e:IsHasType(EFFECT_TYPE_IGNITION) then
Duel.SetChainLimit(aux.FALSE)
end
end
function c19500001.thop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
......
......@@ -22,10 +22,17 @@ function c19500029.initial_effect(c)
e2:SetCode(EVENT_FREE_CHAIN)
e2:SetHintTiming(0,TIMINGS_CHECK_MONSTER+TIMING_END_PHASE)
e2:SetRange(LOCATION_MZONE)
e2:SetCountLimit(1,19500041)
e2:SetCountLimit(1,19500029+100)
e2:SetTarget(c19500029.destg)
e2:SetOperation(c19500029.desop)
c:RegisterEffect(e2)
--link off
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_SINGLE)
e3:SetCode(EFFECT_CANNOT_BE_LINK_MATERIAL)
e3:SetValue(1)
e3:SetReset(RESET_EVENT+0x1fe0000)
c:RegisterEffect(e3)
end
function c19500029.lcheck(g,lc)
return g:IsExists(Card.IsLinkSetCard,1,nil,0x3990) and g:IsExists(Card.IsLinkRace,1,nil,RACE_MACHINE)
......
......@@ -8,6 +8,7 @@ function c85401480.initial_effect(c)
e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetCode(EVENT_FREE_CHAIN)
e1:SetRange(LOCATION_MZONE)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetCountLimit(1)
e1:SetCondition(c85401480.cd)
e1:SetCost(c85401480.ct)
......
......@@ -27,6 +27,7 @@ function c85401630.initial_effect(c)
e4:SetType(EFFECT_TYPE_QUICK_O)
e4:SetCode(EVENT_FREE_CHAIN)
e4:SetRange(LOCATION_SZONE)
e4:SetProperty(EFFECT_FLAG_CARD_TARGET)
e4:SetCountLimit(1)
e4:SetCondition(c85401630.cd)
e4:SetCost(c85401630.ct)
......
......@@ -27,6 +27,7 @@ function c85401660.initial_effect(c)
e4:SetType(EFFECT_TYPE_IGNITION)
e4:SetCode(EVENT_FREE_CHAIN)
e4:SetRange(LOCATION_SZONE)
e4:SetProperty(EFFECT_FLAG_CARD_TARGET)
e4:SetCountLimit(1)
e4:SetCondition(c85401660.cd)
e4:SetCost(c85401660.ct)
......
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