migrate Dragon Fodder and Howl of the Night Pack to spMakeToken keyword.

This commit is contained in:
jendave
2011-08-06 08:16:35 +00:00
parent 988acfaa38
commit 314af3ec90
3 changed files with 9 additions and 4 deletions

View File

@@ -2,6 +2,7 @@ Name:Dragon Fodder
ManaCost:1 R
Types:Sorcery
Text:Put two 1/1 red Goblin creature tokens onto the battlefield.
K:spMakeToken<>2<>Goblin<>R 1 1 Goblin<>Controller<>R<>Creature;Goblin<>1<>1<>None
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/dragon_fodder.jpg
End

View File

@@ -2,6 +2,8 @@ Name:Howl of the Night Pack
ManaCost:6 G
Types:Sorcery
Text:Put a 2/2 green Wolf creature token onto the battlefield for each Forest you control.
K:spMakeToken<>X<>Wolf<>G 2 2 Wolf<>Controller<>G<>Creature;Wolf<>2<>2<>None
SVar:X:Count$TypeYouCtrl.Forest
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/howl_of_the_night_pack.jpg
End

View File

@@ -1103,7 +1103,8 @@ public class CardFactory_Sorceries {
//*************** START *********** START **************************
/* Converted to spMakeToken keyword
/*************** START *********** START **************************
else if(cardName.equals("Dragon Fodder")) {
SpellAbility spell = new Spell(card) {
private static final long serialVersionUID = -6704097906643840324L;
@@ -1117,8 +1118,8 @@ public class CardFactory_Sorceries {
}//resolve()
};
card.clearSpellAbility();
card.addSpellAbility(spell);
}//*************** END ************ END **************************
card.addSpellAbility(spell);
}*/ //*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Empty the Warrens")) {
@@ -6034,7 +6035,7 @@ public class CardFactory_Sorceries {
card.addSpellAbility(spell);
}//*************** END ************ END **************************
/* Converted to spMakeToken keyword
//*************** START *********** START **************************
else if (cardName.equals("Howl of the Night Pack"))
{
@@ -6061,6 +6062,7 @@ public class CardFactory_Sorceries {
card.clearSpellAbility();
card.addSpellAbility(spell);
}//*************** END ************ END **************************
*/