mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[VOW] Implemented Kessig Wolf Rider
This commit is contained in:
parent
a92100eb1a
commit
e36dac83f2
3 changed files with 84 additions and 0 deletions
|
|
@ -0,0 +1,30 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class RedWolfToken extends TokenImpl {
|
||||
|
||||
public RedWolfToken() {
|
||||
super("Wolf", "3/2 red Wolf creature token");
|
||||
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add(SubType.WOLF);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
private RedWolfToken(final RedWolfToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RedWolfToken copy() {
|
||||
return new RedWolfToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue