mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
- Converted Elephant Ambush to keyword.
- Added rarity and LQ pic url to Combust.
This commit is contained in:
@@ -4,4 +4,6 @@ Types:Instant
|
|||||||
Text:no text
|
Text:no text
|
||||||
K:CARDNAME can't be countered.
|
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.
|
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
|
End
|
||||||
@@ -1,7 +1,9 @@
|
|||||||
Name:Elephant Ambush
|
Name:Elephant Ambush
|
||||||
ManaCost:2 G G
|
ManaCost:2 G G
|
||||||
Types:Instant
|
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:Rarity:Common
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/elephant_ambush.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/elephant_ambush.jpg
|
||||||
End
|
End
|
||||||
|
|||||||
@@ -2161,32 +2161,7 @@ public class CardFactory_Instants {
|
|||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** 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 **************************
|
|
||||||
else if(cardName.equals("Beast Attack")) {
|
else if(cardName.equals("Beast Attack")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user