DS3: Add cinders item group (#2226)

This commit is contained in:
Bryce Wilson 2023-09-30 03:32:44 -07:00 committed by GitHub
parent f33babc420
commit 5bf3de45f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -52,6 +52,14 @@ class DarkSouls3World(World):
required_client_version = (0, 4, 2) required_client_version = (0, 4, 2)
item_name_to_id = DarkSouls3Item.get_name_to_id() item_name_to_id = DarkSouls3Item.get_name_to_id()
location_name_to_id = DarkSouls3Location.get_name_to_id() location_name_to_id = DarkSouls3Location.get_name_to_id()
item_name_groups = {
"Cinders": {
"Cinders of a Lord - Abyss Watcher",
"Cinders of a Lord - Aldrich",
"Cinders of a Lord - Yhorm the Giant",
"Cinders of a Lord - Lothric Prince"
}
}
def __init__(self, multiworld: MultiWorld, player: int): def __init__(self, multiworld: MultiWorld, player: int):