diff --git a/res/cardsfolder/centaur_glade.txt b/res/cardsfolder/centaur_glade.txt index a970712b1d2..0f9d804b0ff 100644 --- a/res/cardsfolder/centaur_glade.txt +++ b/res/cardsfolder/centaur_glade.txt @@ -2,6 +2,7 @@ Name:Centaur Glade ManaCost:3 G G Types:Enchantment Text:no text +K:abMakeToken 2 G G<>1<>Centaur<>G 3 3 Centaur<>Controller<>G<>Creature;Centaur<>3<>3<>None<>Put a 3/3 green Centaur creature token onto the battlefield. SVar:Rarity:Uncommon SVar:Picture:http://www.wizards.com/global/images/magic/general/centaur_glade.jpg End diff --git a/res/cardsfolder/goblin_trenches.txt b/res/cardsfolder/goblin_trenches.txt index 897cdb506fb..64bb2737ee3 100644 --- a/res/cardsfolder/goblin_trenches.txt +++ b/res/cardsfolder/goblin_trenches.txt @@ -2,6 +2,7 @@ Name:Goblin Trenches ManaCost:1 R W Types:Enchantment Text:no text +K:abMakeToken 2 Sac<1/Land><>2<>Goblin Soldier<>RW 1 1 Goblin Soldier<>Controller<>RW<>Creature;Goblin;Soldier<>1<>1<>None<>Put two 1/1 red and white Goblin Soldier creature tokens onto the battlefield. SVar:Rarity:Rare SVar:Picture:http://www.wizards.com/global/images/magic/general/goblin_trenches.jpg End diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index 9f41d6f529a..6764f3336b8 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -6191,7 +6191,7 @@ public class CardFactory implements NewConstants { }//*************** END ************ END ************************** */ - + /* converted to keyword //*************** START *********** START ************************** else if(cardName.equals("Centaur Glade")) { final SpellAbility ability = new Ability(card, "2 G G") { @@ -6205,7 +6205,7 @@ public class CardFactory implements NewConstants { ability.setStackDescription("Centaur Glade - Put a 3/3 token into play."); card.addSpellAbility(ability); }//*************** END ************ END ************************** - + */ //*************** START *********** START ************************** else if(cardName.equals("Oblivion Ring")) { @@ -7038,7 +7038,7 @@ public class CardFactory implements NewConstants { }//*************** END ************ END ************************** - + /* //*************** START *********** START ************************** else if(cardName.equals("Goblin Trenches")) { final String player = card.getController(); @@ -7139,7 +7139,7 @@ public class CardFactory implements NewConstants { ability.setBeforePayMana(runtime); }//*************** END ************ END ************************** - + */ //*************** START *********** START ************************** else if(cardName.equals("Hatching Plans")) { @@ -7147,9 +7147,9 @@ public class CardFactory implements NewConstants { final Ability ability = new Ability(card, "0") { @Override public void resolve() { - AllZone.GameAction.drawCard(card.getController()); - AllZone.GameAction.drawCard(card.getController()); - AllZone.GameAction.drawCard(card.getController()); + AllZone.GameAction.drawCards(card.getController(), 3); + //AllZone.GameAction.drawCard(card.getController()); + //AllZone.GameAction.drawCard(card.getController()); } };