Commit 04940115 authored by nanahira's avatar nanahira

fix

parent 15484bae
......@@ -62,7 +62,7 @@ function c13364097.lvcon(e,tp,eg,ep,ev,re,r,rp)
return Duel.GetTurnPlayer()==tp and (Duel.GetCurrentPhase()==PHASE_MAIN1 or Duel.GetCurrentPhase()==PHASE_MAIN2)
end
function c13364097.lvfilter(c)
return c:IsSetCard(0x14e) and c:IsType(TYPE_MONSTER) and c:IsFaceup() and (c:IsLevelAbove(4) or c:IsRankAbove(4))
return c:IsSetCard(0x14e) and c:IsType(TYPE_MONSTER) and c:IsFaceup() and (c:GetLevel()>0 or c:GetRank()>0)
end
function c13364097.lvtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsControler(tp) and chkc:IsLocation(LOCATION_MZONE) and c13364097.lvfilter(chkc) end
......
......@@ -28,7 +28,7 @@ function c47946130.initial_effect(c)
e3:SetCode(EVENT_CHAINING)
e3:SetRange(LOCATION_MZONE)
e3:SetCondition(c47946130.negcon)
e3:SetCondition(c47946130.ChainUniqueCost) -- 8/19 eratta: chain unique
e3:SetCost(c47946130.ChainUniqueCost) -- 8/19 eratta: chain unique
e3:SetTarget(c47946130.negtg)
e3:SetOperation(c47946130.negop)
c:RegisterEffect(e3)
......
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