Simplified predicate lines and changed filter text.

Made the predicates into separate lines and changed the filter text from
"came into play" to "entered the battlefield".
This commit is contained in:
Jerrad Bieno 2016-03-14 21:33:31 -05:00
parent 1f86a1cbf9
commit 8e4731e850

View file

@ -45,10 +45,11 @@ import mage.target.common.TargetCreaturePermanent;
*/
public class CradleToGrave extends CardImpl {
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("nonblack creature that came into play this turn");
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("nonblack creature that entered the battlefield this turn");
static {
filter.add(Predicates.and(Predicates.not(new ColorPredicate(ObjectColor.BLACK)), new EnteredThisTurnPredicate()));
filter.add(Predicates.not(new ColorPredicate(ObjectColor.BLACK)));
filter.add(new EnteredThisTurnPredicate());
}
public CradleToGrave(UUID ownerId) {