[DMC] Implemented Baru Wurmspeaker

This commit is contained in:
Evan Kranzler 2022-08-30 21:31:20 -04:00
parent b14d7d24bb
commit af0fa56c10
3 changed files with 158 additions and 0 deletions

View file

@ -0,0 +1,32 @@
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 Wurm44Token extends TokenImpl {
public Wurm44Token() {
super("Wurm Token", "4/4 green Wurm creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.WURM);
power = new MageInt(4);
toughness = new MageInt(4);
availableImageSetCodes = Arrays.asList("DMU");
}
public Wurm44Token(final Wurm44Token token) {
super(token);
}
public Wurm44Token copy() {
return new Wurm44Token(this);
}
}