Implemented Anax, Hardened in the Forge

This commit is contained in:
Evan Kranzler 2020-01-06 21:40:50 -05:00
parent a00b4cdc9e
commit 14c22137ce
3 changed files with 132 additions and 0 deletions

View file

@ -0,0 +1,34 @@
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 TheElk801
*/
public final class SatyrCantBlockToken extends TokenImpl {
public SatyrCantBlockToken() {
super("Satyr", "1/1 red Satyr creature token with \"This creature can't block.\"");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.SATYR);
power = new MageInt(1);
toughness = new MageInt(1);
this.addAbility(new SimpleStaticAbility(new CantBlockSourceEffect(Duration.WhileOnBattlefield)
.setText("this creature can't block")));
}
private SatyrCantBlockToken(final SatyrCantBlockToken token) {
super(token);
}
public SatyrCantBlockToken copy() {
return new SatyrCantBlockToken(this);
}
}