mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
[CLB] Implemented Bothersome Quasit
This commit is contained in:
parent
baf3ad18b5
commit
b48a023a94
4 changed files with 86 additions and 11 deletions
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue