[STX] Implemented Magma Opus

This commit is contained in:
Evan Kranzler 2021-03-30 19:34:16 -04:00
parent 8f37428518
commit f831eac6fc
3 changed files with 120 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class PrismariToken extends TokenImpl {
public PrismariToken() {
super("Elemental", "4/4 blue and red Elemental creature token");
cardType.add(CardType.CREATURE);
color.setBlue(true);
color.setRed(true);
subtype.add(SubType.ELEMENTAL);
power = new MageInt(4);
toughness = new MageInt(4);
}
private PrismariToken(final PrismariToken token) {
super(token);
}
@Override
public PrismariToken copy() {
return new PrismariToken(this);
}
}