- Converted Elephant Ambush to keyword.

- Added rarity and LQ pic url to Combust.
This commit is contained in:
jendave
2011-08-06 09:22:21 +00:00
parent 9aaa3e26f2
commit 61161b3142
3 changed files with 6 additions and 27 deletions

View File

@@ -4,4 +4,6 @@ Types:Instant
Text:no text
K:CARDNAME can't be countered.
A:SP$DealDamage|Cost$1 R|ValidTgts$Creature.White,Creature.Blue|NumDmg$5|TgtPrompt$Select target white or blue creature.|SpellDescription$CARDNAME deals 5 damage to target white or blue creature.
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/combust.jpg
End

View File

@@ -1,7 +1,9 @@
Name:Elephant Ambush
ManaCost:2 G G
Types:Instant
Text:no text
Text:Put a 3/3 green Elephant creature token onto the battlefield.
K:spMakeToken<>1<>Elephant<>G 3 3 Elephant<>Controller<>G<>Creature;Elephant<>3<>3<>None
SVar:Flashback:6 G G/0
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/elephant_ambush.jpg
End

View File

@@ -2161,32 +2161,7 @@ public class CardFactory_Instants {
}//*************** END ************ END **************************
//*************** START *********** START **************************
else if(cardName.equals("Elephant Ambush")) {
SpellAbility spell = new Spell(card) {
private static final long serialVersionUID = 1808366787563573082L;
@Override
public void resolve() {
CardFactoryUtil.makeToken("Elephant", "G 3 3 Elephant", card, "G", new String[] {
"Creature", "Elephant"}, 3, 3, new String[] {""});
}//resolve()
};
spell.setDescription("Put a 3/3 green Elephant creature token into play.");
spell.setStackDescription(card.getController()
+ " puts a 3/3 green Elephant creature token into play.");
card.setFlashback(true);
card.clearSpellAbility();
card.addSpellAbility(spell);
card.addSpellAbility(CardFactoryUtil.ability_Flashback(card, "6 G G", "0"));
}//*************** END ************ END **************************
//*************** START *********** START **************************
//*************** START *********** START **************************
else if(cardName.equals("Beast Attack")) {
SpellAbility spell = new Spell(card) {