-
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.
load prompts from globs, provide more information to prompt templates…
…, make pseudo-function parsing more flexible, add enter/exit messages to digest system
- Loading branch information
Showing
12 changed files
with
145 additions
and
44 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: | ||
# digest system | ||
digest_action_move_other_enter: | | ||
{{event.character | name}} entered the room through the {{source_portal | name}}. | ||
digest_action_move_other_exit: | | ||
{{event.character | name}} left the room, heading through the {{destination_portal | name}}. | ||
digest_action_move_self_enter: | | ||
You entered the room through the {{source_portal | name}}. | ||
digest_action_move_self_exit: | | ||
You left the room, heading through the {{destination_portal | name}}. | ||
digest_action_move: | | ||
{{event.character | name}} entered the room. | ||
digest_action_take: | | ||
{{event.character | name}} picked up the {{event.parameters[item]}}. | ||
digest_action_give: | | ||
{{event.character | name}} gave the {{event.parameters[item]}} to {{event.parameters[character]}}. | ||
digest_action_drop: | | ||
{{event.character | name}} dropped the {{event.parameters[item]}}. | ||
digest_action_ask: | | ||
{{event.character | name}} asked {{event.parameters[character]}} about something. | ||
digest_action_tell: | | ||
{{event.character | name}} told {{event.parameters[character]}} about something. | ||
digest_action_examine: | | ||
{{event.character | name}} examined the {{event.parameters[target]}}. |
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 |
---|---|---|
@@ -1,18 +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}}". | ||
{{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}}". | ||
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}}". | ||
{{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}}". | ||
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
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
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
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
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