[CLB] Implemented Bothersome Quasit

This commit is contained in:
Evan Kranzler 2022-05-31 08:48:49 -04:00
parent baf3ad18b5
commit b48a023a94
4 changed files with 86 additions and 11 deletions

View file

@ -0,0 +1,17 @@
package mage.filter.predicate.permanent;
import mage.filter.predicate.Predicate;
import mage.game.Game;
import mage.game.permanent.Permanent;
/**
* @author TheElk801
*/
public enum GoadedPredicate implements Predicate<Permanent> {
instance;
@Override
public boolean apply(Permanent input, Game game) {
return !input.getGoadingPlayers().isEmpty();
}
}