1[
2  {
3    "type": "effect_type",
4    "id": "u_offered_marloss_meal",
5    "//": "This flag limits feast offers."
6  },
7  {
8    "type": "effect_type",
9    "id": "u_given_berry",
10    "//": "This flag limits given berries to one per 12h."
11  },
12  {
13    "type": "talk_topic",
14    "id": "TALK_MARLOSS_VOICE",
15    "dynamic_line": [
16      "Yes, friend?",
17      "Your travels be fruitful, friend.",
18      "May you find your peace, traveler.",
19      "We might have lost everything, but hope remains.",
20      "May the earth flourish beneath our paths.",
21      "Unity of spirit, of mind, and body…",
22      "Look for the bonds which define you, and act in accord."
23    ],
24    "responses": [
25      {
26        "text": "I don't know what kind of heresy you are spreading, but I'm putting an end to it!",
27        "topic": "TALK_DONE",
28        "condition": { "and": [ { "u_has_trait": "SPIRITUAL" }, { "not": { "u_has_trait_flag": "mycus" } } ] },
29        "effect": "hostile"
30      },
31      {
32        "text": "This place is dangerous, what are you doing here?",
33        "topic": "TALK_MARLOSS_VOICE_BANKET",
34        "condition": { "not": { "u_has_effect": "u_offered_marloss_meal" } },
35        "effect": { "u_add_effect": "u_offered_marloss_meal", "duration": "25920" }
36      },
37      { "text": "Who are you?", "topic": "TALK_MARLOSS_VOICE_A_PRIEST" },
38      { "text": "I gotta go.", "topic": "TALK_DONE" }
39    ]
40  },
41  {
42    "type": "talk_topic",
43    "id": "TALK_MARLOSS_VOICE_BANKET",
44    "dynamic_line": "Dangerous?  It may look different, but this land cares and provides for us.  We are celebrating with a feast, in fact.  Do you care to join us?",
45    "responses": [
46      { "text": "Well, sure.", "topic": "TALK_MARLOSS_VOICE_OFFER_BERRY" },
47      { "text": "I'd… rather not.", "topic": "TALK_MARLOSS_VOICE" },
48      { "text": "I'm sorry…  I have places to be.", "topic": "TALK_DONE" }
49    ]
50  },
51  {
52    "type": "talk_topic",
53    "id": "TALK_MARLOSS_VOICE_A_PRIEST",
54    "dynamic_line": "I'm a priest or guide of a sort.  I sing the hymns along my companions so that we may learn to live in unity, both with each other and with our ailing world.",
55    "responses": [
56      { "text": "Alright.", "topic": "TALK_MARLOSS_VOICE" },
57      {
58        "text": "Can I join you?",
59        "topic": "TALK_MARLOSS_VOICE_WITH_US",
60        "condition": { "u_has_trait_flag": "mycus" }
61      },
62      {
63        "text": "Understood.  Can I join you?",
64        "topic": "TALK_MARLOSS_VOICE_OFFER_BERRY",
65        "condition": { "and": [ { "not": { "u_has_trait_flag": "mycus" } }, { "not": { "u_has_effect": "u_given_berry" } } ] }
66      },
67      { "text": "Well, I gotta go.", "topic": "TALK_DONE" }
68    ]
69  },
70  {
71    "type": "talk_topic",
72    "id": "TALK_MARLOSS_VOICE_WITH_US",
73    "dynamic_line": "Oh, but you already have.",
74    "responses": [ { "text": "Yes… yes I have.", "topic": "TALK_DONE" } ]
75  },
76  {
77    "type": "talk_topic",
78    "id": "TALK_MARLOSS_VOICE_OFFER_BERRY",
79    "dynamic_line": "Join us then, eat from this meal with us.",
80    "responses": [
81      {
82        "text": "[Take marloss berry] Thank you.",
83        "topic": "TALK_DONE",
84        "effect": [ { "u_buy_item": "marloss_berry" }, { "u_add_effect": "u_given_berry", "duration": "43200" } ]
85      },
86      { "text": "I have changed my mind, thank you.", "topic": "TALK_DONE" },
87      {
88        "text": "I'm joining no stinking cult!  Take your berry and shove it!",
89        "topic": "TALK_DONE",
90        "condition": { "not": { "u_has_trait_flag": "mycus" } },
91        "effect": "hostile"
92      }
93    ]
94  }
95]
96