mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
* War's Toll - fixed that is applies restriction attack effect from any zone (from command, hand, etc);
This commit is contained in:
parent
7fcd4abcc8
commit
cf759e0443
11 changed files with 25 additions and 55 deletions
|
|
@ -4,13 +4,12 @@ import mage.constants.AbilityType;
|
|||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public abstract class EvasionAbility extends StaticAbility {
|
||||
|
||||
public EvasionAbility() {
|
||||
this(Zone.ALL);
|
||||
this(Zone.BATTLEFIELD);
|
||||
}
|
||||
|
||||
public EvasionAbility(Zone zone) {
|
||||
|
|
|
|||
|
|
@ -5,13 +5,12 @@ import mage.abilities.effects.Effect;
|
|||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class SimpleEvasionAbility extends EvasionAbility {
|
||||
|
||||
public SimpleEvasionAbility(Effect effect) {
|
||||
this(effect, Zone.ALL);
|
||||
this(effect, Zone.BATTLEFIELD);
|
||||
}
|
||||
|
||||
public SimpleEvasionAbility(Effect effect, Zone zone) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue