Added Seal of Fire, Seal of Cleansing, Seal of Primordium.

This commit is contained in:
jendave
2011-08-06 02:48:47 +00:00
parent 4842f25841
commit 5725f5a282
4 changed files with 195 additions and 28 deletions

View File

@@ -4540,7 +4540,15 @@ public class CardFactory_Creatures {
PlayerZone myPlay = AllZone.getZone(Constant.Zone.Play, card.getController());
CardList list = new CardList(myPlay.getCards());
list.remove(card);//doesn't move Sky Swallower
//list.remove(card);//doesn't move Sky Swallower
list = list.filter(new CardListFilter()
{
public boolean addCard(Card c) {
return c.getName().equals("");
}
});
while(! list.isEmpty())
{
((PlayerZone_ComesIntoPlay)AllZone.Human_Play).setTriggers(false);