Refactor: Add proper support for modifying and querying base P/T (#9409)

This commit is contained in:
Alex Vasile 2022-09-01 19:57:30 -04:00 committed by GitHub
parent d83eb41073
commit 07a142c9e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
415 changed files with 1844 additions and 2095 deletions

View file

@ -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);