mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
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:
parent
1f86a1cbf9
commit
8e4731e850
1 changed files with 3 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue