[MKM] Implement Museum Nightwatch

This commit is contained in:
theelk801 2024-01-19 09:55:58 -05:00
parent dc282e8d37
commit b29bb6026f
3 changed files with 74 additions and 0 deletions

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 DetectiveToken extends TokenImpl {
public DetectiveToken() {
super("Detective Token", "2/2 white and blue Detective creature token");
cardType.add(CardType.CREATURE);
color.setWhite(true);
color.setBlue(true);
subtype.add(SubType.DETECTIVE);
power = new MageInt(2);
toughness = new MageInt(2);
}
private DetectiveToken(final DetectiveToken token) {
super(token);
}
public DetectiveToken copy() {
return new DetectiveToken(this);
}
}