[DMU] Implemented The Phasing of Zhalfir

This commit is contained in:
Evan Kranzler 2022-09-05 16:56:46 -04:00
parent b9bbb4d1b3
commit 30aafb7672
3 changed files with 172 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class PhyrexianToken extends TokenImpl {
public PhyrexianToken() {
super("Phyrexian Token", "2/2 black Phyrexian creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.PHYREXIAN);
power = new MageInt(2);
toughness = new MageInt(2);
availableImageSetCodes = Arrays.asList("DMU");
}
public PhyrexianToken(final PhyrexianToken token) {
super(token);
}
@Override
public PhyrexianToken copy() {
return new PhyrexianToken(this);
}
}