Commit 1dc69174 authored by TanakaKotoha's avatar TanakaKotoha

fix

parent 55ed75a4
...@@ -8,7 +8,7 @@ function c21520190.initial_effect(c) ...@@ -8,7 +8,7 @@ function c21520190.initial_effect(c)
e1:SetRange(LOCATION_HAND+LOCATION_GRAVE) e1:SetRange(LOCATION_HAND+LOCATION_GRAVE)
e1:SetCountLimit(7,21520190) e1:SetCountLimit(7,21520190)
e1:SetCondition(c21520190.spcon) e1:SetCondition(c21520190.spcon)
e1:SetOperation(c21520190.spop) -- e1:SetOperation(c21520190.spop)
c:RegisterEffect(e1) c:RegisterEffect(e1)
--atk & def --atk & def
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
......
...@@ -48,7 +48,7 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -48,7 +48,7 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
for i=1,2 do for i=1,2 do
local token=Duel.CreateToken(tp,m+1) local token=Duel.CreateToken(tp,m+1)
Duel.SpecialSummonStep(token,0,tp,tp,false,false,POS_FACEUP) Duel.SpecialSummonStep(token,0,tp,tp,false,false,POS_FACEUP)
token:AddCounter(0x1015,1) token:AddCounter(0x1015,2)
end end
Duel.SpecialSummonComplete() Duel.SpecialSummonComplete()
end end
...@@ -60,7 +60,7 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -60,7 +60,7 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
for i=1,ct1 do for i=1,ct1 do
local token=Duel.CreateToken(tp,m+1) local token=Duel.CreateToken(tp,m+1)
Duel.SpecialSummonStep(token,0,tp,1-tp,false,false,POS_FACEUP) Duel.SpecialSummonStep(token,0,tp,1-tp,false,false,POS_FACEUP)
token:AddCounter(0x1015,1) token:AddCounter(0x1015,2)
end end
Duel.SpecialSummonComplete() Duel.SpecialSummonComplete()
end end
......
...@@ -12,23 +12,23 @@ function cm.initial_effect(c) ...@@ -12,23 +12,23 @@ function cm.initial_effect(c)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e1:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetType(EFFECT_TYPE_IGNITION) e1:SetType(EFFECT_TYPE_IGNITION)
e1:SetRange(LOCATION_MZONE) e1:SetRange(LOCATION_MZONE)
e1:SetCountLimit(1,m) e1:SetCountLimit(1,m)
e1:SetTarget(cm.target) e1:SetTarget(cm.target)
e1:SetOperation(cm.operation) e1:SetOperation(cm.operation)
c:RegisterEffect(e1) c:RegisterEffect(e1)
--negate --negate
local e1=Effect.CreateEffect(c) local e2=Effect.CreateEffect(c)
e1:SetDescription(aux.Stringid(m,1)) e2:SetDescription(aux.Stringid(m,1))
e1:SetCategory(CATEGORY_DISABLE) e2:SetCategory(CATEGORY_DISABLE)
e1:SetType(EFFECT_TYPE_QUICK_O) e2:SetType(EFFECT_TYPE_QUICK_O)
e1:SetCode(EVENT_FREE_CHAIN) e2:SetCode(EVENT_FREE_CHAIN)
e1:SetProperty(EFFECT_FLAG_CARD_TARGET) e2:SetProperty(EFFECT_FLAG_CARD_TARGET)
e1:SetRange(LOCATION_MZONE) e2:SetRange(LOCATION_MZONE)
e1:SetHintTiming(0,TIMINGS_CHECK_MONSTER) e2:SetHintTiming(0,TIMINGS_CHECK_MONSTER)
e1:SetCountLimit(1,82216048) e2:SetCountLimit(1,82216048)
e1:SetTarget(cm.target2) e2:SetTarget(cm.target2)
e1:SetOperation(cm.operation2) e2:SetOperation(cm.operation2)
c:RegisterEffect(e1) c:RegisterEffect(e2)
end end
function cm.synfilter(c) function cm.synfilter(c)
return c:IsSetCard(0x129d) return c:IsSetCard(0x129d)
......
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