Skip to content

Commit

Permalink
Fix secret pickups in TR3R HSC (#738)
Browse files Browse the repository at this point in the history
Resolves #737.
  • Loading branch information
lahm86 authored Aug 8, 2024
1 parent f7f5332 commit a2fe77f
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- fixed secrets on triangle portals not triggering in TR3 (#727)
- fixed secrets in 40 Fathoms all generally appearing too close to the start of the level (#729)
- fixed the Jade secret appearing before the Stone in TR2R Floating Islands (#729)
- fixed being unable to collect secret artefacts in TR3R High Security Compound (#737)
- improved data integrity checks when opening a folder and prior to randomization (#719)

## [V1.9.1](https://github.com/LostArtefacts/TR-Rando/compare/V1.9.0...V1.9.1) - 2024-06-23
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,46 @@
}
}
]
},
{
"Condition": {
"Comments": "Camera target 38 may have been repurposed as a secret, so make the trigger look at fan 46 instead.",
"ConditionType": 0,
"EntityIndex": 38,
"EntityType": 304
},
"OnFalse": [
{
"EMType": 66,
"EntityLocations": [
127
],
"Action": {
"Action": 6,
"Parameter": 46
}
}
]
},
{
"Condition": {
"Comments": "Camera target 198 may have been repurposed as a secret, so make the trigger look at door 232 instead.",
"ConditionType": 0,
"EntityIndex": 198,
"EntityType": 304
},
"OnFalse": [
{
"EMType": 66,
"EntityLocations": [
172
],
"Action": {
"Action": 6,
"Parameter": 232
}
}
]
}
],
"ConditionalOneOf": [],
Expand Down
16 changes: 15 additions & 1 deletion TRRandomizerCore/Resources/TR3/Items/repurposable_items.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
{
"SEWER.TR2": [ 2, 14, 15, 16, 94, 95, 96, 90, 91 ]
"COMPOUND.TR2": [
38,
198
],
"SEWER.TR2": [
2,
14,
15,
16,
94,
95,
96,
90,
91
]
}

0 comments on commit a2fe77f

Please sign in to comment.