mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
[MKM] Implement Museum Nightwatch
This commit is contained in:
parent
dc282e8d37
commit
b29bb6026f
3 changed files with 74 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue