foul-magics/Mage/src/main/java/mage/game/permanent/token/StitchersApprenticeHomunculusToken.java
PurpleCrowbar 80f6ceccff
Add token images for several sets (#8873)
* Added support for and assigned UMA token images

* Added Scryfall token download links for MMA

* Added Scryfall token download links for SHM

* Fixed last commit and Oona token names

* Added support for and assigned NEO token images

* Added support for and assigned NEC token images

* Added support for and assigned SLD token images

* Added support for and assigned 2XM token images

* Fixed Tuktuk and some naming inconsistencies

* Fixed WalkerOfTheGroveToken's available image set codes

* Fixed WalkerOfTheGroveToken's available image set codes

* Fixed tokens with same names not displaying correctly
2022-04-26 18:34:21 +04:00

34 lines
860 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import java.util.Arrays;
/**
*
* @author spjspj
*/
public final class StitchersApprenticeHomunculusToken extends TokenImpl {
public StitchersApprenticeHomunculusToken() {
super("Homunculus Token", "2/2 blue Homunculus creature");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.HOMUNCULUS);
power = new MageInt(2);
toughness = new MageInt(2);
availableImageSetCodes = Arrays.asList("UMA");
}
public StitchersApprenticeHomunculusToken(final StitchersApprenticeHomunculusToken token) {
super(token);
}
public StitchersApprenticeHomunculusToken copy() {
return new StitchersApprenticeHomunculusToken(this);
}
}