Fix #9649 and clean up counter effect text generation

This commit is contained in:
Alex W. Jackson 2022-10-14 00:41:02 -04:00
parent 5ec2cd0378
commit 332db3aecb
17 changed files with 117 additions and 374 deletions

View file

@ -46,6 +46,10 @@ class DustOfMomentsEffect extends OneShotEffect {
private static final FilterPermanentOrSuspendedCard filter = new FilterPermanentOrSuspendedCard();
private final boolean remove;
static {
filter.getPermanentFilter().add(CounterType.TIME.getPredicate());
}
DustOfMomentsEffect(boolean remove) {
super(Outcome.Benefit);
this.remove = remove;