mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
[NEC] Implemented Go-Shintai of Life's Origin
This commit is contained in:
parent
8d8e2017e6
commit
8bdfff89d0
3 changed files with 106 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ShrineToken extends TokenImpl {
|
||||
|
||||
public ShrineToken() {
|
||||
super("Spirit", "1/1 colorless Shrine enchantment creature token");
|
||||
cardType.add(CardType.ENCHANTMENT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.SHRINE);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("NEC");
|
||||
}
|
||||
|
||||
public ShrineToken(final ShrineToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ShrineToken copy() {
|
||||
return new ShrineToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue