convert Wolfbriar Elemental to keyword (xCount now accepts Count$TimesKicked)

This commit is contained in:
jendave
2011-08-06 08:43:07 +00:00
parent fbd692e1fe
commit e1f43b0349
3 changed files with 7 additions and 2 deletions

View File

@@ -4,6 +4,8 @@ Types:Creature Elemental
Text:When Wolfbriar Elemental enters the battlefield, put a 2/2 green Wolf creature token onto the battlefield for each time it was kicked.
PT:4/4
K:Multikicker G
K:etbMakeToken<>X<>Wolf<>G 2 2 Wolf<>Controller<>G<>Creature;Wolf<>2<>2<>None<>put a 2/2 green Wolf creature token onto the battlefield for each time it was kicked.
SVar:X:Count$TimesKicked
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/wolfbriar_elemental.jpg
End

View File

@@ -3602,6 +3602,9 @@ public class CardFactoryUtil {
// Count$CardCounters.<counterType>
if (sq[0].contains("CardCounters"))
return doXMath(c.getCounters(Counters.getType(sq[1])), m);
// Count$TimesKicked
if(sq[0].contains("TimesKicked"))
return c.getMultiKickerMagnitude();
//Count$IfMainPhase.<numMain>.<numNotMain> // 7/10
if (sq[0].contains("IfMainPhase"))

View File

@@ -17309,7 +17309,7 @@ public class CardFactory_Creatures {
card.addSpellAbility(ma);
}//*************** END ************ END **************************
/*
//*************** START *********** START **************************
else if(cardName.equals("Wolfbriar Elemental"))
{
@@ -17338,7 +17338,7 @@ public class CardFactory_Creatures {
};
card.addComesIntoPlayCommand(comesIntoPlay);
}//*************** END ************ END **************************
*/
//*************** START *********** START **************************
else if (cardName.equals("Lightkeeper of Emeria"))