Skip to content

Commit

Permalink
Merge pull request #29 from TheTrackerCouncil/hint-spoiler-sass
Browse files Browse the repository at this point in the history
Add already enabled/disabled lines
  • Loading branch information
Vivelin authored Nov 10, 2024
2 parents bdd556b + 181252c commit 89eac2f
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 1 deletion.
12 changes: 12 additions & 0 deletions Profiles/Default/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ Hints:
- Text: Toggled hints on.
DisabledHints:
- Text: Toggled hints off.
AlreadyEnabledHints:
- Text: Hints are turned on already.
- Text: Hints are already turned on.
AlreadyDisabledHints:
- Text: Hints are disabled already.
- Text: Hints are already disabled.
PromptEnableItemHints:
- Text: If you want me to give a hint, say 'Hey tracker, enable hints'.
PromptEnableLocationHints:
Expand Down Expand Up @@ -227,6 +233,12 @@ Spoilers:
- Text: Toggled spoilers on.
DisabledSpoilers:
- Text: Toggled spoilers off.
AlreadyEnabledSpoilers:
- Text: Spoilers are turned on already.
- Text: Spoilers are already turned on.
AlreadyDisabledSpoilers:
- Text: Spoilers are disabled already.
- Text: Spoilers are already disabled.
PromptEnableItemSpoilers:
- Text: If you want me to spoil it, say 'Hey tracker, enable spoilers'.
PromptEnableLocationSpoilers:
Expand Down
17 changes: 16 additions & 1 deletion Profiles/Sassy/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,14 @@ Hints:
- Text: I'll stop giving you hints.
- Text: I can no longer assist
- Text: Fine. Figure it out yourself.
- Text: Good. One less thing that I have to do.
- Text: Good. One less thing that I have to do.
AlreadyEnabledHints:
- Text: Wasn't I already helping you?
- Text: Hints are turned on already. Is that not enough for you? I could always just ruin the seed for you by just telling you.
AlreadyDisabledHints:
- Text: Oh please, like I'd give you hints.
- Text: You really think I'd help you?
- Text: What hints?
PromptEnableItemHints:
- Text: If you want me to give a hint, say 'Hey tracker, enable hints'.
- Text: If you want me to give a hint, say 'Hey tracker, turn on hints'.
Expand Down Expand Up @@ -728,6 +735,14 @@ Spoilers:
- Text: Okay, no more spoilers for you then.
- Text: I won't give you anymore spoilers, but no one will forget you had to ask for help.
Weight: 0.2
AlreadyEnabledSpoilers:
- Text: What? Spoilers have been enabled this whole time.
- Text: What? Spoilers have been enabled this whole time, but I can't remember if I accidentally spoiled something or not. Maybe s kennedy should redline this seed just in case.
- Text: I've been giving you spoilers already.
- Text: I've been giving you spoilers already. Unless you accidentally turned them on and never realized it. Good thing I didn't mistake anything you said. Right? <break time='2s' /> Right?
AlreadyDisabledSpoilers:
- Text: Spoilers? I would never do such a thing. I delight in torturing you too much to help you.
- Text: Spoilers are disabled already. Why does it matter though? It's not like I would mishear things you say or anything.
PromptEnableItemSpoilers:
- Text: If you want me to spoil it, say 'Hey tracker, enable spoilers'.
- Text: If you want me to spoil it, say 'Hey tracker, turn on spoilers'.
Expand Down
4 changes: 4 additions & 0 deletions Profiles/Templates/responses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ Idle:
Hints:
EnabledHints:
DisabledHints:
AlreadyEnabledHints:
AlreadyDisabledHints:
PromptEnableItemHints:
PromptEnableLocationHints:
NoApplicableHints:
Expand Down Expand Up @@ -177,6 +179,8 @@ Hints:
Spoilers:
EnabledSpoilers:
DisabledSpoilers:
AlreadyEnabledSpoilers:
AlreadyDisabledSpoilers:
PromptEnableItemSpoilers:
PromptEnableLocationSpoilers:
TrackedAllItemsAlready:
Expand Down
44 changes: 44 additions & 0 deletions Schemas/responses.json
Original file line number Diff line number Diff line change
Expand Up @@ -1049,6 +1049,28 @@
}
]
},
"AlreadyEnabledHints": {
"description": "Gets the phrases to respond with when hints are turned on, and the user just said \"Enable hints\".",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
},
"AlreadyDisabledHints": {
"description": "Gets the phrases to respond with when hints are turned off, and the user just said \"Disable hints\".",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
},
"PromptEnableItemHints": {
"description": "Gets the phrases to respond with when asked about an item and hints are turned off.",
"oneOf": [
Expand Down Expand Up @@ -1507,6 +1529,28 @@
}
]
},
"AlreadyEnabledSpoilers": {
"description": "Gets the phrases to respond with when spoilers are turned on, and the user just said \"Enable spoilers\".",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
},
"AlreadyDisabledSpoilers": {
"description": "Gets the phrases to respond with when spoilers are turned off, and the user just said \"Disable spoilers\".",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/SchrodingersString"
}
]
},
"PromptEnableItemSpoilers": {
"description": "Gets the phrases to respond with when asked about an item and spoilers are disabled.",
"oneOf": [
Expand Down

0 comments on commit 89eac2f

Please sign in to comment.