[OTC] Implement Elemental Eruption

This commit is contained in:
theelk801 2024-04-05 09:05:40 -04:00
parent 406ced04bf
commit e4cd084b1b
3 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.abilities.keyword.ProwessAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class DragonElementalToken extends TokenImpl {
public DragonElementalToken() {
super("Dragon Token", "4/4 red Dragon Elemental creature token with flying and prowess");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.DRAGON);
subtype.add(SubType.ELEMENTAL);
power = new MageInt(4);
toughness = new MageInt(4);
addAbility(FlyingAbility.getInstance());
addAbility(new ProwessAbility());
}
private DragonElementalToken(final DragonElementalToken token) {
super(token);
}
public DragonElementalToken copy() {
return new DragonElementalToken(this);
}
}