mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[SNC] Implemented Vivien on the Hunt
This commit is contained in:
parent
7a8feb5017
commit
5f3cb23476
3 changed files with 167 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class RhinoWarriorToken extends TokenImpl {
|
||||
|
||||
public RhinoWarriorToken() {
|
||||
super("Rhino Warrior Token", "4/4 green Rhino Warrior creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.RHINO);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("SNC");
|
||||
}
|
||||
|
||||
public RhinoWarriorToken(final RhinoWarriorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public RhinoWarriorToken copy() {
|
||||
return new RhinoWarriorToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue