mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
Added Back to Nature.
This commit is contained in:
@@ -38,6 +38,7 @@ snow_covered_mountain.jpg http://www.wizards.com/global/images/magic/gene
|
|||||||
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
|
snow_covered_mountain1.jpg http://www.wizards.com/global/images/magic/general/snow_covered_mountain.jpg
|
||||||
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
snow_covered_mountain2.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
||||||
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
snow_covered_mountain3.jpg http://www.magickartenmarkt.de/img/cards/Ice_Age/snow_covered_mountain.jpg
|
||||||
|
back_to_nature.jpg http://www.wizards.com/global/images/magic/general/back_to_nature.jpg
|
||||||
augury_owl.jpg http://www.wizards.com/global/images/magic/general/augury_owl.jpg
|
augury_owl.jpg http://www.wizards.com/global/images/magic/general/augury_owl.jpg
|
||||||
water_servant.jpg http://www.wizards.com/global/images/magic/general/water_servant.jpg
|
water_servant.jpg http://www.wizards.com/global/images/magic/general/water_servant.jpg
|
||||||
temple_bell.jpg http://www.wizards.com/global/images/magic/general/temple_bell.jpg
|
temple_bell.jpg http://www.wizards.com/global/images/magic/general/temple_bell.jpg
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
Back to Nature
|
||||||
|
1 G
|
||||||
|
Instant
|
||||||
|
no text
|
||||||
|
|
||||||
Augury Owl
|
Augury Owl
|
||||||
1 U
|
1 U
|
||||||
Creature Bird
|
Creature Bird
|
||||||
|
|||||||
@@ -10558,7 +10558,7 @@ public class CardFactory implements NewConstants {
|
|||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Tranquility") || cardName.equals("Tempest of Light")
|
else if(cardName.equals("Tranquility") || cardName.equals("Tempest of Light")
|
||||||
|| cardName.equals("Cleanfall") || cardName.equals("Hush")
|
|| cardName.equals("Cleanfall") || cardName.equals("Hush")
|
||||||
|| cardName.equals("Tranquil Path")) {
|
|| cardName.equals("Tranquil Path") || cardName.equals("Back to Nature")) {
|
||||||
SpellAbility spell = new Spell(card) {
|
SpellAbility spell = new Spell(card) {
|
||||||
|
|
||||||
private static final long serialVersionUID = 3087098751201624354L;
|
private static final long serialVersionUID = 3087098751201624354L;
|
||||||
@@ -10597,12 +10597,14 @@ public class CardFactory implements NewConstants {
|
|||||||
}
|
}
|
||||||
};// SpellAbility
|
};// SpellAbility
|
||||||
spell.setDescription("Destroy all enchantments.");
|
spell.setDescription("Destroy all enchantments.");
|
||||||
spell.setStackDescription(card.getName() + " - destroy all enchantments.");
|
StringBuffer sb = new StringBuffer();
|
||||||
|
sb.append(card.getName()).append(" - destroy all enchantments.");
|
||||||
|
spell.setStackDescription(sb.toString());
|
||||||
|
// spell.setStackDescription(card.getName() + " - destroy all enchantments.");
|
||||||
card.clearSpellAbility();
|
card.clearSpellAbility();
|
||||||
card.addSpellAbility(spell);
|
card.addSpellAbility(spell);
|
||||||
}// *************** END ************ END **************************
|
}// *************** END ************ END **************************
|
||||||
|
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Incendiary Command")) {
|
else if(cardName.equals("Incendiary Command")) {
|
||||||
//not sure what to call variables, so I just made up something
|
//not sure what to call variables, so I just made up something
|
||||||
|
|||||||
Reference in New Issue
Block a user