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

Update LocationCleared spoiler to include location names #35

Merged
merged 1 commit into from
Dec 15, 2024
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
4 changes: 4 additions & 0 deletions Profiles/Default/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,10 @@ Spoilers:
- Text: I cannot find any more {0}.
LocationsCleared:
- Text: You already cleared every location that has {0}.
ItemLocationCleared:
- Text: '{0} was located at {1}.'
ItemLocationsCleared:
- Text: '{0} was located at {1}.'
LocationHasItem:
- Text: '{0} has {1}'
LocationHasItemOtherWorld:
Expand Down
10 changes: 8 additions & 2 deletions Profiles/Sassy/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -791,8 +791,14 @@ Spoilers:
- Text: I cannot find any {0}.
- Text: This seed doesn't have any {0}.
- Text: There are no {0} in this seed.
LocationsCleared:
- Text: You already cleared every location that has {0}.
ItemLocationCleared:
- Text: You already cleared the location, but {0} was located at {1}.
- Text: Why did you clear it if you wanted what was there? Oh well, {0} was at {1}."
Weight: 0.2
ItemLocationsCleared:
- Text: You already cleared every location, but {0} was located at {1}.
- Text: Why did you clear it if you wanted what was there? Oh well, {0} was at {1}."
Weight: 0.2
LocationHasItem:
- Text: '{0} has {1}.'
- Text: '{1} is there.'
Expand Down
2 changes: 2 additions & 0 deletions Profiles/Templates/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ Spoilers:
ItemNotFound:
ItemsNotFound:
LocationsCleared:
ItemLocationCleared:
ItemLocationsCleared:
LocationHasItem:
LocationHasItemOtherWorld:
LocationHasItemOwnWorld:
Expand Down
22 changes: 22 additions & 0 deletions Schemas/responses.json
Original file line number Diff line number Diff line change
Expand Up @@ -1727,6 +1727,28 @@
}
]
},
"ItemLocationCleared": {
"description": "Gets the phrases to respond with when an item's location has been cleared. \n{0} is a placeholder for the name of the item, with \"a\", \"an\" or \"the\" and 1 is a placeholder for the name of the location where the item was.",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
},
"ItemLocationsCleared": {
"description": "Gets the phrases to respond with when all locations that have the item are cleared. \n{0} is a placeholder for the name of the item, with \"a\", \"an\" or \"the\". \n{1} is a placeholder for a list of locations where the item was (up to 4).",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
},
"LocationHasItem": {
"description": "Gets the phrases that spoil the item that is at the requested location. \n{0} is a placeholder for the name of the location. \n{1} is a placeholder for the name of the item, with \"a\", \"an\" or \"the\".",
"oneOf": [
Expand Down
Loading