Skip to content

Commit

Permalink
TUNIC: Add prog + useful to some items #4066
Browse files Browse the repository at this point in the history
  • Loading branch information
ScipioWright authored Oct 23, 2024
1 parent 05ec14e commit 33daebe
Show file tree
Hide file tree
Showing 2 changed files with 160 additions and 154 deletions.
6 changes: 6 additions & 0 deletions worlds/tunic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,12 @@ def remove_filler(amount: int) -> None:
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))
Expand Down
Loading

0 comments on commit 33daebe

Please sign in to comment.