mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
[ZNR] Implemented Myriad Construct
This commit is contained in:
parent
0bf6949328
commit
e6c1d502fc
4 changed files with 86 additions and 19 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue