1) converted Centaur Glade to keyword

2) converted Goblin Trenches to keyword
3) minor improvement to Hatching Plans
This commit is contained in:
jendave
2011-08-06 08:30:03 +00:00
parent 4333d0f290
commit 78e4aaf5e3
3 changed files with 9 additions and 7 deletions

View File

@@ -2,6 +2,7 @@ Name:Centaur Glade
ManaCost:3 G G ManaCost:3 G G
Types:Enchantment Types:Enchantment
Text:no text 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:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/centaur_glade.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/centaur_glade.jpg
End End

View File

@@ -2,6 +2,7 @@ Name:Goblin Trenches
ManaCost:1 R W ManaCost:1 R W
Types:Enchantment Types:Enchantment
Text:no text 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:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/goblin_trenches.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/goblin_trenches.jpg
End End

View File

@@ -6191,7 +6191,7 @@ public class CardFactory implements NewConstants {
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/ */
/* converted to keyword
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Centaur Glade")) { else if(cardName.equals("Centaur Glade")) {
final SpellAbility ability = new Ability(card, "2 G G") { 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."); ability.setStackDescription("Centaur Glade - Put a 3/3 token into play.");
card.addSpellAbility(ability); card.addSpellAbility(ability);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Oblivion Ring")) { else if(cardName.equals("Oblivion Ring")) {
@@ -7038,7 +7038,7 @@ public class CardFactory implements NewConstants {
}//*************** END ************ END ************************** }//*************** END ************ END **************************
/*
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Goblin Trenches")) { else if(cardName.equals("Goblin Trenches")) {
final String player = card.getController(); final String player = card.getController();
@@ -7139,7 +7139,7 @@ public class CardFactory implements NewConstants {
ability.setBeforePayMana(runtime); ability.setBeforePayMana(runtime);
}//*************** END ************ END ************************** }//*************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Hatching Plans")) { else if(cardName.equals("Hatching Plans")) {
@@ -7147,9 +7147,9 @@ public class CardFactory implements NewConstants {
final Ability ability = new Ability(card, "0") { final Ability ability = new Ability(card, "0") {
@Override @Override
public void resolve() { public void resolve() {
AllZone.GameAction.drawCard(card.getController()); AllZone.GameAction.drawCards(card.getController(), 3);
AllZone.GameAction.drawCard(card.getController()); //AllZone.GameAction.drawCard(card.getController());
AllZone.GameAction.drawCard(card.getController()); //AllZone.GameAction.drawCard(card.getController());
} }
}; };