Skip to content

Commit

Permalink
Big poes misc hint
Browse files Browse the repository at this point in the history
  • Loading branch information
GSKirox committed Oct 22, 2024
1 parent c7b035d commit f58a481
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 7 deletions.
9 changes: 8 additions & 1 deletion HintList.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def tokens_required_by_settings(world: World) -> int:

# Hints required under certain settings
conditional_always: dict[str, Callable[[World], bool]] = {
'Market 10 Big Poes': lambda world: world.settings.big_poe_count > 3,
'Market 10 Big Poes': lambda world: world.settings.big_poe_count > 3 and 'big_poes' not in world.settings.misc_hints,
'Deku Theater Mask of Truth': lambda world: not world.settings.complete_mask_quest and 'Mask of Truth' not in world.settings.shuffle_child_trade,
'Song from Ocarina of Time': lambda world: stones_required_by_settings(world) < 2,
'HF Ocarina of Time Item': lambda world: stones_required_by_settings(world) < 2,
Expand Down Expand Up @@ -1894,6 +1894,13 @@ def tokens_required_by_settings(world: World) -> int:
'location_text': "Some frogs holding \x05\x42{item}\x05\x40 are looking at you from underwater...",
'location_fallback': "Some frogs are looking at you from underwater...",
},
'big_poes': {
'id': 0x70F5,
'hint_location': 'Market 10 Big Poes Hint',
'item_location': 'Market 10 Big Poes',
'location_text': "\x08Hey, young man. What's happening \x01today? Do you want\x01\x05\x41{item}\x05\x40?\x04\x1AIf you earn \x05\x41{poe_points} points\x05\x40, you'll\x01be a happy man! Heh heh.\x04\x08Your card now has \x05\x45\x1E\x01 \x05\x40points.\x01Come back again!\x01Heh heh heh!\x02",
'location_fallback': "\x08Hey, young man. What's happening \x01today? If you have a \x05\x41Poe\x05\x40, I will \x01buy it.\x04\x1AIf you earn \x05\x41{poe_points} points\x05\x40, you'll\x01be a happy man! Heh heh.\x04\x08Your card now has \x05\x45\x1E\x01 \x05\x40points.\x01Come back again!\x01Heh heh heh!\x02",
},
}

# Separate table for goal names to avoid duplicates in the hint table.
Expand Down
20 changes: 16 additions & 4 deletions Hints.py
Original file line number Diff line number Diff line change
Expand Up @@ -1813,11 +1813,23 @@ def build_misc_item_hints(world: World, messages: list[Message], allow_duplicate
def build_misc_location_hints(world: World, messages: list[Message]) -> None:
for hint_type, data in misc_location_hint_table.items():
text = data['location_fallback']
if hint_type in world.settings.misc_hints:
if hint_type in world.misc_hint_location_items:
item = world.misc_hint_location_items[hint_type]
if hint_type == 'big_poes':
# Special cased because we need to insert the big poes number.
item = world.misc_hint_location_items[hint_type]
poe_points = world.settings.big_poe_count * 100
if hint_type in world.settings.misc_hints:
text = data['location_text'].format(item=get_hint(get_item_generic_name(item),
world.settings.clearer_hints).text)
world.settings.clearer_hints).text, poe_points=poe_points)
else:
text = data['location_fallback'].format(poe_points=poe_points)
update_message_by_id(messages, data['id'], text)
return
else:
if hint_type in world.settings.misc_hints:
if hint_type in world.misc_hint_location_items:
item = world.misc_hint_location_items[hint_type]
text = data['location_text'].format(item=get_hint(get_item_generic_name(item),
world.settings.clearer_hints).text)

update_message_by_id(messages, data['id'], str(GossipText(text, ['Green'], prefix='')), 0x23)

Expand Down
1 change: 1 addition & 0 deletions LocationList.py
Original file line number Diff line number Diff line change
Expand Up @@ -2604,6 +2604,7 @@ def shop_address(shop_id: int, shelf_id: int) -> int:
("40 Skulltulas Reward Hint", ("Hint", None, None, None, None, None)),
("50 Skulltulas Reward Hint", ("Hint", None, None, None, None, None)),
("ZR Frogs Ocarina Minigame Hint", ("Hint", None, None, None, None, None)),
("Market 10 Big Poes Hint", ("Hint", None, None, None, None, None)),
("Ganondorf Hint", ("Hint", None, None, None, None, None)),
])

Expand Down
3 changes: 1 addition & 2 deletions Patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -1371,8 +1371,7 @@ def calculate_traded_flags(world):
poe_points = world.settings.big_poe_count * 100
rom.write_int16(0xEE69CE, poe_points)
# update dialogue
new_message = "\x08Hey, young man. What's happening \x01today? If you have a \x05\x41Poe\x05\x40, I will \x01buy it.\x04\x1AIf you earn \x05\x41%d points\x05\x40, you'll\x01be a happy man! Heh heh.\x04\x08Your card now has \x05\x45\x1E\x01 \x05\x40points.\x01Come back again!\x01Heh heh heh!\x02" % poe_points
update_message_by_id(messages, 0x70F5, new_message)
# 0x70F5 is done in build_misc_location_hints
if world.settings.big_poe_count != 10:
new_message = "\x1AOh, you brought a Poe today!\x04\x1AHmmmm!\x04\x1AVery interesting!\x01This is a \x05\x41Big Poe\x05\x40!\x04\x1AI'll buy it for \x05\x4150 Rupees\x05\x40.\x04On top of that, I'll put \x05\x41100\x01points \x05\x40on your card.\x04\x1AIf you earn \x05\x41%d points\x05\x40, you'll\x01be a happy man! Heh heh." % poe_points
update_message_by_id(messages, 0x70f7, new_message)
Expand Down
4 changes: 4 additions & 0 deletions SettingsList.py
Original file line number Diff line number Diff line change
Expand Up @@ -3486,6 +3486,7 @@ class SettingInfos:
'frogs2': 'Frogs Ocarina Game',
'mask_shop': 'Shuffled Mask Shop',
'unique_merchants': 'Unique Merchants',
'big_poes': 'Market Big Poes',
},
gui_tooltip = '''\
This setting adds some hints at locations
Expand Down Expand Up @@ -3539,6 +3540,9 @@ class SettingInfos:
If Shuffle Magic Beans is enabled, the Magic bean
salesman will tell what the reward is for buying
the 60 Rupees item.
The Poe collector will tell the reward for selling
him Big Poes.
''',
shared = True,
default = ['altar', 'ganondorf', 'warp_songs_and_owls'],
Expand Down
1 change: 1 addition & 0 deletions data/Glitched World/Overworld.json
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,7 @@
"Market 10 Big Poes": "
is_adult and
(Big_Poe or (Bottle_with_Big_Poe, big_poe_count))",
"Market 10 Big Poes Hint": "True",
"Market GS Guard House": "is_child"
}
},
Expand Down
1 change: 1 addition & 0 deletions data/World/Overworld.json
Original file line number Diff line number Diff line change
Expand Up @@ -1436,6 +1436,7 @@
"locations": {
"Market 10 Big Poes": "
is_adult and (Big_Poe or (Bottle_with_Big_Poe, big_poe_count))",
"Market 10 Big Poes Hint": "True",
"Market Guard House Child Crate 1": "is_child and can_break_crate",
"Market Guard House Child Crate 2": "is_child and can_break_crate",
"Market Guard House Child Crate 3": "is_child and can_break_crate",
Expand Down

0 comments on commit f58a481

Please sign in to comment.