mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
lufia2ac: coop support + update AP version number to 0.4.2 (#1868)
* Core: typing for async_start * CommonClient: add a framework for clients to subscribe to data storage key notifications * Core: update version to 0.4.2 * lufia2ac: coop support
This commit is contained in:
@@ -1,9 +1,15 @@
|
||||
from typing import Dict
|
||||
|
||||
from BaseClasses import Location
|
||||
from .Options import BlueChestCount
|
||||
|
||||
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)}
|
||||
|
||||
l2ac_location_name_to_id: Dict[str, int] = {
|
||||
**{f"Blue chest {i + 1}": (start_id + i) for i in range(BlueChestCount.range_end + 7 + 6)},
|
||||
**{f"Iris treasure {i + 1}": (start_id + 0x039C + i) for i in range(9)},
|
||||
"Boss": start_id + 0x01C2,
|
||||
}
|
||||
|
||||
|
||||
class L2ACLocation(Location):
|
||||
|
Reference in New Issue
Block a user