TUNIC: Add prog + useful to some items #4066

This commit is contained in:
Scipio Wright
2024-10-22 20:30:31 -04:00
committed by GitHub
parent 05ec14e23c
commit 33daebef57
2 changed files with 160 additions and 154 deletions

View File

@@ -274,6 +274,12 @@ class TunicWorld(World):
if items_to_create[page] > 0:
tunic_items.append(self.create_item(page, ItemClassification.useful))
items_to_create[page] = 0
# if ice grapple logic is on, probably really want icebolt
elif self.options.ice_grappling:
page = "Pages 52-53 (Icebolt)"
if items_to_create[page] > 0:
tunic_items.append(self.create_item(page, ItemClassification.progression | ItemClassification.useful))
items_to_create[page] = 0
if self.options.maskless:
tunic_items.append(self.create_item("Scavenger Mask", ItemClassification.useful))