Skip to content

Commit

Permalink
OoS: Small adjustments to rupee logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinopony committed Jul 9, 2024
1 parent 9d7431a commit 7ff8f8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions worlds/tloz_oos/data/Items.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@
'id': 0x2a
},
"Piece of Heart": {
'classification': ItemClassification.useful,
'classification': ItemClassification.filler,
'id': 0x2b,
'subid': 0x01
},
"Rare Peach Stone": {
'classification': ItemClassification.useful,
'classification': ItemClassification.filler,
'id': 0x2b,
'subid': 0x02
},
Expand Down
8 changes: 4 additions & 4 deletions worlds/tloz_oos/data/logic/OverworldLogic.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ def make_holodrum_logic(player: int):

["horon village", "horon village tree", False, lambda state: oos_can_harvest_tree(state, player, True)],

["horon village", "horon shop", False, lambda state: oos_has_rupees(state, player, 200)],
["horon village", "advance shop", False, lambda state: oos_has_rupees(state, player, 400)],
["horon village", "horon shop", False, lambda state: oos_has_rupees(state, player, 150)],
["horon village", "advance shop", False, lambda state: oos_has_rupees(state, player, 300)],
["horon village", "member's shop", False, lambda state: all([
state.has("Member's Card", player),
oos_has_rupees(state, player, 600)
oos_has_rupees(state, player, 450)
])],

# WESTERN COAST ##############################################################################################
Expand Down Expand Up @@ -611,7 +611,7 @@ def make_holodrum_logic(player: int):
]),
state.has("Mushroom", player)
])],
["syrup trade", "syrup shop", False, lambda state: oos_has_rupees(state, player, 800)],
["syrup trade", "syrup shop", False, lambda state: oos_has_rupees(state, player, 600)],

# Use Dimitri to get the tree seeds, using dimitri to get seeds being medium difficulty
["sunken city dimitri", "sunken city tree", False,lambda state: all([
Expand Down

0 comments on commit 7ff8f8e

Please sign in to comment.