Skip to content

Commit bc54297

Browse files
committed
fixed cards that gain ATK based on number of monsters on the field
Maximum Mode monsters should count as 1 monster
1 parent d86b2a0 commit bc54297

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rush/c160020016.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ function s.initial_effect(c)
1313
c:RegisterEffect(e1)
1414
end
1515
function s.val(e,c)
16-
return Duel.GetMatchingGroupCount(aux.FaceupFilter(Card.IsRace,RACE_INSECT),c:GetControler(),LOCATION_MZONE,LOCATION_MZONE,nil)*500
16+
return Duel.GetMatchingGroupCountRush(aux.FaceupFilter(Card.IsRace,RACE_INSECT),c:GetControler(),LOCATION_MZONE,LOCATION_MZONE,nil)*500
1717
end

rush/c160206007.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ function s.initial_effect(c)
2626
c:RegisterEffect(e3)
2727
end
2828
function s.val(e,c)
29-
return Duel.GetMatchingGroupCount(aux.FaceupFilter(Card.IsRace,RACE_DRAGON),c:GetControler(),0,LOCATION_MZONE,nil)*500
29+
return Duel.GetMatchingGroupCountRush(aux.FaceupFilter(Card.IsRace,RACE_DRAGON),c:GetControler(),0,LOCATION_MZONE,nil)*500
3030
end

0 commit comments

Comments
 (0)