forked from External/mage
Refactor: Add proper support for modifying and querying base P/T (#9409)
This commit is contained in:
parent
d83eb41073
commit
07a142c9e8
415 changed files with 1844 additions and 2095 deletions
|
|
@ -3,6 +3,7 @@
|
|||
package mage.game.permanent.token;
|
||||
import java.util.Collections;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
|
|
@ -13,9 +14,10 @@ import mage.constants.SubType;
|
|||
public final class EwokToken extends TokenImpl {
|
||||
|
||||
public EwokToken() {
|
||||
super("Ewok Token", "1/1 green Ewok creature tokens", 1, 1);
|
||||
super("Ewok Token", "1/1 green Ewok creature tokens");
|
||||
availableImageSetCodes.addAll(Collections.singletonList("SWS"));
|
||||
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.EWOK);
|
||||
color.setGreen(true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue