mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
[ZNR] Implemented Felidar Retreat
This commit is contained in:
parent
1554b12a3e
commit
895453169b
3 changed files with 83 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CatBeastToken extends TokenImpl {
|
||||
|
||||
public CatBeastToken() {
|
||||
super("Cat Beast", "2/2 white Cat Beast creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.CAT);
|
||||
subtype.add(SubType.BEAST);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
public CatBeastToken(final CatBeastToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public CatBeastToken copy() {
|
||||
return new CatBeastToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue