Part 1 of Hint Improvement

This causes items to use clear, specific names instead of the pedestal style ambiguous names. This also randomizes the order of the two items listed in the hints for Mire left and Swamp left. Part 2 is going to be a substantial number of changes/improvements to location names.
This commit is contained in:
AmazingAmpharos
2019-04-08 20:11:33 -05:00
committed by GitHub
parent a89c01f917
commit 62df55242a
3 changed files with 170 additions and 162 deletions

View File

@@ -778,7 +778,7 @@ class Location(object):
class Item(object):
def __init__(self, name='', advancement=False, priority=False, type=None, code=None, pedestal_hint=None, pedestal_credit=None, sickkid_credit=None, zora_credit=None, witch_credit=None, fluteboy_credit=None):
def __init__(self, name='', advancement=False, priority=False, type=None, code=None, pedestal_hint=None, pedestal_credit=None, sickkid_credit=None, zora_credit=None, witch_credit=None, fluteboy_credit=None, hint_text=None):
self.name = name
self.advancement = advancement
self.priority = priority
@@ -789,6 +789,7 @@ class Item(object):
self.zora_credit_text = zora_credit
self.magicshop_credit_text = witch_credit
self.fluteboy_credit_text = fluteboy_credit
self.hint_text = hint_text
self.code = code
self.location = None