- Commented out the separate code object for Hush. Hush has been added to the Tranquility code object and it's Cycling ability is now a keyword.

This commit is contained in:
jendave
2011-08-06 03:10:49 +00:00
parent f3bcef6341
commit 9a38de4f43
3 changed files with 14 additions and 7 deletions

View File

@@ -4206,7 +4206,7 @@ Enchant creature
Cleanfall Cleanfall
2 W 2 W
Sorcery Arcane Sorcery Arcane
Destroy all enchantments. no text
Cloak of Mists Cloak of Mists
1 U 1 U
@@ -8565,17 +8565,18 @@ You may play as many lands as you choose on your turn. Whenever you play a land
Tempest of Light Tempest of Light
2 W 2 W
Instant Instant
Destroy all enchantments. no text
Hush Hush
3 G 3 G
Sorcery Sorcery
no text no text
Cycling:2
Tranquility Tranquility
2 G 2 G
Sorcery Sorcery
Destroy all enchantments. no text
Spiritmonger Spiritmonger
3 B G 3 B G

View File

@@ -1,6 +1,6 @@
program/mail=mtgerror@yahoo.com program/mail=mtgerror@yahoo.com
program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26 program/forum=http://www.slightlymagic.net/forum/viewforum.php?f=26
program/version=Forge -- official beta: 10/01/01, SVN revision: 261 program/version=Forge -- official beta: 10/01/01, SVN revision: 262
tokens--file=AllTokens.txt tokens--file=AllTokens.txt

View File

@@ -8762,7 +8762,8 @@ public class CardFactory implements NewConstants {
}// *************** END ************ END ************************** }// *************** END ************ END **************************
//*************** START *********** START ************************** //*************** START *********** START **************************
else if (cardName.equals("Tranquility") || cardName.equals("Tempest of Light") || cardName.equals("Cleanfall")) else if (cardName.equals("Tranquility") || cardName.equals("Tempest of Light") ||
cardName.equals("Cleanfall") || cardName.equals("Hush"))
{ {
SpellAbility spell = new Spell(card) SpellAbility spell = new Spell(card)
{ {
@@ -8803,10 +8804,14 @@ public class CardFactory implements NewConstants {
(AllZone.Computer_Life.getLife() < 7 && !human.isEmpty()); (AllZone.Computer_Life.getLife() < 7 && !human.isEmpty());
} }
};// SpellAbility };// SpellAbility
spell.setDescription("Destroy all enchantments.");
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("Hush")) else if (cardName.equals("Hush"))
{ {
@@ -8854,6 +8859,7 @@ public class CardFactory implements NewConstants {
card.addSpellAbility(spell); card.addSpellAbility(spell);
card.addSpellAbility(CardFactoryUtil.ability_cycle(card, "2")); card.addSpellAbility(CardFactoryUtil.ability_cycle(card, "2"));
}// *************** END ************ END ************************** }// *************** END ************ END **************************
*/
//*************** START *********** START ************************** //*************** START *********** START **************************