24 lines
529 B
Python
24 lines
529 B
Python
from BaseClasses import Location
|
|
import typing
|
|
|
|
class RiskOfRainLocation(Location):
|
|
game: str = "Risk of Rain 2"
|
|
|
|
# 37000 - 38000
|
|
base_location_table = {
|
|
"Victory": 37999,
|
|
"Level One": 37001,
|
|
"Level Two": 37002,
|
|
"Level Three": 37003,
|
|
"Level Four": 37004,
|
|
"Level Five": 37005
|
|
}
|
|
|
|
item_pickups = {
|
|
f"ItemPickup{i}": 37005+i for i in range(1, 51)
|
|
}
|
|
|
|
location_table = {**base_location_table, **item_pickups}
|
|
|
|
lookup_id_to_name: typing.Dict[int, str] = {id: name for name, id in location_table.items()}
|