[MH2] Implemented Gilt-Blade Prowler

This commit is contained in:
Evan Kranzler 2021-06-03 07:53:10 -04:00
parent acb8070d6b
commit d3be492f8c
3 changed files with 58 additions and 0 deletions

View file

@ -15,4 +15,9 @@ public enum ControllerDiscardedThisTurnCondition implements Condition {
public boolean apply(Game game, Ability source) {
return DiscardedCardWatcher.checkPlayerDiscarded(source.getControllerId(), game);
}
@Override
public String toString() {
return "you've discarded a card this turn";
}
}