[CLB] Implemented Altar of Bhaal

This commit is contained in:
Evan Kranzler 2022-05-27 06:30:37 -04:00
parent 062e38a08f
commit 1cf297a15c
5 changed files with 60 additions and 9 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.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());