[FIN] Implement Rufus Shinra

This commit is contained in:
theelk801 2025-05-27 15:20:44 -04:00
parent 1cae205151
commit eeb96d1411
3 changed files with 93 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 mage.constants.SuperType;
/**
* @author TheElk801
*/
public final class DarkstarToken extends TokenImpl {
public DarkstarToken() {
super("Darkstar", "Darkstar, a legendary 2/2 white and black Dog creature token");
supertype.add(SuperType.LEGENDARY);
cardType.add(CardType.CREATURE);
color.setWhite(true);
color.setBlack(true);
subtype.add(SubType.DOG);
power = new MageInt(2);
toughness = new MageInt(2);
}
private DarkstarToken(final DarkstarToken token) {
super(token);
}
@Override
public DarkstarToken copy() {
return new DarkstarToken(this);
}
}