44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Python
		
	
	
	
# This file is auto generated. More info: https://github.com/Daivuk/apdoom
 | 
						|
 | 
						|
from typing import List
 | 
						|
 | 
						|
 | 
						|
map_names: List[str] = [
 | 
						|
    'Hangar (E1M1)',
 | 
						|
    'Nuclear Plant (E1M2)',
 | 
						|
    'Toxin Refinery (E1M3)',
 | 
						|
    'Command Control (E1M4)',
 | 
						|
    'Phobos Lab (E1M5)',
 | 
						|
    'Central Processing (E1M6)',
 | 
						|
    'Computer Station (E1M7)',
 | 
						|
    'Phobos Anomaly (E1M8)',
 | 
						|
    'Military Base (E1M9)',
 | 
						|
    'Deimos Anomaly (E2M1)',
 | 
						|
    'Containment Area (E2M2)',
 | 
						|
    'Refinery (E2M3)',
 | 
						|
    'Deimos Lab (E2M4)',
 | 
						|
    'Command Center (E2M5)',
 | 
						|
    'Halls of the Damned (E2M6)',
 | 
						|
    'Spawning Vats (E2M7)',
 | 
						|
    'Tower of Babel (E2M8)',
 | 
						|
    'Fortress of Mystery (E2M9)',
 | 
						|
    'Hell Keep (E3M1)',
 | 
						|
    'Slough of Despair (E3M2)',
 | 
						|
    'Pandemonium (E3M3)',
 | 
						|
    'House of Pain (E3M4)',
 | 
						|
    'Unholy Cathedral (E3M5)',
 | 
						|
    'Mt. Erebus (E3M6)',
 | 
						|
    'Limbo (E3M7)',
 | 
						|
    'Dis (E3M8)',
 | 
						|
    'Warrens (E3M9)',
 | 
						|
    'Hell Beneath (E4M1)',
 | 
						|
    'Perfect Hatred (E4M2)',
 | 
						|
    'Sever the Wicked (E4M3)',
 | 
						|
    'Unruly Evil (E4M4)',
 | 
						|
    'They Will Repent (E4M5)',
 | 
						|
    'Against Thee Wickedly (E4M6)',
 | 
						|
    'And Hell Followed (E4M7)',
 | 
						|
    'Unto the Cruel (E4M8)',
 | 
						|
    'Fear (E4M9)',
 | 
						|
]
 |