Files
Grinch-AP/worlds/ror2/Locations.py

14 lines
290 B
Python
Raw Normal View History

from typing import Dict
2021-08-29 14:02:02 -04:00
from BaseClasses import Location
from .Options import TotalLocations
2021-08-29 14:02:02 -04:00
class RiskOfRainLocation(Location):
game: str = "Risk of Rain 2"
# 37006 - 37506
item_pickups: Dict[str, int] = {
f"ItemPickup{i+1}": 37000+i for i in range(TotalLocations.range_end)
2021-08-29 14:02:02 -04:00
}