mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[DMC] Implemented Baru Wurmspeaker
This commit is contained in:
parent
b14d7d24bb
commit
af0fa56c10
3 changed files with 158 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue