diff --git a/res/cardsfolder/hunted_dragon.txt b/res/cardsfolder/hunted_dragon.txt index 23bf8e299f0..d6ab1acef70 100644 --- a/res/cardsfolder/hunted_dragon.txt +++ b/res/cardsfolder/hunted_dragon.txt @@ -5,6 +5,7 @@ Text:When Hunted Dragon comes into play, put three 2/2 white Knight creature tok PT:6/6 K:Flying K:Haste +K:etbMakeToken<>3<>Knight<>W 2 2 Knight<>Opponent<>W<>Creature;Knight<>2<>2<>First Strike<>put three 2/2 white Knight creature tokens with first strike into play under target opponent's control. SVar:Rarity:Rare SVar:Picture:http://www.wizards.com/global/images/magic/general/hunted_dragon.jpg End diff --git a/res/cardsfolder/hunted_horror.txt b/res/cardsfolder/hunted_horror.txt index f1a632b9a06..f816170afc4 100644 --- a/res/cardsfolder/hunted_horror.txt +++ b/res/cardsfolder/hunted_horror.txt @@ -4,6 +4,7 @@ Types:Creature Horror Text:When Hunted Horror enters the battlefield, put two 3/3 green Centaur creature tokens with protection from black onto the battlefield under target opponent's control. PT:7/7 K:Trample +K:etbMakeToken<>2<>Centaur<>G 3 3 Centaur<>Opponent<>G<>Creature;Centaur<>3<>3<>Protection from black<>put two 3/3 green Centaur creature tokens with protection from black onto the battlefield under target opponent's control. SVar:Rarity:Rare SVar:Picture:http://www.wizards.com/global/images/magic/general/hunted_horror.jpg End diff --git a/res/cardsfolder/hunted_lammasu.txt b/res/cardsfolder/hunted_lammasu.txt index 8e25d595129..2476d7741ef 100644 --- a/res/cardsfolder/hunted_lammasu.txt +++ b/res/cardsfolder/hunted_lammasu.txt @@ -4,6 +4,7 @@ Types:Creature Lammasu Text:When Hunted Lammasu enters the battlefield, put a 4/4 black Horror creature token onto the battlefield under target opponent's control. PT:5/5 K:Flying +K:etbMakeToken<>1<>Horror<>B 4 4 Horror<>Opponent<>B<>Creature;Horror<>4<>4<>None<>put a 4/4 black Horror creature token onto the battlefield under target opponent's control. SVar:Rarity:Rare SVar:Picture:http://www.wizards.com/global/images/magic/general/hunted_lammasu.jpg End diff --git a/res/cardsfolder/hunted_phantasm.txt b/res/cardsfolder/hunted_phantasm.txt index 28cb057a961..425542cb314 100644 --- a/res/cardsfolder/hunted_phantasm.txt +++ b/res/cardsfolder/hunted_phantasm.txt @@ -4,6 +4,7 @@ Types:Creature Spirit Text:When Hunted Phantasm enters the battlefield, put five 1/1 red Goblin creature tokens onto the battlefield under target opponent's control. PT:4/6 K:Unblockable +K:etbMakeToken<>5<>Goblin<>R 1 1 Goblin<>COpponent<>R<>Creature;Goblin<>1<>1<>None<>put five 1/1 red Goblin creature tokens onto the battlefield under target opponent's control. SVar:Rarity:Rare SVar:Picture:http://www.wizards.com/global/images/magic/general/hunted_phantasm.jpg End diff --git a/res/cardsfolder/hunted_troll.txt b/res/cardsfolder/hunted_troll.txt index b8c84e71e9d..42d81ce8f66 100644 --- a/res/cardsfolder/hunted_troll.txt +++ b/res/cardsfolder/hunted_troll.txt @@ -3,6 +3,8 @@ ManaCost:2 G G Types:Creature Troll Warrior Text:When Hunted Troll comes into play, put four 1/1 blue Faerie creature tokens with flying into play under target opponent's control. PT:8/4 +K:RegenerateMe:G +K:etbMakeToken<>4<>Faerie<>U 1 1 Faerie<>Opponent<>U<>Creature;Faerie<>1<>1<>Flying<>put four 1/1 blue Faerie creature tokens with flying into play under target opponent's control. SVar:Rarity:Rare SVar:Picture:http://resources.wizards.com/magic/cards/rav/en-us/card89079.jpg End diff --git a/src/forge/CardFactory_Creatures.java b/src/forge/CardFactory_Creatures.java index 8ede8c0d6a5..c6c75765e53 100644 --- a/src/forge/CardFactory_Creatures.java +++ b/src/forge/CardFactory_Creatures.java @@ -1156,7 +1156,7 @@ public class CardFactory_Creatures { card.addSpellAbility(ability); }//*************** END ************ END ************************** - + /* //*************** START *********** START ************************** else if(cardName.equals("Hunted Phantasm")) { final SpellAbility ability = new Ability(card, "0") { @@ -1180,8 +1180,8 @@ public class CardFactory_Creatures { ability.setStackDescription("Hunted Phantasm - Opponent puts five 1/1 Goblin Creature tokens onto the battlefield."); card.addComesIntoPlayCommand(intoPlay); }//*************** END ************ END ************************** - - + */ + /* //*************** START *********** START ************************** else if(cardName.equals("Hunted Horror")) { final SpellAbility ability = new Ability(card, "0") { @@ -1204,8 +1204,8 @@ public class CardFactory_Creatures { ability.setStackDescription("Hunted Horror - Opponent puts two 3/3 Centaur tokens with Protection from Black onto the battlefield."); card.addComesIntoPlayCommand(intoPlay); }//*************** END ************ END ************************** - - + */ + /* //*************** START *********** START ************************** else if(cardName.equals("Hunted Lammasu")) { final SpellAbility ability = new Ability(card, "0") { @@ -1229,8 +1229,8 @@ public class CardFactory_Creatures { ability.setStackDescription("Hunted Lammasu - Opponent puts a 4/4 black Horror creature token onto the battlefield."); card.addComesIntoPlayCommand(intoPlay); }//*************** END ************ END ************************** - - + */ + /* //*************** START *********** START ************************** else if(cardName.equals("Hunted Dragon")) { final SpellAbility ability = new Ability(card, "0") { @@ -1253,8 +1253,8 @@ public class CardFactory_Creatures { ability.setStackDescription("Hunted Dragon - Opponent puts 3 Knight tokens with First Strike into play"); card.addComesIntoPlayCommand(intoPlay); }//*************** END ************ END ************************** - - + */ + /* //*************** START *********** START ************************** else if(cardName.equals("Hunted Troll")) { final SpellAbility ability = new Ability(card, "0") { @@ -1304,6 +1304,7 @@ public class CardFactory_Creatures { a1.setBeforePayMana(new Input_PayManaCost(a1)); }//*************** END ************ END ************************** + */ //*************** START *********** START **************************