Commit 7c1f553a authored by mercury233's avatar mercury233

fix

parent aeba5971
...@@ -16,10 +16,10 @@ function c100411046.initial_effect(c) ...@@ -16,10 +16,10 @@ function c100411046.initial_effect(c)
local e2=e1:Clone() local e2=e1:Clone()
e2:SetCode(EVENT_SPSUMMON_SUCCESS) e2:SetCode(EVENT_SPSUMMON_SUCCESS)
c:RegisterEffect(e2) c:RegisterEffect(e2)
--special suumon --special summon
local e3=Effect.CreateEffect(c) local e3=Effect.CreateEffect(c)
e3:SetDescription(aux.Stringid(100411046,1)) e3:SetDescription(aux.Stringid(100411046,1))
e3:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e3:SetCategory(CATEGORY_SPECIAL_SUMMON)
e3:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) e3:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O)
e3:SetProperty(EFFECT_FLAG_DELAY+EFFECT_FLAG_CARD_TARGET) e3:SetProperty(EFFECT_FLAG_DELAY+EFFECT_FLAG_CARD_TARGET)
e3:SetCode(EVENT_TO_GRAVE) e3:SetCode(EVENT_TO_GRAVE)
......
...@@ -59,7 +59,7 @@ function c100411048.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -59,7 +59,7 @@ function c100411048.activate(e,tp,eg,ep,ev,re,r,rp)
local mg1=Duel.GetFusionMaterial(tp):Filter(c100411048.filter1,nil,e) local mg1=Duel.GetFusionMaterial(tp):Filter(c100411048.filter1,nil,e)
local exmat=false local exmat=false
if Duel.IsExistingMatchingCard(c100411048.cfilter,tp,0,LOCATION_MZONE,1,nil) then if Duel.IsExistingMatchingCard(c100411048.cfilter,tp,0,LOCATION_MZONE,1,nil) then
local mg2=Duel.GetMatchingGroup(c100411048.filter0,tp,LOCATION_DECK,0,nil) local mg2=Duel.GetMatchingGroup(c100411048.filter0,tp,LOCATION_DECK+LOCATION_EXTRA,0,nil)
if mg2:GetCount()>0 then if mg2:GetCount()>0 then
mg1:Merge(mg2) mg1:Merge(mg2)
exmat=true exmat=true
......
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