[MSH] Implement Doctor Doom

This commit is contained in:
theelk801 2025-12-10 11:26:53 -05:00
parent 5927828965
commit 0a2fea6684
4 changed files with 115 additions and 0 deletions

View file

@ -45,6 +45,7 @@ public enum SubType {
CASE("Case", SubTypeSet.EnchantmentType),
CLASS("Class", SubTypeSet.EnchantmentType),
CURSE("Curse", SubTypeSet.EnchantmentType),
PLAN("Plan", SubTypeSet.EnchantmentType),
ROLE("Role", SubTypeSet.EnchantmentType),
ROOM("Room", SubTypeSet.EnchantmentType),
RUNE("Rune", SubTypeSet.EnchantmentType),

View file

@ -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 DoombotToken extends TokenImpl {
public DoombotToken() {
super("Doombot", "3/3 colorless Robot Villain artifact creature token named Doombot");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.ROBOT);
subtype.add(SubType.VILLAIN);
power = new MageInt(3);
toughness = new MageInt(3);
}
private DoombotToken(final DoombotToken token) {
super(token);
}
public DoombotToken copy() {
return new DoombotToken(this);
}
}