Commit 133d13ca authored by TanakaKotoha's avatar TanakaKotoha

fbk

parent 17460f7d
...@@ -25,17 +25,18 @@ function c47530149.initial_effect(c) ...@@ -25,17 +25,18 @@ function c47530149.initial_effect(c)
c:RegisterEffect(e2) c:RegisterEffect(e2)
Duel.AddCustomActivityCounter(47530149,ACTIVITY_SPSUMMON,c47530149.counterfilter) Duel.AddCustomActivityCounter(47530149,ACTIVITY_SPSUMMON,c47530149.counterfilter)
--luncher --luncher
local e2=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e2:SetDescription(aux.Stringid(47530149,1)) e3:SetDescription(aux.Stringid(47530149,1))
e2:SetCategory(CATEGORY_DISABLE) e3:SetCategory(CATEGORY_DISABLE)
e2:SetType(EFFECT_TYPE_QUICK_O) e3:SetType(EFFECT_TYPE_QUICK_O)
e2:SetCode(EVENT_FREE_CHAIN) e3:SetCode(EVENT_FREE_CHAIN)
e2:SetRange(LOCATION_MZONE) e3:SetRange(LOCATION_MZONE)
e2:SetCondition(c47530149.discon) e3:SetCountLimit(1,47530149)
e2:SetCost(c47530149.discost) e3:SetCondition(c47530149.discon)
e2:SetTarget(c47530149.distg) e3:SetCost(c47530149.discost)
e2:SetOperation(c47530149.disop) e3:SetTarget(c47530149.distg)
c:RegisterEffect(e2) e3:SetOperation(c47530149.disop)
c:RegisterEffect(e3)
end end
function c47530149.counterfilter(c) function c47530149.counterfilter(c)
return c:IsRace(RACE_MACHINE) return c:IsRace(RACE_MACHINE)
......
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