Commit cc7a65c0 authored by tsubaki's avatar tsubaki

2.0.0 fix2

parent f28195be
Pipeline #39070 passed with stage
in 7 seconds
No preview for this file type
No preview for this file type
...@@ -18,13 +18,6 @@ function c27043.initial_effect(c) ...@@ -18,13 +18,6 @@ function c27043.initial_effect(c)
e2:SetType(EFFECT_TYPE_SINGLE) e2:SetType(EFFECT_TYPE_SINGLE)
e2:SetCode(EFFECT_DIRECT_ATTACK) e2:SetCode(EFFECT_DIRECT_ATTACK)
c:RegisterEffect(e2) c:RegisterEffect(e2)
--synchro summon
local e4=Effect.CreateEffect(c)
e4:SetType(EFFECT_TYPE_SINGLE)
e4:SetCode(EFFECT_CANNOT_BE_SYNCHRO_MATERIAL)
e4:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e4:SetValue(c27043.synlimit)
c:RegisterEffect(e4)
--special summon --special summon
local e5=Effect.CreateEffect(c) local e5=Effect.CreateEffect(c)
e5:SetDescription(aux.Stringid(27043,0)) e5:SetDescription(aux.Stringid(27043,0))
...@@ -39,11 +32,6 @@ function c27043.initial_effect(c) ...@@ -39,11 +32,6 @@ function c27043.initial_effect(c)
e6:SetCode(EVENT_SPSUMMON_SUCCESS) e6:SetCode(EVENT_SPSUMMON_SUCCESS)
c:RegisterEffect(e6) c:RegisterEffect(e6)
end end
function c27043.synlimit(e,c)
if not c then return false end
if c:IsSetCard(0x5208) then
return else return not c:IsSetCard(0x120) end
end
function c27043.spfilter(c) function c27043.spfilter(c)
return c:IsFaceup() and c:IsAbleToHandAsCost() and c:IsSetCard(0x208) and (c:IsRace(RACE_ZOMBIE) or c:IsRace(RACE_ROCK)) return c:IsFaceup() and c:IsAbleToHandAsCost() and c:IsSetCard(0x208) and (c:IsRace(RACE_ZOMBIE) or c:IsRace(RACE_ROCK))
-- and not c:IsCode(27043) -- and not c:IsCode(27043)
......
...@@ -40,7 +40,7 @@ function c27059.initial_effect(c) ...@@ -40,7 +40,7 @@ function c27059.initial_effect(c)
e6:SetProperty(EFFECT_FLAG_SET_AVAILABLE) e6:SetProperty(EFFECT_FLAG_SET_AVAILABLE)
e6:SetRange(LOCATION_MZONE) e6:SetRange(LOCATION_MZONE)
e6:SetTargetRange(LOCATION_SZONE,0) e6:SetTargetRange(LOCATION_SZONE,0)
e6:SetTarget(aux.TargetBoolFunction(Card.IsSetCard,0x168)) e6:SetTarget(aux.TargetBoolFunction(Card.IsSetCard,0x164))
c:RegisterEffect(e6) c:RegisterEffect(e6)
end end
function c27059.filter(c) function c27059.filter(c)
......
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