mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[DMC] Implement Greensleeves, Maro-Sorcerer (#9487)
This commit is contained in:
parent
d5e56f523d
commit
173b3dbb4f
3 changed files with 91 additions and 0 deletions
|
|
@ -0,0 +1,27 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.ObjectColor;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
public final class BadgerToken extends TokenImpl {
|
||||
|
||||
public BadgerToken() {
|
||||
super("Badger Token", "3/3 green Badger creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.addColor(ObjectColor.GREEN);
|
||||
subtype.add(SubType.BADGER);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
setOriginalExpansionSetCode("DMC");
|
||||
}
|
||||
|
||||
public BadgerToken(final BadgerToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public BadgerToken copy() {
|
||||
return new BadgerToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue