this is a big one - fixed modal targetting and refactored getText()

This commit is contained in:
BetaSteward 2011-07-21 22:04:08 -04:00
parent 1b6e78c489
commit 84b9cbb16b
373 changed files with 912 additions and 1814 deletions

View file

@ -42,6 +42,7 @@ public class DrawDiscardControllerEffect extends OneShotEffect<DrawDiscardContro
public DrawDiscardControllerEffect() {
super(Outcome.DrawCard);
staticText = "Draw a card, then discard a card";
}
public DrawDiscardControllerEffect(final DrawDiscardControllerEffect effect) {
@ -64,10 +65,4 @@ public class DrawDiscardControllerEffect extends OneShotEffect<DrawDiscardContro
return false;
}
@Override
public String getText(Ability source) {
return "Draw a card, then discard a card";
}
}