mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[TLE] Implement Fire Nation Archers
This commit is contained in:
parent
a23d5f82e2
commit
8474f739e2
3 changed files with 78 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue