Implemented Jolrael, Mwonvuli Recluse

This commit is contained in:
Evan Kranzler 2020-06-09 08:18:42 -04:00
parent 0e82c87f59
commit e879233ea1
3 changed files with 83 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 GreenCatToken2 extends TokenImpl {
public GreenCatToken2() {
super("Cat", "2/2 green Cat creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.CAT);
power = new MageInt(2);
toughness = new MageInt(2);
}
private GreenCatToken2(final GreenCatToken2 token) {
super(token);
}
public GreenCatToken2 copy() {
return new GreenCatToken2(this);
}
}