mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
[FIN] Implement Rufus Shinra
This commit is contained in:
parent
1cae205151
commit
eeb96d1411
3 changed files with 93 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 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue