[CLB] fixed Undercity skeleton token

This commit is contained in:
Evan Kranzler 2022-05-18 09:56:51 -04:00
parent e3acfa4344
commit a6e231d509
2 changed files with 37 additions and 2 deletions

View file

@ -22,8 +22,8 @@ import mage.game.Game;
import mage.game.command.Dungeon;
import mage.game.command.DungeonRoom;
import mage.game.permanent.Permanent;
import mage.game.permanent.token.SkeletonToken;
import mage.game.permanent.token.TreasureToken;
import mage.game.permanent.token.UndercitySkeletonToken;
import mage.players.Player;
import mage.target.TargetPlayer;
import mage.target.common.TargetCardInLibrary;
@ -65,7 +65,7 @@ public class UndercityDungeon extends Dungeon {
DungeonRoom archives = new DungeonRoom("Archives", new DrawCardSourceControllerEffect(1));
DungeonRoom catacombs = new DungeonRoom("Catacombs", new CreateTokenEffect(new SkeletonToken()));
DungeonRoom catacombs = new DungeonRoom("Catacombs", new CreateTokenEffect(new UndercitySkeletonToken()));
DungeonRoom throneOfTheDeadThree = new DungeonRoom("Throne of the Dead Three", new ThroneOfTheDeadThreeEffect());

View file

@ -0,0 +1,35 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.MenaceAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class UndercitySkeletonToken extends TokenImpl {
public UndercitySkeletonToken() {
super("Skeleton Token", "4/1 black Skeleton creature token with menace");
cardType.add(CardType.CREATURE);
this.subtype.add(SubType.SKELETON);
color.setBlack(true);
power = new MageInt(4);
toughness = new MageInt(1);
addAbility(new MenaceAbility());
availableImageSetCodes = Arrays.asList("CLB");
}
public UndercitySkeletonToken(final UndercitySkeletonToken token) {
super(token);
}
public UndercitySkeletonToken copy() {
return new UndercitySkeletonToken(this);
}
}