Deadly Grub added. (I couldn't find token picture for it)

This commit is contained in:
jendave
2011-08-06 03:02:01 +00:00
parent 3d40c74eef
commit f72b02ddb3
3 changed files with 45 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ forest.jpg http://resources.wizards.com/magic/cards/unh/en-us/card73946.jpg
forest1.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=2748
forest2.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=587
forest3.jpg http://gatherer.wizards.com/handlers/image.ashx?type=card&multiverseid=586
deadly_grub.jpg http://www.wizards.com/global/images/magic/general/deadly_grub.jpg
promised_kannushi.jpg http://www.wizards.com/global/images/magic/general/promised_kannushi.jpg
body_of_jukai.jpg http://www.wizards.com/global/images/magic/general/body_of_jukai.jpg
crawling_filth.jpg http://www.wizards.com/global/images/magic/general/crawling_filth.jpg

View File

@@ -1,3 +1,10 @@
Deadly Grub
B
Creature Insect
When Deadly Grub is put into a graveyard from the battlefield, if it had no time counters on it, put a 6/1 green Insect creature token with shroud onto the battlefield. (It can<61>t be the target of spells or abilities.)
3/1
Vanishing:3
Thief of Hope
2 B
Creature Spirit

View File

@@ -16588,6 +16588,43 @@ public class CardFactory_Creatures {
card.addDestroyCommand(destroy);
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if (cardName.equals("Deadly Grub"))
{
final Command destroy = new Command()
{
private static final long serialVersionUID = -4352349741511065318L;
public void execute() {
if (card.getCounters(Counters.AGE) <= 0){
Card c = new Card();
c.setName("Insect");
c.setImageName("G 6 1 Insect");
c.setOwner(card.getController());
c.setController(card.getController());
c.setManaCost("G");
c.setToken(true);
c.addType("Creature");
c.addType("Insect");
c.setBaseAttack(6);
c.setBaseDefense(1);
c.addIntrinsicKeyword("Shroud");
PlayerZone play = AllZone.getZone(Constant.Zone.Play, card.getController());
play.add(c);}
}
};
card.addDestroyCommand(destroy);
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Boggart Harbinger"))
{