summaryrefslogtreecommitdiff
path: root/vamp_stuff/Modification_Files/NPC/v_npc_responds/Wastelands_Outskirts/h_wrs_responses.json
blob: 8736bb301fad8e87164458a9cfd9890d758d6098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[
  {
    "id": "TALK_HUMAN_RS_talk",
    "type": "talk_topic",
    "dynamic_line": {
      "u_has_trait": "wrsgo",
      "yes": {
        "u_has_trait": "wrsgoing",
        "yes": {
          "u_has_trait": "wrsdone",
          "yes": "Bye now...",
          "no": "Don't waste your time talking to me at this point, just focus on the road!"
        },
        "no": "Are you going to bring me there now?"
      },
      "no": "Well hi there? Its been a while since I see a living human walking in this damned world!"
    },
    "responses": [
      {
        "text": "We need your help in operating a radio tower.",
        "topic": "TALK_HUMAN_RS_talked",
        "condition": { "not": { "u_has_trait": "wrsgo" } }
      },
      {
        "text": "Yes. I will.",
        "topic": "TALK_MISSION_LIST",
        "condition": {
          "and": [ { "u_has_trait": "wrsgo" }, { "not": { "u_has_trait": "wrsgoing" } }, { "not": { "u_has_trait": "wrsdone" } } ]
        }
      },
      {
        "text": "Okay! I'll do it!",
        "topic": "TALK_DONE",
        "condition": { "and": [ { "u_has_trait": "wrsgoing" }, { "not": { "u_has_trait": "wrsdone" } } ] }
      },
      {
        "text": "Bye.",
        "topic": "TALK_DONE",
        "effect": { "npc_change_class": "HUMAN_RADIOSPEC_WORKING" },
        "condition": { "u_has_trait": "wrsdone" }
      }
    ]
  },
  {
    "id": "TALK_HUMAN_RS_talked",
    "type": "talk_topic",
    "dynamic_line": "Radios are too simple to use, why'd would you want me to do it myself?",
    "responses": [
      { "text": "To ease the job?", "topic": "TALK_HUMAN_RS_nvm" },
      { "text": "Increase the efficiency of our radio?", "topic": "TALK_HUMAN_RS_nvm" },
      { "text": "Its a complicated thing for us...", "topic": "TALK_HUMAN_RS_nvm" }
    ]
  },
  {
    "id": "TALK_HUMAN_RS_nvm",
    "type": "talk_topic",
    "dynamic_line": {
      "u_has_trait": "wrsgo",
      "yes": "We better get going.",
      "no": "Forget it, I will come for as long as I gain benefits from doing this crap! Besides, I am grateful that you've came to pick me up."
    },
    "responses": [
      { "text": "Lets go!", "topic": "TALK_DONE", "condition": { "u_has_trait": "wrsgo" } },
      {
        "text": "Okay.",
        "topic": "TALK_MISSION_OFFER",
        "effect": { "u_add_trait": "wrsgo" },
        "condition": { "not": { "u_has_trait": "wrsgo" } }
      }
    ]
  }
]