diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-07-19 07:25:25 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-07-19 07:25:25 -0700 |
commit | 2b41e3b7e1d22c4f230e78b725f17c0a9efd77dc (patch) | |
tree | 35396bdab69734348e23a66383ac718bfd60f01c /npcs/backgrounds.json | |
parent | Fix the tailored tuxedo being marked as made from kevlar instead of leather (diff) | |
download | cataclysm-dda-mod_battle-maid-redone-2b41e3b7e1d22c4f230e78b725f17c0a9efd77dc.tar.xz |
Add a background type for the maid npc
Diffstat (limited to 'npcs/backgrounds.json')
-rw-r--r-- | npcs/backgrounds.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/npcs/backgrounds.json b/npcs/backgrounds.json new file mode 100644 index 0000000..230de14 --- /dev/null +++ b/npcs/backgrounds.json @@ -0,0 +1,32 @@ +[ + { + "type": "mutation", + "id": "BGSS_MAID_KAWAII_1", + "name": { "str": "Survivor Story" }, + "points": 0, + "description": "This NPC could tell you about how they survived the Cataclysm", + "player_display": false, + "valid": false, + "purifiable": false, + "types": [ "BACKGROUND_SURVIVAL_STORY" ], + "flags": [ "BG_SURVIVAL_STORY" ] + }, + { + "id": "BGSS_MAID_KAWAII_1_STORY1", + "type": "talk_topic", + "dynamic_line": "My history? You mean before I served you? ...I'm sorry, but...", + "responses": [ { "text": "<done_conversation_section>", "topic": "TALK_FRIEND" }, { "text": "<end_talking>", "topic": "TALK_DONE" } ] + }, + { + "id": "TALK_FRIEND_CONVERSATION", + "type": "talk_topic", + "responses": [ + { + "text": "<BGSS_intro_question>", + "topic": "BGSS_MAID_KAWAII_1_STORY1", + "condition": { "npc_has_trait": "BGSS_MAID_KAWAII_1" }, + "switch": true + } + ] + } +] |