From 5bf3de45f43ce5dd1e57df9dfd2ee549f0047c1a Mon Sep 17 00:00:00 2001 From: Bryce Wilson Date: Sat, 30 Sep 2023 03:32:44 -0700 Subject: [PATCH] DS3: Add cinders item group (#2226) --- worlds/dark_souls_3/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/worlds/dark_souls_3/__init__.py b/worlds/dark_souls_3/__init__.py index b78ff054..195d3198 100644 --- a/worlds/dark_souls_3/__init__.py +++ b/worlds/dark_souls_3/__init__.py @@ -52,6 +52,14 @@ class DarkSouls3World(World): required_client_version = (0, 4, 2) item_name_to_id = DarkSouls3Item.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):