[ZNR] Implemented Myriad Construct

This commit is contained in:
Evan Kranzler 2020-09-09 09:54:46 -04:00
parent 0bf6949328
commit e6c1d502fc
4 changed files with 86 additions and 19 deletions

View file

@ -1,31 +1,21 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.DefenderAbility;
/**
*
* @author spjspj
*/
public final class ConstructToken extends TokenImpl {
public ConstructToken() {
this("CNS");
}
public ConstructToken(String setCode) {
super("Construct", "1/1 colorless Construct artifact creature token with defender");
this.setOriginalExpansionSetCode(setCode);
super("Construct", "1/1 colorless Construct artifact creature token");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.CONSTRUCT);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(DefenderAbility.getInstance());
}
public ConstructToken(final ConstructToken token) {