Added Caustic Rain, Erase, Iona's Judgment and Wipe Clean.

This commit is contained in:
jendave
2011-08-06 05:34:42 +00:00
parent 6b535eabfc
commit b083e63429
2 changed files with 26 additions and 1 deletions

View File

@@ -4,6 +4,31 @@ Instant
Exile target artifact or enchantment.
spBounceTgt:Artifact,Enchantment:Exile
Caustic Rain
2 B B
Sorcery
Exile target land.
spBounceTgt:Land:Exile
Erase
W
Instant
Exile target enchantment.
spBounceTgt:Enchantment:Exile
Iona's Judgment
4 W
Sorcery
Exile target creature or enchantment.
spBounceTgt:Creature,Enchantment:Exile
Wipe Clean
1 W
Instant
Exile target enchantment.
spBounceTgt:Enchantment:Exile
Cycling:3
Hoodwink
1 U
Instant

View File

@@ -2225,7 +2225,7 @@ public class CardFactory implements NewConstants {
choices = choices.filter(new CardListFilter(){
public boolean addCard(Card c)
{
return !c.getKeyword().contains("Shroud");
return CardFactoryUtil.canTarget(card, c);
}
});