Commit a7491144 authored by Tachibana's avatar Tachibana

rar

parent 573fc14f
Pipeline #3532 failed with stages
in 18 minutes and 20 seconds
......@@ -370,3 +370,14 @@ end
function Tenka.costfilter(c)
return c:IsFaceup() and bit.band(c:GetOriginalType(),TYPE_TRAP)~=0 and bit.band(c:GetOriginalType(),TYPE_CONTINUOUS)~=0 and c:IsType(TYPE_MONSTER) and c:IsAbleToGraveAsCost()
end
--
function Tenka.FlowerKnightGirl(c)
--synchro limit
local ea=Effect.CreateEffect(c)
ea:SetType(EFFECT_TYPE_SINGLE)
ea:SetCode(EFFECT_CANNOT_BE_SYNCHRO_MATERIAL)
ea:SetProperty(EFFECT_FLAG_SINGLE_RANGE)
ea:SetRange(LOCATION_MZONE)
ea:SetValue(aux.TRUE)
c:RegisterEffect(ea)
end
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