forked from External/mage
Implemented Mesmerizing Benthid
This commit is contained in:
parent
993c56e1db
commit
c1c09020a6
4 changed files with 98 additions and 2 deletions
|
|
@ -2,16 +2,19 @@
|
|||
|
||||
package mage.abilities.common;
|
||||
|
||||
import mage.constants.Zone;
|
||||
import mage.abilities.StaticAbility;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class SimpleStaticAbility extends StaticAbility {
|
||||
|
||||
public SimpleStaticAbility(Effect effect) {
|
||||
this(Zone.BATTLEFIELD, effect);
|
||||
}
|
||||
|
||||
public SimpleStaticAbility(Zone zone, Effect effect) {
|
||||
super(zone, effect);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue