We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 160309a commit db7a0d7Copy full SHA for db7a0d7
unofficial/c511000672.lua
@@ -2,8 +2,9 @@
2
--Fire Whip
3
local s,id=GetID()
4
function s.initial_effect(c)
5
- --Activate
+ --Special Summon all monsters that were destroyed this turn to your field
6
local e1=Effect.CreateEffect(c)
7
+ e1:SetDescription(aux.Stringid(id,0))
8
e1:SetCategory(CATEGORY_SPECIAL_SUMMON)
9
e1:SetType(EFFECT_TYPE_ACTIVATE)
10
e1:SetCode(EVENT_FREE_CHAIN)
@@ -13,7 +14,7 @@ function s.initial_effect(c)
13
14
c:RegisterEffect(e1)
15
end
16
local LOCATION_HDGRE=LOCATION_HAND|LOCATION_DECK|LOCATION_GRAVE|LOCATION_REMOVED|LOCATION_EXTRA
-function s.confilter()
17
+function s.confilter(c)
18
return c:IsFaceup() and c:IsAttribute(ATTRIBUTE_FIRE) and c:IsRace(RACE_FIEND)
19
20
function s.spfilter(c,e,tp,tid)
0 commit comments