mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Implemented Anax, Hardened in the Forge
This commit is contained in:
parent
a00b4cdc9e
commit
14c22137ce
3 changed files with 132 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue