[TLE] Implement Fire Nation Archers

This commit is contained in:
theelk801 2025-08-15 08:53:12 -04:00
parent a23d5f82e2
commit 8474f739e2
3 changed files with 78 additions and 0 deletions

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SoldierRedToken extends TokenImpl {
public SoldierRedToken() {
super("Soldier Token", "2/2 red Soldier creature token");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.SOLDIER);
power = new MageInt(2);
toughness = new MageInt(2);
}
private SoldierRedToken(final SoldierRedToken token) {
super(token);
}
public SoldierRedToken copy() {
return new SoldierRedToken(this);
}
}