diff --git a/res/cards.txt b/res/cards.txt index 8dfa3906ac3..c4b7e2635a9 100644 --- a/res/cards.txt +++ b/res/cards.txt @@ -4206,7 +4206,7 @@ Enchant creature Cleanfall 2 W Sorcery Arcane -Destroy all enchantments. +no text Cloak of Mists 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 2 W Instant -Destroy all enchantments. +no text Hush 3 G Sorcery no text +Cycling:2 Tranquility 2 G Sorcery -Destroy all enchantments. +no text Spiritmonger 3 B G diff --git a/res/main.properties b/res/main.properties index 6a06e0fc9ac..3d917b28d4a 100644 --- a/res/main.properties +++ b/res/main.properties @@ -1,6 +1,6 @@ program/mail=mtgerror@yahoo.com 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 diff --git a/src/forge/CardFactory.java b/src/forge/CardFactory.java index 066dc64e8c9..36b8b6a0cb6 100644 --- a/src/forge/CardFactory.java +++ b/src/forge/CardFactory.java @@ -8762,7 +8762,8 @@ public class CardFactory implements NewConstants { }// *************** END ************ END ************************** //*************** 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) { @@ -8803,10 +8804,14 @@ public class CardFactory implements NewConstants { (AllZone.Computer_Life.getLife() < 7 && !human.isEmpty()); } };// SpellAbility + spell.setDescription("Destroy all enchantments."); + spell.setStackDescription(card.getName() + " - destroy all enchantments."); card.clearSpellAbility(); card.addSpellAbility(spell); }// *************** END ************ END ************************** - + + +/* //*************** START *********** START ************************** else if (cardName.equals("Hush")) { @@ -8854,7 +8859,8 @@ public class CardFactory implements NewConstants { card.addSpellAbility(spell); card.addSpellAbility(CardFactoryUtil.ability_cycle(card, "2")); }// *************** END ************ END ************************** - +*/ + //*************** START *********** START ************************** else if(cardName.equals("Incendiary Command"))