[DMC] Implement Greensleeves, Maro-Sorcerer (#9487)

This commit is contained in:
PurpleCrowbar 2022-09-09 04:26:43 +01:00 committed by GitHub
parent d5e56f523d
commit 173b3dbb4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 91 additions and 0 deletions

View file

@ -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);
}
}