Add OTC token images

This commit is contained in:
PurpleCrowbar 2024-04-28 21:09:06 +01:00
parent 868cd4d8fd
commit 371391b2e3
4 changed files with 61 additions and 2 deletions

View file

@ -24,7 +24,8 @@ public final class DragonEggDragonToken extends TokenImpl {
toughness = new MageInt(2);
this.addAbility(FlyingAbility.getInstance());
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 0, Duration.EndOfTurn), new ManaCostsImpl<>("{R}")));
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new BoostSourceEffect(1, 0, Duration.EndOfTurn)
.setText("This creature gets +1/+0 until end of turn"), new ManaCostsImpl<>("{R}")));
}
private DragonEggDragonToken(final DragonEggDragonToken token) {

View file

@ -12,7 +12,7 @@ import mage.constants.SubType;
public final class DragonElementalToken extends TokenImpl {
public DragonElementalToken() {
super("Dragon Token", "4/4 red Dragon Elemental creature token with flying and prowess");
super("Dragon Elemental Token", "4/4 red Dragon Elemental creature token with flying and prowess");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.DRAGON);