mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEC] Implemented Chishiro, the Shattered Blade
This commit is contained in:
parent
0909ecf6c4
commit
c77459b7a0
3 changed files with 96 additions and 0 deletions
|
|
@ -0,0 +1,28 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SpiritRedToken extends TokenImpl {
|
||||
|
||||
public SpiritRedToken() {
|
||||
super("Spirit token", "2/2 red Spirit creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.SPIRIT);
|
||||
color.setRed(true);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
public SpiritRedToken(final SpiritRedToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public SpiritRedToken copy() {
|
||||
return new SpiritRedToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue