[ONE] Implement Thrun, Breaker of Silence (#9882)

* Adding Thrun to PhyrexiaAllWillBeOne

* Adding Thrun to PhyrexiaAllWillBeOne

Co-authored-by: AhmadYProjects <yousufa@kean.edu>
This commit is contained in:
AhmadYProjects 2023-01-17 08:58:41 -05:00 committed by GitHub
parent b94f7fc034
commit e66637c865
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 69 additions and 0 deletions

View file

@ -741,6 +741,15 @@ public final class StaticFilters {
FILTER_SPELL_OR_ABILITY_OPPONENTS.setLockedFilter(true);
}
public static final FilterStackObject FILTER_SPELL_OR_ABILITY_OPPONENTS_NON_GREEN = new FilterStackObject("a nongreen spell or ability an opponent controls");
static {
FILTER_SPELL_OR_ABILITY_OPPONENTS_NON_GREEN.add(Predicates.not(new ColorPredicate(ObjectColor.GREEN)));
FILTER_SPELL_OR_ABILITY_OPPONENTS_NON_GREEN.add(TargetController.OPPONENT.getControllerPredicate());
FILTER_SPELL_OR_ABILITY_OPPONENTS_NON_GREEN.setLockedFilter(true);
}
public static final FilterStackObject FILTER_SPELL_OR_ABILITY = new FilterStackObject();
static {