TUNIC: Add Shield to Ladder Storage logic (#4146)

This commit is contained in:
Scipio Wright
2024-12-08 19:58:49 -05:00
committed by GitHub
parent a948697f3a
commit 5b4d7c7526
3 changed files with 8 additions and 2 deletions

View File

@@ -286,6 +286,11 @@ class TunicWorld(World):
tunic_items.append(self.create_item(page, ItemClassification.progression | ItemClassification.useful))
items_to_create[page] = 0
# logically relevant if you have ladder storage enabled
if self.options.ladder_storage and not self.options.ladder_storage_without_items:
tunic_items.append(self.create_item("Shield", ItemClassification.progression))
items_to_create["Shield"] = 0
if self.options.maskless:
tunic_items.append(self.create_item("Scavenger Mask", ItemClassification.useful))
items_to_create["Scavenger Mask"] = 0