Commit a472a8ba authored by 聖園ミカ's avatar 聖園ミカ 🐟

byd

parent 99a824ff
-- 全都Lost掉了 --全都Lost掉了
local s,id,o=GetID() local s,id,o=GetID()
function s.initial_effect(c) function s.initial_effect(c)
-- Activate --Activate
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE) e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_FREE_CHAIN) e1:SetCode(EVENT_FREE_CHAIN)
...@@ -12,7 +12,7 @@ end ...@@ -12,7 +12,7 @@ end
function s.atkupp(c) function s.atkupp(c)
-- atk up --atk up
local e2=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
e2:SetType(EFFECT_TYPE_FIELD) e2:SetType(EFFECT_TYPE_FIELD)
e2:SetCode(EFFECT_UPDATE_ATTACK) e2:SetCode(EFFECT_UPDATE_ATTACK)
...@@ -26,6 +26,7 @@ function s.atktg(e,c) ...@@ -26,6 +26,7 @@ function s.atktg(e,c)
if c:GetBaseAttack()~=35 then return false end if c:GetBaseAttack()~=35 then return false end
local tp=e:GetHandlerPlayer() local tp=e:GetHandlerPlayer()
return c:IsType(TYPE_FUSION) and aux.GetColumn(c,tp)==e:GetHandler():GetSequence() return c:IsType(TYPE_FUSION) and aux.GetColumn(c,tp)==e:GetHandler():GetSequence()
and c:GetSequence()<5
end end
......
...@@ -130,8 +130,8 @@ function c50424805.tgop(e,tp,eg,ep,ev,re,r,rp) ...@@ -130,8 +130,8 @@ function c50424805.tgop(e,tp,eg,ep,ev,re,r,rp)
end end
end end
function c50424805.rprlfilter(c) function c50424805.rprlfilter(c)
return (c:IsDisabled() or c:IsType(TYPE_NORMAL)) and c:IsReleasableByEffect() return ((c:IsDisabled() and c:IsType(TYPE_MONSTER)) or c:IsType(TYPE_NORMAL))
and not c:IsStatus(STATUS_DESTROY_CONFIRMED) and c:IsReleasableByEffect() and not c:IsStatus(STATUS_DESTROY_CONFIRMED)
end end
function c50424805.repfilter(c,tp,ec) function c50424805.repfilter(c,tp,ec)
return ((c:IsControler(tp) and c:IsOnField() and c:IsType(TYPE_SPELL) and c:IsFaceup()) or c==ec) return ((c:IsControler(tp) and c:IsOnField() and c:IsType(TYPE_SPELL) and c:IsFaceup()) or c==ec)
......
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