mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[MOM] Implement Rampaging Raptor
This commit is contained in:
parent
1f864cf4bb
commit
edf1cff8a8
3 changed files with 146 additions and 0 deletions
|
|
@ -0,0 +1,25 @@
|
|||
package mage.filter.predicate.permanent;
|
||||
|
||||
import mage.filter.predicate.Predicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class ProtectorIdPredicate implements Predicate<Permanent> {
|
||||
|
||||
private final UUID protectorId;
|
||||
|
||||
public ProtectorIdPredicate(UUID protectorId) {
|
||||
this.protectorId = protectorId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Permanent input, Game game) {
|
||||
// TODO: implement this on battles branch
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue