[OGW] Added Oath of Chandra and Immobilizer Eldrazi.

This commit is contained in:
LevelX2 2016-01-10 13:04:33 +01:00
parent 5d01558d5b
commit 49bb3ec76c
2 changed files with 110 additions and 0 deletions

View file

@ -0,0 +1,27 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mage.filter.predicate.permanent;
import mage.filter.predicate.Predicate;
import mage.game.Game;
import mage.game.permanent.Permanent;
/**
*
* @author LevelX2
*/
public class EnteredThisTurnPredicate implements Predicate<Permanent> {
@Override
public boolean apply(Permanent input, Game game) {
return input.getTurnsOnBattlefield() == 0;
}
@Override
public String toString() {
return "Entered this turn";
}
}