forked from External/mage
- Fixed some text issues related to Bug 6675...
This commit is contained in:
parent
a20bc6c414
commit
6c69939c0d
35 changed files with 105 additions and 72 deletions
|
|
@ -0,0 +1,32 @@
|
|||
|
||||
|
||||
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 CantBeCounteredSourceAbility extends StaticAbility {
|
||||
|
||||
public CantBeCounteredSourceAbility() {
|
||||
super(Zone.STACK, new CantBeCounteredSourceEffect());
|
||||
}
|
||||
|
||||
public CantBeCounteredSourceAbility(CantBeCounteredSourceAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "{this} can't be countered.";
|
||||
}
|
||||
|
||||
@Override
|
||||
public CantBeCounteredSourceAbility copy() {
|
||||
return new CantBeCounteredSourceAbility(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue