mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
11 lines
258 B
Python
11 lines
258 B
Python
![]() |
from typing import Dict
|
||
|
|
||
|
from BaseClasses import Location
|
||
|
|
||
|
start_id: int = 0xAC0000
|
||
|
l2ac_location_name_to_id: Dict[str, int] = {f"Blue chest {i + 1}": (start_id + i) for i in range(88)}
|
||
|
|
||
|
|
||
|
class L2ACLocation(Location):
|
||
|
game: str = "Lufia II Ancient Cave"
|