diff --git a/res/cardsfolder/dragon_fodder.txt b/res/cardsfolder/dragon_fodder.txt index 81724d3894b..14967176d51 100644 --- a/res/cardsfolder/dragon_fodder.txt +++ b/res/cardsfolder/dragon_fodder.txt @@ -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 diff --git a/res/cardsfolder/howl_of_the_night_pack.txt b/res/cardsfolder/howl_of_the_night_pack.txt index 7a51d4a9bb7..451fff76c91 100644 --- a/res/cardsfolder/howl_of_the_night_pack.txt +++ b/res/cardsfolder/howl_of_the_night_pack.txt @@ -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 diff --git a/src/forge/CardFactory_Sorceries.java b/src/forge/CardFactory_Sorceries.java index 9517c98147d..e09cb22b614 100644 --- a/src/forge/CardFactory_Sorceries.java +++ b/src/forge/CardFactory_Sorceries.java @@ -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 ************************** + */