mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Added mustBlockAllAttackers
This commit is contained in:
parent
7cf73917e6
commit
a7514fc671
1 changed files with 4 additions and 5 deletions
|
|
@ -27,7 +27,6 @@
|
|||
*/
|
||||
package mage.abilities.effects;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.constants.Duration;
|
||||
|
|
@ -79,6 +78,10 @@ public abstract class RequirementEffect extends ContinuousEffectImpl {
|
|||
public boolean mustBlockAny(Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean mustBlockAllAttackers(Game game) {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines the defender a attacker has to attack
|
||||
|
|
@ -99,10 +102,6 @@ public abstract class RequirementEffect extends ContinuousEffectImpl {
|
|||
return null;
|
||||
}
|
||||
|
||||
public List<UUID> mustBlockAllAttackers(Ability source, Game game) {
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Player related check The player returned or controlled planeswalker must
|
||||
* be attacked with at least one attacker
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue