Commit e7f2dad4 authored by POLYMER's avatar POLYMER

fix

parent 10f3aa6d
...@@ -167,7 +167,7 @@ function cm.costop2(e,tp,eg,ep,ev,re,r,rp) ...@@ -167,7 +167,7 @@ function cm.costop2(e,tp,eg,ep,ev,re,r,rp)
Duel.SpecialSummonStep(tc,0,tp,tp,false,false,POS_FACEUP) Duel.SpecialSummonStep(tc,0,tp,tp,false,false,POS_FACEUP)
local sc=e:GetHandler() local sc=e:GetHandler()
local code=sc:GetOriginalCode() local code=sc:GetOriginalCode()
if code>=11451881 and code<=11451883 and tc:IsType(TYPE_NORMAL) then if code>=11451881 and code<=11451883 and tc:IsSummonableCard() then
local e1=Effect.CreateEffect(sc) local e1=Effect.CreateEffect(sc)
e1:SetType(EFFECT_TYPE_SINGLE) e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_DUAL_SUMMONABLE) e1:SetCode(EFFECT_DUAL_SUMMONABLE)
...@@ -263,7 +263,7 @@ function cm.costop2(e,tp,eg,ep,ev,re,r,rp) ...@@ -263,7 +263,7 @@ function cm.costop2(e,tp,eg,ep,ev,re,r,rp)
e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE) e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE)
e1:SetCode(EVENT_CHAIN_SOLVED) e1:SetCode(EVENT_CHAIN_SOLVED)
e1:SetCountLimit(1) e1:SetCountLimit(1)
e1:SetLabel(ev+1) e1:SetLabel(Duel.GetCurrentChain()+1)
e1:SetCondition(function(e,tp,eg,ep,ev,re,r,rp) return ev==e:GetLabel() end) e1:SetCondition(function(e,tp,eg,ep,ev,re,r,rp) return ev==e:GetLabel() end)
e1:SetOperation(function(e,tp,eg,ep,ev,re,r,rp) re:SetOperation(op0) end) e1:SetOperation(function(e,tp,eg,ep,ev,re,r,rp) re:SetOperation(op0) end)
e1:SetReset(RESET_CHAIN) e1:SetReset(RESET_CHAIN)
......
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