LttP: when generating hint tiles, no longer consider Single Arrow as useful, but do consider all varieties of Bow. Additionally, don't create hints for Universal Small Keys

This commit is contained in:
Fabian Dill
2022-02-03 10:41:31 +01:00
parent 29ba1d4809
commit 60379d9ae6
2 changed files with 15 additions and 88 deletions

View File

@@ -42,6 +42,11 @@ class DungeonItem(Choice):
def in_dungeon(self):
return self.value in {0, 1}
@property
def hints_useful(self):
"""Indicates if hints for this Item are useful in any way."""
return self.value in {1, 2, 3, 4}
class bigkey_shuffle(DungeonItem):
"""Big Key Placement"""