mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
Implemented Sethron, Hurloon General
This commit is contained in:
parent
1fec71920e
commit
a5f9b8fb64
3 changed files with 106 additions and 0 deletions
|
|
@ -0,0 +1,29 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MinotaurToken extends TokenImpl {
|
||||
|
||||
public MinotaurToken() {
|
||||
super("Minotaur", "2/3 red Minotaur creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setColor(ObjectColor.RED);
|
||||
subtype.add(SubType.MINOTAUR);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(3);
|
||||
}
|
||||
|
||||
private MinotaurToken(final MinotaurToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public MinotaurToken copy() {
|
||||
return new MinotaurToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue