convert Dread Statuary to AF_Animate

This commit is contained in:
jendave
2011-08-06 19:56:29 +00:00
parent 2cc414f8ae
commit d4ea88b534
2 changed files with 1 additions and 42 deletions

View File

@@ -3,6 +3,7 @@ ManaCost:no cost
Types:Land Types:Land
Text:no text Text:no text
A:AB$ Mana | Cost$ T | Produced$ 1 | SpellDescription$ Add 1 to your mana pool. A:AB$ Mana | Cost$ T | Produced$ 1 | SpellDescription$ Add 1 to your mana pool.
A:AB$Animate | Cost$ 4 | Defined$ Self | Power$ 4 | Toughness$ 2 | Types$ Creature,Artifact,Golem | SpellDescription$ CARDNAME becomes a 4/2 Golem artifact creature until end of turn. It's still a land.
SVar:Rarity:Uncommon SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/dread_statuary.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/dread_statuary.jpg
SetInfo:WWK|Uncommon|http://magiccards.info/scans/en/wwk/135.jpg SetInfo:WWK|Uncommon|http://magiccards.info/scans/en/wwk/135.jpg

View File

@@ -691,48 +691,6 @@ class CardFactory_Lands {
}//*************** END ************ END ************************** }//*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Dread Statuary")) {
final long[] timeStamp = new long[1];
final SpellAbility a1 = new Ability(card, "4") {
@Override
public boolean canPlayAI() {
return !card.hasSickness() && super.canPlayAI();
}
@Override
public void resolve() {
Card c = card;
String[] types = { "Artifact", "Creature", "Golem"};
String[] keywords = { };
timeStamp[0] = CardFactoryUtil.activateManland(c, 4, 2, types, keywords, "0");
final Command eot1 = new Command() {
private static final long serialVersionUID = -2632172918887247003L;
long stamp = timeStamp[0];
public void execute() {
Card c = card;
String[] types = { "Artifact", "Creature", "Golem"};
String[] keywords = { };
CardFactoryUtil.revertManland(c, types, keywords, "", stamp);
}
};
AllZone.EndOfTurn.addUntil(eot1);
}
};//SpellAbility
card.clearSpellKeepManaAbility();
card.addSpellAbility(a1);
StringBuilder sb = new StringBuilder();
sb.append(card).append(" - until end of turn, becomes a 4/2 Golem artifact creature until end of turn.");
a1.setStackDescription(sb.toString());
a1.setDescription("4: Until end of turn, becomes a 4/2 Golem artifact creature until end of turn. It's still a land.");
}//*************** END ************ END **************************
//*************** START *********** START ************************** //*************** START *********** START **************************
else if(cardName.equals("Lotus Vale")) { else if(cardName.equals("Lotus Vale")) {
/* /*