Skip to content

Commit 7d67359

Browse files
qwintsflavelle
authored andcommitted
adds godtuner to prog and requires it for godhome flower quest manually (ArchipelagoMW#3402)
1 parent 124ecd3 commit 7d67359

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

worlds/hk/GodhomeData.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def set_godhome_rules(hk_world, hk_set_rule):
99
fn = partial(hk_set_rule, hk_world)
1010

1111
required_events = {
12-
"Godhome_Flower_Quest": lambda state: state.count('Defeated_Pantheon_5', player) and state.count('Room_Mansion[left1]', player) and state.count('Fungus3_49[right1]', player),
12+
"Godhome_Flower_Quest": lambda state: state.count('Defeated_Pantheon_5', player) and state.count('Room_Mansion[left1]', player) and state.count('Fungus3_49[right1]', player) and state.has('Godtuner', player),
1313

1414
"Defeated_Pantheon_5": lambda state: state.has('GG_Atrium_Roof', player) and state.has('WINGS', player) and (state.has('LEFTCLAW', player) or state.has('RIGHTCLAW', player)) and ((state.has('Defeated_Pantheon_1', player) and state.has('Defeated_Pantheon_2', player) and state.has('Defeated_Pantheon_3', player) and state.has('Defeated_Pantheon_4', player) and state.has('COMBAT[Radiance]', player))),
1515
"GG_Atrium_Roof": lambda state: state.has('GG_Atrium', player) and state.has('Hit_Pantheon_5_Unlock_Orb', player) and state.has('LEFTCLAW', player),

worlds/hk/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,8 @@ class HKItem(Item):
659659
def __init__(self, name, advancement, code, type: str, player: int = None):
660660
if name == "Mimic_Grub":
661661
classification = ItemClassification.trap
662+
elif name == "Godtuner":
663+
classification = ItemClassification.progression
662664
elif type in ("Grub", "DreamWarrior", "Root", "Egg", "Dreamer"):
663665
classification = ItemClassification.progression_skip_balancing
664666
elif type == "Charm" and name not in progression_charms:

0 commit comments

Comments
 (0)