Skip to content

Commit d245ae3

Browse files
committed
fixed Harpie Lady Sisters Triangle Beauty
1 parent 1811595 commit d245ae3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

rush/c160322001.lua

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,13 @@ function s.initial_effect(c)
3636
end
3737
s.named_material={160208002}
3838
function s.matfilter(c,scard,sumtype,tp)
39-
return c:IsAttribute(ATTRIBUTE_WIND,scard,sumtype,tp) and c:IsRace(RACE_WINGEDBEAST,scard,sumtype,tp)
39+
return c:IsAttribute(ATTRIBUTE_WIND,scard,sumtype,tp) and c:IsRace(RACE_WINGEDBEAST,scard,sumtype,tp) and not c:IsMaximumModeSide()
40+
end
41+
function s.filter(c)
42+
return c:IsFaceup() and c:IsAbleToDeckOrExtraAsCost() and not c:IsHasEffect(EFFECT_CANNOT_BE_FUSION_MATERIAL)
4043
end
4144
function s.contactfil(tp)
42-
return Duel.GetMatchingGroup(aux.FaceupFilter(Card.IsAbleToDeckOrExtraAsCost),tp,LOCATION_ONFIELD,0,nil)
45+
return Duel.GetMatchingGroup(s.filter,tp,LOCATION_ONFIELD,0,nil)
4346
end
4447
function s.contactop(g,tp)
4548
Duel.SendtoDeck(g,nil,SEQ_DECKSHUFFLE,REASON_COST+REASON_MATERIAL)

0 commit comments

Comments
 (0)