mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[CLB] Implemented Altar of Bhaal
This commit is contained in:
parent
062e38a08f
commit
1cf297a15c
5 changed files with 60 additions and 9 deletions
|
|
@ -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.Skeleton41Token;
|
||||
import mage.game.permanent.token.SkeletonMenaceToken;
|
||||
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 Skeleton41Token()));
|
||||
DungeonRoom catacombs = new DungeonRoom("Catacombs", new CreateTokenEffect(new SkeletonMenaceToken()));
|
||||
|
||||
DungeonRoom throneOfTheDeadThree = new DungeonRoom("Throne of the Dead Three", new ThroneOfTheDeadThreeEffect());
|
||||
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@ import java.util.Arrays;
|
|||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Skeleton41Token extends TokenImpl {
|
||||
public final class SkeletonMenaceToken extends TokenImpl {
|
||||
|
||||
public Skeleton41Token() {
|
||||
public SkeletonMenaceToken() {
|
||||
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 Skeleton41Token extends TokenImpl {
|
|||
availableImageSetCodes = Arrays.asList("CLB");
|
||||
}
|
||||
|
||||
public Skeleton41Token(final Skeleton41Token token) {
|
||||
public SkeletonMenaceToken(final SkeletonMenaceToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public Skeleton41Token copy() {
|
||||
return new Skeleton41Token(this);
|
||||
public SkeletonMenaceToken copy() {
|
||||
return new SkeletonMenaceToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue