* Knowledge Pool - Fixed exile zone handling.

This commit is contained in:
LevelX2 2015-10-07 19:57:42 +02:00
parent 6ec79040ed
commit f90f79693e

View file

@ -59,8 +59,10 @@ public class KnowledgePool extends CardImpl {
public KnowledgePool(UUID ownerId) { public KnowledgePool(UUID ownerId) {
super(ownerId, 111, "Knowledge Pool", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{6}"); super(ownerId, 111, "Knowledge Pool", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{6}");
this.expansionSetCode = "MBS"; this.expansionSetCode = "MBS";
// Imprint - When Knowledge Pool enters the battlefield, each player exiles the top three cards of his or her library // Imprint - When Knowledge Pool enters the battlefield, each player exiles the top three cards of his or her library
this.addAbility(new EntersBattlefieldTriggeredAbility(new KnowledgePoolEffect1(), false)); this.addAbility(new EntersBattlefieldTriggeredAbility(new KnowledgePoolEffect1(), false));
// Whenever a player casts a spell from his or her hand, that player exiles it. If the player does, he or she may cast another nonland card exiled with Knowledge Pool without paying that card's mana cost. // Whenever a player casts a spell from his or her hand, that player exiles it. If the player does, he or she may cast another nonland card exiled with Knowledge Pool without paying that card's mana cost.
this.addAbility(new KnowledgePoolAbility()); this.addAbility(new KnowledgePoolAbility());
} }