[CLB] Implemented Gut, True Soul Zealot

This commit is contained in:
Evan Kranzler 2022-05-24 21:23:23 -04:00
parent ddd68baf16
commit b6bf6aaf49
4 changed files with 85 additions and 7 deletions

View file

@ -23,7 +23,7 @@ import mage.game.command.Dungeon;
import mage.game.command.DungeonRoom;
import mage.game.permanent.Permanent;
import mage.game.permanent.token.TreasureToken;
import mage.game.permanent.token.UndercitySkeletonToken;
import mage.game.permanent.token.Skeleton41Token;
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 UndercitySkeletonToken()));
DungeonRoom catacombs = new DungeonRoom("Catacombs", new CreateTokenEffect(new Skeleton41Token()));
DungeonRoom throneOfTheDeadThree = new DungeonRoom("Throne of the Dead Three", new ThroneOfTheDeadThreeEffect());

View file

@ -10,9 +10,9 @@ import java.util.Arrays;
/**
* @author TheElk801
*/
public final class UndercitySkeletonToken extends TokenImpl {
public final class Skeleton41Token extends TokenImpl {
public UndercitySkeletonToken() {
public Skeleton41Token() {
super("Skeleton Token", "4/1 black Skeleton creature token with menace");
cardType.add(CardType.CREATURE);
this.subtype.add(SubType.SKELETON);
@ -25,11 +25,11 @@ public final class UndercitySkeletonToken extends TokenImpl {
availableImageSetCodes = Arrays.asList("CLB");
}
public UndercitySkeletonToken(final UndercitySkeletonToken token) {
public Skeleton41Token(final Skeleton41Token token) {
super(token);
}
public UndercitySkeletonToken copy() {
return new UndercitySkeletonToken(this);
public Skeleton41Token copy() {
return new Skeleton41Token(this);
}
}