-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
start moving prompts into data files
- Loading branch information
Showing
20 changed files
with
983 additions
and
328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
prompts: | ||
discord_help: | | ||
**Commands:** | ||
- `!help` - Show this help message | ||
- `!{{ bot_name }}` - Show the active world | ||
- `!join <character>` - Join the game as the specified character | ||
- `!leave` - Leave the game | ||
discord_join_error_none: You must specify a character! | ||
discord_join_error_not_found: Character {{ character }} was not found! | ||
discord_join_error_taken: Someone is already playing as {{ character }}! | ||
discord_join_result: | | ||
{{ event.client }} is now playing as {{ event.character }}! | ||
discord_join_title: | | ||
Player Joined | ||
discord_leave_error_none: You are not playing the game yet! | ||
discord_leave_result: | | ||
{{ event.client }} has left the game! {{ event.character }} is now being played by an LLM. | ||
discord_leave_title: | | ||
Player Left | ||
discord_user_new: | | ||
You are not playing the game yet! Use `!join <character>` to start playing. | ||
discord_world_active: | | ||
Hello! Welcome to {{ bot_name }}. The active world is `{{ world.name }}` (theme: {{ world.theme }}) | ||
discord_world_none: Hello! Welcome to {{ bot_name }}. There is no active world yet. |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
prompts: | ||
action_accept_quest_error_none: No quests are available at the moment. | ||
action_accept_quest_error_name: | | ||
{{character}} does not have a quest named "{{quest_name}}". | ||
action_accept_quest_error_room: | | ||
{{character}} is not in the room. | ||
action_accept_quest_result: | | ||
You have started the quest "{{quest_name}}". | ||
action_submit_quest_error_active: | | ||
You do not have any active quests. | ||
action_submit_quest_error_none: No quests are available at the moment. | ||
action_submit_quest_error_name: | | ||
{{character}} does not have a quest named "{{quest_name}}". | ||
action_submit_quest_error_room: | | ||
{{character}} is not in the room. | ||
action_submit_quest_result: | | ||
You have completed the quest "{{quest_name}}". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.