mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Wandermare
This commit is contained in:
parent
b026ad4b9b
commit
4b8e9d0a09
3 changed files with 74 additions and 0 deletions
|
|
@ -0,0 +1,23 @@
|
|||
package mage.filter.predicate.mageobject;
|
||||
|
||||
import mage.MageObject;
|
||||
import mage.filter.predicate.Predicate;
|
||||
import mage.game.Game;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
* TODO: make this actually work
|
||||
*/
|
||||
public enum AdventurePredicate implements Predicate<MageObject> {
|
||||
instance;
|
||||
|
||||
@Override
|
||||
public boolean apply(MageObject input, Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Adventure";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue