mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
Implemented Jolrael, Mwonvuli Recluse
This commit is contained in:
parent
0e82c87f59
commit
e879233ea1
3 changed files with 83 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 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue