mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
migrate Dragon Fodder and Howl of the Night Pack to spMakeToken keyword.
This commit is contained in:
@@ -2,6 +2,7 @@ Name:Dragon Fodder
|
|||||||
ManaCost:1 R
|
ManaCost:1 R
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
Text:Put two 1/1 red Goblin creature tokens onto the battlefield.
|
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:Rarity:Common
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/dragon_fodder.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/dragon_fodder.jpg
|
||||||
End
|
End
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ Name:Howl of the Night Pack
|
|||||||
ManaCost:6 G
|
ManaCost:6 G
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
Text:Put a 2/2 green Wolf creature token onto the battlefield for each Forest you control.
|
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:Rarity:Uncommon
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/howl_of_the_night_pack.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/howl_of_the_night_pack.jpg
|
||||||
End
|
End
|
||||||
|
|||||||
@@ -1103,7 +1103,8 @@ public class CardFactory_Sorceries {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
/* Converted to spMakeToken keyword
|
||||||
|
/*************** START *********** START **************************
|
||||||
else if(cardName.equals("Dragon Fodder")) {
|
else if(cardName.equals("Dragon Fodder")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
private static final long serialVersionUID = -6704097906643840324L;
|
private static final long serialVersionUID = -6704097906643840324L;
|
||||||
@@ -1117,8 +1118,8 @@ public class CardFactory_Sorceries {
|
|||||||
}//resolve()
|
}//resolve()
|
||||||
};
|
};
|
||||||
card.clearSpellAbility();
|
card.clearSpellAbility();
|
||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}*/ //*************** END ************ END **************************
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Empty the Warrens")) {
|
else if(cardName.equals("Empty the Warrens")) {
|
||||||
@@ -6034,7 +6035,7 @@ public class CardFactory_Sorceries {
|
|||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
/* Converted to spMakeToken keyword
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if (cardName.equals("Howl of the Night Pack"))
|
else if (cardName.equals("Howl of the Night Pack"))
|
||||||
{
|
{
|
||||||
@@ -6061,6 +6062,7 @@ public class CardFactory_Sorceries {
|
|||||||
card.clearSpellAbility();
|
card.clearSpellAbility();
|
||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user