Commit 7d49b697 authored by VanillaSalt's avatar VanillaSalt

fix

parent 4065db0e
......@@ -23,7 +23,7 @@ end
function c14735698.filter(c,e,tp,m)
if not c:IsSetCard(0xb4) or bit.band(c:GetType(),0x81)~=0x81
or not c:IsCanBeSpecialSummoned(e,SUMMON_TYPE_RITUAL,tp,true,false) then return false end
if c:IsCode(21105106) then return c:ritual_custom_operation(m) end
if c:IsCode(21105106) then return c:ritual_custom_condition(m) end
local mg=nil
if c.mat_filter then
mg=m:Filter(c.mat_filter,c)
......
......@@ -40,7 +40,7 @@ end
function c84388461.filter(c,e,tp,m)
if not c:IsSetCard(0xb4) or bit.band(c:GetType(),0x81)~=0x81
or not c:IsCanBeSpecialSummoned(e,SUMMON_TYPE_RITUAL,tp,true,false) then return false end
if c:IsCode(21105106) then return c:ritual_custom_operation(m) end
if c:IsCode(21105106) then return c:ritual_custom_condition(m) end
local mg=nil
if c.mat_filter then
mg=m:Filter(c.mat_filter,c)
......
......@@ -23,7 +23,7 @@ end
function c97211663.filter(c,e,tp,m)
if not c:IsSetCard(0xb4) or bit.band(c:GetType(),0x81)~=0x81
or not c:IsCanBeSpecialSummoned(e,SUMMON_TYPE_RITUAL,tp,true,true) or c:IsHasEffect(EFFECT_NECRO_VALLEY) then return false end
if c:IsCode(21105106) then return c:IsLocation(LOCATION_HAND) and c:ritual_custom_operation(m) end
if c:IsCode(21105106) then return c:IsLocation(LOCATION_HAND) and c:ritual_custom_condition(m) end
local mg=nil
if c.mat_filter then
mg=m:Filter(c.mat_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