53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # This file is auto generated. More info: https://github.com/Daivuk/apdoom
 | |
| 
 | |
| from typing import List
 | |
| 
 | |
| 
 | |
| map_names: List[str] = [
 | |
|     'The Docks (E1M1)',
 | |
|     'The Dungeons (E1M2)',
 | |
|     'The Gatehouse (E1M3)',
 | |
|     'The Guard Tower (E1M4)',
 | |
|     'The Citadel (E1M5)',
 | |
|     'The Cathedral (E1M6)',
 | |
|     'The Crypts (E1M7)',
 | |
|     "Hell's Maw (E1M8)",
 | |
|     'The Graveyard (E1M9)',
 | |
|     'The Crater (E2M1)',
 | |
|     'The Lava Pits (E2M2)',
 | |
|     'The River of Fire (E2M3)',
 | |
|     'The Ice Grotto (E2M4)',
 | |
|     'The Catacombs (E2M5)',
 | |
|     'The Labyrinth (E2M6)',
 | |
|     'The Great Hall (E2M7)',
 | |
|     'The Portals of Chaos (E2M8)',
 | |
|     'The Glacier (E2M9)',
 | |
|     'The Storehouse (E3M1)',
 | |
|     'The Cesspool (E3M2)',
 | |
|     'The Confluence (E3M3)',
 | |
|     'The Azure Fortress (E3M4)',
 | |
|     'The Ophidian Lair (E3M5)',
 | |
|     'The Halls of Fear (E3M6)',
 | |
|     'The Chasm (E3M7)',
 | |
|     "D'Sparil'S Keep (E3M8)",
 | |
|     'The Aquifier (E3M9)',
 | |
|     'Catafalque (E4M1)',
 | |
|     'Blockhouse (E4M2)',
 | |
|     'Ambulatory (E4M3)',
 | |
|     'Sepulcher (E4M4)',
 | |
|     'Great Stair (E4M5)',
 | |
|     'Halls of the Apostate (E4M6)',
 | |
|     'Ramparts of Perdition (E4M7)',
 | |
|     'Shattered Bridge (E4M8)',
 | |
|     'Mausoleum (E4M9)',
 | |
|     'Ochre Cliffs (E5M1)',
 | |
|     'Rapids (E5M2)',
 | |
|     'Quay (E5M3)',
 | |
|     'Courtyard (E5M4)',
 | |
|     'Hydratyr (E5M5)',
 | |
|     'Colonnade (E5M6)',
 | |
|     'Foetid Manse (E5M7)',
 | |
|     'Field of Judgement (E5M8)',
 | |
|     "Skein of D'Sparil (E5M9)",
 | |
| ]
 | 
