forked from External/mage
32 lines
695 B
Java
32 lines
695 B
Java
|
|
|
|
package mage.abilities.common;
|
|
|
|
import mage.abilities.StaticAbility;
|
|
import mage.abilities.effects.common.CantBeCounteredSourceEffect;
|
|
import mage.constants.Zone;
|
|
|
|
/**
|
|
*
|
|
* @author BetaSteward_at_googlemail.com
|
|
*/
|
|
public class CantBeCounteredAbility extends StaticAbility {
|
|
|
|
public CantBeCounteredAbility() {
|
|
super(Zone.STACK, new CantBeCounteredSourceEffect());
|
|
}
|
|
|
|
public CantBeCounteredAbility(CantBeCounteredAbility ability) {
|
|
super(ability);
|
|
}
|
|
|
|
@Override
|
|
public String getRule() {
|
|
return "{this} can't be countered.";
|
|
}
|
|
|
|
@Override
|
|
public CantBeCounteredAbility copy() {
|
|
return new CantBeCounteredAbility(this);
|
|
}
|
|
}
|