mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
[SNC] Implemented Join the Maestros
This commit is contained in:
parent
cd2535e99b
commit
c5cb6eac8e
3 changed files with 65 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 OgreWarriorToken extends TokenImpl {
|
||||
|
||||
public OgreWarriorToken() {
|
||||
super("Ogre Warrior Token", "4/3 black Ogre Warrior creature token");
|
||||
color.setBlack(true);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.OGRE);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(3);
|
||||
}
|
||||
|
||||
public OgreWarriorToken(final OgreWarriorToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public OgreWarriorToken copy() {
|
||||
return new OgreWarriorToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue