Commit aa8cce42 authored by Chrono-Genex's avatar Chrono-Genex Committed by GitHub

fix for Vanadis of the Nordic Ascendant (#1643)

parent a4b7ad4c
......@@ -45,7 +45,7 @@ function c30604579.initial_effect(c)
c:RegisterEffect(e4)
end
function c30604579.tfilter(c)
return c:IsSetCard(0x6042) or c:IsCode(61777313)
return c:IsSetCard(0x6042) or c:IsHasEffect(61777313)
end
function c30604579.distg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return Duel.IsExistingMatchingCard(Card.IsFaceup,tp,0,LOCATION_MZONE,1,nil) end
......
......@@ -16,6 +16,12 @@ function c61777313.initial_effect(c)
e2:SetCost(c61777313.cost)
e2:SetOperation(c61777313.operation)
c:RegisterEffect(e2)
--
local e3=Effect.CreateEffect(c)
e3:SetType(EFFECT_TYPE_SINGLE)
e3:SetProperty(EFFECT_FLAG_CANNOT_DISABLE+EFFECT_FLAG_UNCOPYABLE)
e3:SetCode(61777313)
c:RegisterEffect(e3)
end
function c61777313.synlimit(e,c)
return c:IsSetCard(0x42)
......
......@@ -48,7 +48,7 @@ function c67098114.initial_effect(c)
c:RegisterEffect(e4)
end
function c67098114.tfilter(c)
return c:IsSetCard(0xa042) or c:IsCode(61777313)
return c:IsSetCard(0xa042) or c:IsHasEffect(61777313)
end
function c67098114.discon(e,tp,eg,ep,ev,re,r,rp)
return not e:GetHandler():IsStatus(STATUS_BATTLE_DESTROYED) and Duel.GetTurnPlayer()==tp
......
......@@ -43,7 +43,7 @@ function c93483212.initial_effect(c)
c:RegisterEffect(e4)
end
function c93483212.tfilter(c)
return c:IsSetCard(0x3042) or c:IsCode(61777313)
return c:IsSetCard(0x3042) or c:IsHasEffect(61777313)
end
function c93483212.imop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
......
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