Added Roc Egg.

This commit is contained in:
jendave
2011-08-06 05:17:11 +00:00
parent 305eae1a6e
commit e6a4fcf569
3 changed files with 44 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
roc_egg.jpg http://www.wizards.com/global/images/magic/general/roc_egg.jpg
sleepers_robe.jpg http://www.wizards.com/global/images/magic/general/sleepers_robe.jpg sleepers_robe.jpg http://www.wizards.com/global/images/magic/general/sleepers_robe.jpg
ophidian_eye.jpg http://www.wizards.com/global/images/magic/general/ophidian_eye.jpg ophidian_eye.jpg http://www.wizards.com/global/images/magic/general/ophidian_eye.jpg
keen_sense.jpg http://www.wizards.com/global/images/magic/general/keen_sense.jpg keen_sense.jpg http://www.wizards.com/global/images/magic/general/keen_sense.jpg

View File

@@ -1,3 +1,10 @@
Roc Egg
2 W
Creature Bird
When Roc Egg is put into a graveyard from the battlefield, put a 3/3 white Bird creature token with flying onto the battlefield.
0/3
Defender
Sleeper's Robe Sleeper's Robe
U B U B
Enchantment Aura Enchantment Aura

View File

@@ -20377,6 +20377,42 @@ public class CardFactory_Creatures {
} }
//*************** END ************ END ************************** //*************** END ************ END **************************
//*************** START *********** START **************************
if (cardName.equals("Roc Egg")) {
final SpellAbility ability = new Ability(card, "0") {
@Override
public void resolve() {
CardFactoryUtil.makeToken("Bird", "W 3 3 Bird", card, "W", new String[] {"Creature", "Bird"},
3, 3, new String[] {"Flying"});
}
}; //ability
StringBuffer sb = new StringBuffer();
sb.append(cardName).append(" - Put a 3/3 white Bird creature token with flying onto the battlefield.");
ability.setStackDescription(sb.toString());
final Command createBird = new Command() {
private static final long serialVersionUID = 5899334489679688989L;
public void execute() {
AllZone.Stack.add(ability);
}
};
final Command destroy = new Command() {
private static final long serialVersionUID = 159321399857094976L;
public void execute() {
AllZone.EndOfTurn.addAt(createBird);
}
};
card.addDestroyCommand(destroy);
}//*************** END ************ END **************************
// Cards with Cycling abilities // Cards with Cycling abilities
// -1 means keyword "Cycling" not found // -1 means keyword "Cycling" not found