DL Hunt

Originally an example script. Currently a short puzzle script. Script by angelatheist

// Preset Scenario
void configGame()
{
	setMapSeed(12345);
	addAIPlayer("Evil Fish","Crypt Doctor",0);
   dontNeedDecks();
}

void beforeStart()
{
	Player aiPlayer=getAIPlayer(0); 
	Player HumanPlayer=getHumanPlayer(0); 

	setTerrain(createLocation(6,6),3,2);
	createEntity("Earthworks",6,6,aiPlayer);
	createEntity("Dwarven Hall",8,6,aiPlayer);
	createEntity("Gully Slingers",6,5,aiPlayer);
	createEntity("Gully Slingers",6,7,aiPlayer);
	createEntity("Axe Captain",7,5,aiPlayer);
	createEntity("Axe Captain",7,6,aiPlayer);
	createEntity("Flux Well",6,6,aiPlayer);
	createEntity("Attrition",-1,-1,aiPlayer);

	while(aiPlayer.deckSize()>0){
	   aiPlayer.removeDeckCard(0);
	}

	while(HumanPlayer.deckSize()>0){
	   HumanPlayer.removeDeckCard(0);
	}

	HumanPlayer.addToHand("Graveyard");
	HumanPlayer.addToHand("Red Imp");
	HumanPlayer.addToHand("Red Imp");
	HumanPlayer.addToHand("Black Plague");
	HumanPlayer.addToHand("Crypt Doctor");
	HumanPlayer.addToHand("Hypnotic Banshee");
	HumanPlayer.addToHand("Nether Plasma");

	HumanPlayer.addGlory(18);
}