mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[MID] Implemented Rise of the Ants
This commit is contained in:
parent
4838e7ff34
commit
72cb83e615
3 changed files with 67 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 RiseOfTheAntsToken extends TokenImpl {
|
||||
|
||||
public RiseOfTheAntsToken() {
|
||||
super("Insect", "3/3 green Insect creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.INSECT);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
}
|
||||
|
||||
public RiseOfTheAntsToken(final RiseOfTheAntsToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public RiseOfTheAntsToken copy() {
|
||||
return new RiseOfTheAntsToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue