Fix Monkey Cage, fix Pongify ape's images, remove some non-token sets from available token sets

This commit is contained in:
PurpleCrowbar 2023-05-02 21:04:57 +01:00
parent 3986196aa4
commit 171f0a238b
6 changed files with 42 additions and 66 deletions

View file

@ -14,14 +14,14 @@ import java.util.Arrays;
public final class ApeToken extends TokenImpl {
public ApeToken() {
super("Ape Token", "2/2 green Ape creature token");
super("Ape Token", "3/3 green Ape creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.APE);
power = new MageInt(2);
toughness = new MageInt(2);
power = new MageInt(3);
toughness = new MageInt(3);
availableImageSetCodes = Arrays.asList("2XM", "TSR", "C14");
availableImageSetCodes = Arrays.asList("C14", "2XM", "TSR");
}
public ApeToken(final ApeToken token) {

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author spjspj
*/
public final class MonkeyToken extends TokenImpl {
public MonkeyToken() {
super("Monkey Token", "2/2 green Monkey creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.MONKEY);
power = new MageInt(2);
toughness = new MageInt(2);
}
public MonkeyToken(final MonkeyToken token) {
super(token);
}
public MonkeyToken copy() {
return new MonkeyToken(this);
}
}

View file

@ -1,34 +0,0 @@
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 PongifyApeToken extends TokenImpl {
public PongifyApeToken() {
super("Ape Token", "3/3 green Ape creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.APE);
power = new MageInt(3);
toughness = new MageInt(3);
availableImageSetCodes = Arrays.asList("C14", "PLC", "ULG", "UNH", "TSR");
}
public PongifyApeToken(final PongifyApeToken token) {
super(token);
}
public PongifyApeToken copy() {
return new PongifyApeToken(this);
}
}