LttP: Rename Shop Slot 1, 2, 3 to Shop Slot Left, Center, Right
General: Move generic IDs from LttP to new Generic World Generate: ensure thread errors are collected before data from their completion may be referenced in playthrough/spoiler
This commit is contained in:
@@ -1,6 +1,20 @@
|
||||
from typing import NamedTuple, Union
|
||||
import logging
|
||||
|
||||
from ..AutoWorld import World
|
||||
|
||||
|
||||
class GenericWorld(World):
|
||||
game = "Archipelago"
|
||||
topology_present = False
|
||||
item_name_to_id = {
|
||||
"Nothing": -1
|
||||
}
|
||||
location_name_to_id = {
|
||||
"Cheat Console" : -1,
|
||||
"Server": -2
|
||||
}
|
||||
hidden = True
|
||||
|
||||
class PlandoItem(NamedTuple):
|
||||
item: str
|
||||
|
||||
Reference in New Issue
Block a user