[MOM] Implement Rampaging Raptor

This commit is contained in:
theelk801 2023-04-13 09:15:32 -04:00
parent 1f864cf4bb
commit edf1cff8a8
3 changed files with 146 additions and 0 deletions

View file

@ -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;
}
}