[WHO] Implement Cult of Skaro

This commit is contained in:
theelk801 2023-10-13 09:12:40 -04:00
parent ad29594c56
commit bdf6aa5379
3 changed files with 104 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.MenaceAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class DalekToken extends TokenImpl {
public DalekToken() {
super("Dalek Token", "3/3 black Dalek artifact creature token with menace");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.DALEK);
power = new MageInt(3);
toughness = new MageInt(3);
addAbility(new MenaceAbility(false));
}
private DalekToken(final DalekToken token) {
super(token);
}
@Override
public DalekToken copy() {
return new DalekToken(this);
}
}