Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix secret pickups in TR3R HSC #738

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
]
}
Loading