mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
[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:
parent
b94f7fc034
commit
e66637c865
3 changed files with 69 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue