Commit 3d2ab093 authored by nanahira's avatar nanahira Committed by mercury233

Update c48686504.lua (#994)

parent af7c673f
...@@ -12,14 +12,13 @@ function c48686504.initial_effect(c) ...@@ -12,14 +12,13 @@ function c48686504.initial_effect(c)
e1:SetOperation(c48686504.operation) e1:SetOperation(c48686504.operation)
c:RegisterEffect(e1) c:RegisterEffect(e1)
end end
function c48686504.costfilter(c,ft,tp) function c48686504.costfilter(c,tp)
return c:IsFaceup() and c:IsRace(RACE_PLANT) return c:IsFaceup() and c:IsRace(RACE_PLANT)
and (ft>0 or (c:IsControler(tp) and c:GetSequence()<5)) and Duel.GetMZoneCount(tp,c,tp)>0
end end
function c48686504.cost(e,tp,eg,ep,ev,re,r,rp,chk) function c48686504.cost(e,tp,eg,ep,ev,re,r,rp,chk)
local ft=Duel.GetLocationCount(tp,LOCATION_MZONE) if chk==0 then return Duel.CheckReleaseGroup(tp,c48686504.costfilter,1,nil,tp) end
if chk==0 then return ft>-1 and Duel.CheckReleaseGroup(tp,c48686504.costfilter,1,nil,ft,tp) end local g=Duel.SelectReleaseGroup(tp,c48686504.costfilter,1,1,nil,tp)
local g=Duel.SelectReleaseGroup(tp,c48686504.costfilter,1,1,nil,ft,tp)
Duel.Release(g,REASON_COST) Duel.Release(g,REASON_COST)
end end
function c48686504.filter(c,e,tp) function c48686504.filter(c,e,tp)
......
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