mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
convert Stirring Wildwood and Stalking Stones to AF_Animate.
This commit is contained in:
@@ -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$ 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:Rarity:Uncommon
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/stalking_stones.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/stalking_stones.jpg
|
||||||
SetInfo:MRD|Uncommon|http://magiccards.info/scans/en/mi/284.jpg
|
SetInfo:MRD|Uncommon|http://magiccards.info/scans/en/mi/284.jpg
|
||||||
|
|||||||
@@ -2,9 +2,10 @@ Name:Stirring Wildwood
|
|||||||
ManaCost:no cost
|
ManaCost:no cost
|
||||||
Types:Land
|
Types:Land
|
||||||
Text:no text
|
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$ W | SpellDescription$ Add W to your mana pool.
|
||||||
A:AB$ Mana | Cost$ T | Produced$ G | SpellDescription$ Add G 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:Rarity:Rare
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/stirring_wildwood.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/stirring_wildwood.jpg
|
||||||
SetInfo:WWK|Rare|http://magiccards.info/scans/en/wwk/144.jpg
|
SetInfo:WWK|Rare|http://magiccards.info/scans/en/wwk/144.jpg
|
||||||
|
|||||||
@@ -583,43 +583,6 @@ class CardFactory_Lands {
|
|||||||
}//*************** END ************ END **************************
|
}//*************** 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 **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Lavaclaw Reaches")) {
|
else if(cardName.equals("Lavaclaw Reaches")) {
|
||||||
final long[] timeStamp = new long[1];
|
final long[] timeStamp = new long[1];
|
||||||
|
|||||||
Reference in New Issue
Block a user