convert Stirring Wildwood and Stalking Stones to AF_Animate.

This commit is contained in:
jendave
2011-08-06 19:55:41 +00:00
parent f25f7947aa
commit c883e3bf8e
3 changed files with 3 additions and 38 deletions

View File

@@ -3,6 +3,7 @@ ManaCost:no cost
Types:Land
Text:no text
A:AB$ Mana | Cost$ T | Produced$ 1 | SpellDescription$ Add 1 to your mana pool.
A:AB$Animate | Cost$ 6 | Defined$ Self | Power$ 3 | Toughness$ 3 | Types$ Creature,Artifact,Elemental | Permanent$ True | SpellDescription$ CARDNAME becomes a 3/3 Elemental artifact creature that's still a land. (This effect lasts indefinitely.)
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/stalking_stones.jpg
SetInfo:MRD|Uncommon|http://magiccards.info/scans/en/mi/284.jpg

View File

@@ -2,9 +2,10 @@ Name:Stirring Wildwood
ManaCost:no cost
Types:Land
Text:no text
K:CARDNAME enters the battlefield tapped.
A:AB$ Mana | Cost$ T | Produced$ W | SpellDescription$ Add W to your mana pool.
A:AB$ Mana | Cost$ T | Produced$ G | SpellDescription$ Add G to your mana pool.
K:CARDNAME enters the battlefield tapped.
A:AB$Animate | Cost$ 6 | Defined$ Self | Power$ 3 | Toughness$ 4 | Types$ Creature,Elemental | Keywords$ Reach | Colors$ Green,White | SpellDescription$ Until end of turn, CARDNAME becomes a 3/4 green and white Elemental creature with reach. It's still a land.
SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/stirring_wildwood.jpg
SetInfo:WWK|Rare|http://magiccards.info/scans/en/wwk/144.jpg

View File

@@ -583,43 +583,6 @@ class CardFactory_Lands {
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Stalking Stones")) {
final SpellAbility a1 = new Ability(card, "6") {
@Override
public boolean canPlayAI() {
return !card.getType().contains("Creature") && super.canPlayAI();
}
@Override
public void resolve() {
Card c = card;
String[] types = { "Artifact", "Creature", "Elemental" };
String[] keywords = { };
CardFactoryUtil.activateManland(c, 3, 3, types, keywords, "0");
}
};//SpellAbility
card.clearSpellKeepManaAbility();
card.addSpellAbility(a1);
StringBuilder sb = new StringBuilder();
sb.append(card).append(" becomes a 3/3 Elemental artifact creature that's still a land.");
a1.setStackDescription(sb.toString());
a1.setDescription("6: Stalking Stones becomes a 3/3 Elemental artifact creature that's still a land. (This effect lasts indefinitely.)");
Command paid1 = new Command() {
private static final long serialVersionUID = -6800983290478844750L;
public void execute() {
AllZone.Stack.add(a1);
}
};
a1.setBeforePayMana(new Input_PayManaCost_Ability(a1.getManaCost(), paid1));
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Lavaclaw Reaches")) {
final long[] timeStamp = new long[1];