Commit 5f4642e0 authored by wind2009's avatar wind2009

Fix 幻奏の歌姫ルフラン&幻奏の歌姫クープレ

移除CATEGORY_SPECIAL_SUMMON
parent 664b325c
...@@ -26,7 +26,6 @@ function c101204009.initial_effect(c) ...@@ -26,7 +26,6 @@ function c101204009.initial_effect(c)
c:RegisterEffect(e2) c:RegisterEffect(e2)
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(101204009,2)) e3:SetDescription(aux.Stringid(101204009,2))
e3:SetCategory(CATEGORY_SPECIAL_SUMMON)
e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e3:SetCode(EVENT_SPSUMMON_SUCCESS) e3:SetCode(EVENT_SPSUMMON_SUCCESS)
e3:SetProperty(EFFECT_FLAG_DELAY) e3:SetProperty(EFFECT_FLAG_DELAY)
...@@ -83,7 +82,7 @@ function c101204009.thop(e,tp,eg,ep,ev,re,r,rp) ...@@ -83,7 +82,7 @@ function c101204009.thop(e,tp,eg,ep,ev,re,r,rp)
end end
end end
function c101204009.cfilter(c,tp) function c101204009.cfilter(c,tp)
return c:IsFaceup() and c:IsType(TYPE_FUSION) and c:IsSetCard(0x9b) and c:IsFaceup() and c:IsControler(tp) return c:IsFaceup() and c:IsType(TYPE_FUSION) and c:IsSetCard(0x9b) and c:IsControler(tp)
end end
function c101204009.pencon(e,tp,eg,ep,ev,re,r,rp) function c101204009.pencon(e,tp,eg,ep,ev,re,r,rp)
return e:GetHandler():IsFaceup() and eg:IsExists(c101204009.cfilter,1,nil,tp) return e:GetHandler():IsFaceup() and eg:IsExists(c101204009.cfilter,1,nil,tp)
......
...@@ -33,7 +33,6 @@ function c101204010.initial_effect(c) ...@@ -33,7 +33,6 @@ function c101204010.initial_effect(c)
c:RegisterEffect(e2) c:RegisterEffect(e2)
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(101204010,2)) e3:SetDescription(aux.Stringid(101204010,2))
e3:SetCategory(CATEGORY_SPECIAL_SUMMON)
e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_TRIGGER_O)
e3:SetCode(EVENT_SPSUMMON_SUCCESS) e3:SetCode(EVENT_SPSUMMON_SUCCESS)
e3:SetProperty(EFFECT_FLAG_DELAY) e3:SetProperty(EFFECT_FLAG_DELAY)
...@@ -91,7 +90,7 @@ function c101204010.spop(e,tp,eg,ep,ev,re,r,rp) ...@@ -91,7 +90,7 @@ function c101204010.spop(e,tp,eg,ep,ev,re,r,rp)
end end
end end
function c101204010.cfilter(c,tp) function c101204010.cfilter(c,tp)
return c:IsFaceup() and c:IsType(TYPE_FUSION) and c:IsSetCard(0x9b) and c:IsFaceup() and c:IsControler(tp) return c:IsFaceup() and c:IsType(TYPE_FUSION) and c:IsSetCard(0x9b) and c:IsControler(tp)
end end
function c101204010.pencon(e,tp,eg,ep,ev,re,r,rp) function c101204010.pencon(e,tp,eg,ep,ev,re,r,rp)
return e:GetHandler():IsFaceup() and eg:IsExists(c101204010.cfilter,1,nil,tp) return e:GetHandler():IsFaceup() and eg:IsExists(c101204010.cfilter,1,nil,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