forked from External/mage
[WOC] Implement Nettling Nuisance (#11076)
This commit is contained in:
parent
f9708c663e
commit
09a9e8e5d9
3 changed files with 128 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.combat.CantBlockSourceEffect;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Xanderhall
|
||||
*/
|
||||
public final class NettlingNuisancePirateToken extends TokenImpl {
|
||||
|
||||
public NettlingNuisancePirateToken() {
|
||||
super("Pirate Token", "4/2 red Pirate creature token with \"This creature can't block.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.PIRATE);
|
||||
color.setRed(true);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
this.addAbility(new SimpleStaticAbility(new CantBlockSourceEffect(Duration.EndOfGame)));
|
||||
}
|
||||
|
||||
protected NettlingNuisancePirateToken(final NettlingNuisancePirateToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public NettlingNuisancePirateToken copy() {
|
||||
return new NettlingNuisancePirateToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue