mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
convert Wolfbriar Elemental to keyword (xCount now accepts Count$TimesKicked)
This commit is contained in:
@@ -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.
|
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
|
PT:4/4
|
||||||
K:Multikicker G
|
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:Rarity:Rare
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/wolfbriar_elemental.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/wolfbriar_elemental.jpg
|
||||||
End
|
End
|
||||||
|
|||||||
@@ -3602,6 +3602,9 @@ public class CardFactoryUtil {
|
|||||||
// Count$CardCounters.<counterType>
|
// Count$CardCounters.<counterType>
|
||||||
if (sq[0].contains("CardCounters"))
|
if (sq[0].contains("CardCounters"))
|
||||||
return doXMath(c.getCounters(Counters.getType(sq[1])), m);
|
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
|
//Count$IfMainPhase.<numMain>.<numNotMain> // 7/10
|
||||||
if (sq[0].contains("IfMainPhase"))
|
if (sq[0].contains("IfMainPhase"))
|
||||||
|
|||||||
@@ -17309,7 +17309,7 @@ public class CardFactory_Creatures {
|
|||||||
card.addSpellAbility(ma);
|
card.addSpellAbility(ma);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
/*
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Wolfbriar Elemental"))
|
else if(cardName.equals("Wolfbriar Elemental"))
|
||||||
{
|
{
|
||||||
@@ -17338,7 +17338,7 @@ public class CardFactory_Creatures {
|
|||||||
};
|
};
|
||||||
card.addComesIntoPlayCommand(comesIntoPlay);
|
card.addComesIntoPlayCommand(comesIntoPlay);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if (cardName.equals("Lightkeeper of Emeria"))
|
else if (cardName.equals("Lightkeeper of Emeria"))
|
||||||
|
|||||||
Reference in New Issue
Block a user