Skip to content

Commit efc9887

Browse files
authored
Update "Gouki Sheik Ogre"
Should only be able to Fusion Summon "Gouki" Fusion Monsters
1 parent 5910ca1 commit efc9887

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

official/c7382007.lua

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--剛鬼シーク・オーガ
22
--Gouki Sheik Ogre
3-
--scripted by Naim
3+
--Scripted by Naim
44
local s,id=GetID()
55
function s.initial_effect(c)
66
c:EnableReviveLimit()
@@ -20,15 +20,14 @@ function s.initial_effect(c)
2020
e1:SetOperation(s.spop)
2121
c:RegisterEffect(e1)
2222
--Fusion Summon 1 "Gouki" Fusion Monster from your Extra Deck, using monsters from your hand or field
23-
local params={function(c) return c:IsSetCard(SET_GOUKI) end}
2423
local e2=Effect.CreateEffect(c)
2524
e2:SetDescription(aux.Stringid(id,1))
2625
e2:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_FUSION_SUMMON)
2726
e2:SetType(EFFECT_TYPE_IGNITION)
2827
e2:SetRange(LOCATION_MZONE)
2928
e2:SetCountLimit(1,{id,1})
30-
e2:SetTarget(Fusion.SummonEffTG(params))
31-
e2:SetOperation(Fusion.SummonEffOP(params))
29+
e2:SetTarget(Fusion.SummonEffTG(aux.FilterBoolFunction(Card.IsSetCard,SET_GOUKI)))
30+
e2:SetOperation(Fusion.SummonEffOP(aux.FilterBoolFunction(Card.IsSetCard,SET_GOUKI)))
3231
c:RegisterEffect(e2)
3332
end
3433
s.listed_series={SET_GOUKI}
@@ -71,4 +70,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
7170
sc:RegisterEffect(e1,true)
7271
end
7372
end
74-
end
73+
end

0 commit comments

Comments
 (0)