Skip to content

DOOM 1993: implement new game #1759

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions worlds/doom_1993/Events.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This file is auto generated. More info: https://github.com/Daivuk/apdoom

from typing import List


events: List[str] = [
'Hangar (E1M1) - Complete',
'Nuclear Plant (E1M2) - Complete',
'Toxin Refinery (E1M3) - Complete',
'Command Control (E1M4) - Complete',
'Phobos Lab (E1M5) - Complete',
'Central Processing (E1M6) - Complete',
'Computer Station (E1M7) - Complete',
'Phobos Anomaly (E1M8) - Complete',
'Military Base (E1M9) - Complete',
'Deimos Anomaly (E2M1) - Complete',
'Containment Area (E2M2) - Complete',
'Refinery (E2M3) - Complete',
'Deimos Lab (E2M4) - Complete',
'Command Center (E2M5) - Complete',
'Halls of the Damned (E2M6) - Complete',
'Spawning Vats (E2M7) - Complete',
'Tower of Babel (E2M8) - Complete',
'Fortress of Mystery (E2M9) - Complete',
'Hell Keep (E3M1) - Complete',
'Slough of Despair (E3M2) - Complete',
'Pandemonium (E3M3) - Complete',
'House of Pain (E3M4) - Complete',
'Unholy Cathedral (E3M5) - Complete',
'Mt. Erebus (E3M6) - Complete',
'Limbo (E3M7) - Complete',
'Dis (E3M8) - Complete',
'Warrens (E3M9) - Complete',
]
Loading