Commit 02edf53c authored by Tachibana's avatar Tachibana

ndyd

parent e5fccaf8
Pipeline #5287 passed with stage
in 20 minutes and 24 seconds
No preview for this file type
......@@ -64,6 +64,18 @@ function cm.initial_effect(c)
e6:SetTarget(cm.rttg)
e6:SetOperation(cm.rtop)
c:RegisterEffect(e6)
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(cm.regcon)
ee:SetTarget(cm.regtg)
ee:SetOperation(cm.bgmop)
c:RegisterEffect(ee)
end
function cm.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
function cm.setlimit(e,c,tp)
return c:IsType(TYPE_FIELD)
......
......@@ -3,7 +3,7 @@ local m=26807007
local scard=c26807007
local id=26807007
local cm=_G["c"..m]
Duel.LoadScript("c26800000.lua")
Duel.LoadScript("c81000000.lua")
function cm.initial_effect(c)
--Activate
local e0=Effect.CreateEffect(c)
......@@ -73,6 +73,18 @@ function cm.initial_effect(c)
e6:SetTarget(cm.tdtg)
e6:SetOperation(cm.tdop)
c:RegisterEffect(e6)
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(cm.regcon)
ee:SetTarget(cm.regtg)
ee:SetOperation(cm.bgmop)
c:RegisterEffect(ee)
end
function cm.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
function cm.cfilter(c,tp)
return c:GetOwner()==1-tp and c:IsAbleToRemoveAsCost()
......
--C.T.C
function c28300000.initial_effect(c)
end
......@@ -40,6 +40,18 @@ function c33330082.initial_effect(c)
e5:SetRange(LOCATION_SZONE)
e5:SetValue(c33330082.effectfilter)
c:RegisterEffect(e5)
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(c33330082.regcon)
ee:SetTarget(c33330082.regtg)
ee:SetOperation(c33330082.bgmop)
c:RegisterEffect(ee)
end
function c33330082.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
function c33330082.regtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then
......
......@@ -66,6 +66,18 @@ c:EnableCounterPermit(0x34f)
e13:SetTargetRange(1,0)
e13:SetValue(cm.actlimit)
c:RegisterEffect(e13)
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(cm.regcon)
ee:SetTarget(cm.regtg)
ee:SetOperation(cm.bgmop)
c:RegisterEffect(ee)
end
function cm.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
function cm.regtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then
......
......@@ -66,6 +66,18 @@ function cm.initial_effect(c)
e4:SetTarget(cm.target)
e4:SetValue(cm.indct)
c:RegisterEffect(e4)
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(cm.regcon)
ee:SetTarget(cm.regtg)
ee:SetOperation(cm.bgmop)
c:RegisterEffect(ee)
end
function cm.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
function cm.regtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then
......
......@@ -58,7 +58,49 @@ function cm.initial_effect(c)
e3:SetCondition(cm.spcon)
e3:SetTarget(cm.sptg)
e3:SetOperation(cm.spop)
c:RegisterEffect(e3)
c:RegisterEffect(e3)
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(cm.regcon)
ee:SetTarget(cm.regtg)
ee:SetOperation(cm.bgmop)
c:RegisterEffect(ee)
end
function cm.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
function cm.regtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then
return true
end
local c=e:GetHandler()
--to grave
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS)
e1:SetProperty(EFFECT_FLAG_CANNOT_DISABLE)
e1:SetCode(EVENT_PHASE+PHASE_END)
e1:SetCountLimit(1)
e1:SetRange(LOCATION_FZONE)
e1:SetCondition(cm.gycon)
e1:SetOperation(cm.gyop)
e1:SetReset(RESET_EVENT+RESETS_STANDARD)
c:SetTurnCounter(0)
c:RegisterEffect(e1)
end
function cm.gycon(e,tp,eg,ep,ev,re,r,rp)
return Duel.GetTurnPlayer()==tp
end
function cm.gyop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
local ct=c:GetTurnCounter()
ct=ct+1
c:SetTurnCounter(ct)
if ct==5 then
Duel.SendtoGrave(c,REASON_RULE)
end
end
function cm.thfilter1(c)
return c:IsType(TYPE_MONSTER) and (c:IsSetCard(0x5342) or c:IsSetCard(0xc342)) and c:IsAbleToHand()
......
This diff is collapsed.
......@@ -48,6 +48,18 @@ function c65000064.initial_effect(c)
e5:SetTarget(cm.eftg)
e5:SetLabelObject(e4)
c:RegisterEffect(e5)
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(cm.regcon)
ee:SetTarget(cm.regtg)
ee:SetOperation(cm.bgmop)
c:RegisterEffect(ee)
end
function cm.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
cm.toss_coin=true
function cm.val(e,c)
......
......@@ -73,6 +73,18 @@ function cm.initial_effect(c)
e7:SetTargetRange(1,0)
e7:SetValue(cm.actlimit)
c:RegisterEffect(e7)
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(cm.regcon)
ee:SetTarget(cm.regtg)
ee:SetOperation(cm.bgmop)
c:RegisterEffect(ee)
end
function cm.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
function cm.regtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then
......
......@@ -55,6 +55,18 @@ function cm.initial_effect(c)
e6:SetTargetRange(1,0)
e6:SetValue(cm.actlimit)
c:RegisterEffect(e6)
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(cm.regcon)
ee:SetTarget(cm.regtg)
ee:SetOperation(cm.bgmop)
c:RegisterEffect(ee)
end
function cm.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
function cm.regtg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then
......
......@@ -108,6 +108,20 @@ function scard.initial_effect(c)
ea:SetOperation(scard.addcount)
Duel.RegisterEffect(ea,0)
end
--open
local ee=Effect.CreateEffect(c)
ee:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_CONTINUOUS)
ee:SetCode(EVENT_MOVE)
ee:SetCondition(cm.regcon)
ee:SetTarget(scard.regtg)
ee:SetOperation(function()
Duel.Hint(HINT_MUSIC,0,id*16+1)
end)
c:RegisterEffect(ee)
end
function cm.regcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
return c:IsLocation(LOCATION_FZONE)
end
function scard.resetcount(e,tp,eg,ep,ev,re,r,rp)
scard[0]=0
......
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