summaryrefslogtreecommitdiff
path: root/npc-05_kindred-update.patch
blob: 8b728b4dbdeadef62ed24fa0609a6e7db69705fb (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
--- a/data/json/npcs/Kindred/NPC_Brigitte_LaCroix.json
+++ b/data/json/npcs/Kindred/NPC_Brigitte_LaCroix.json
@@ -0,0 +1,553 @@
+[
+  {
+    "type": "npc_class",
+    "id": "NC_BONE_SEER",
+    "name": { "str": "Bone Seer" },
+    "job_description": "I wish to sing the song of the Bones",
+    "traits": [
+      { "trait": "OUTDOORSMAN" },
+      { "trait": "HEAVYSLEEPER" },
+      { "trait": "GOODCARDIO" },
+      { "trait": "LIGHTSTEP" },
+      { "trait": "ROBUST" },
+      { "trait": "SKIN_DARK" },
+      { "trait": "seer_mark" },
+      { "trait": "hair_black_mohawk" }
+    ],
+    "common": false,
+    "bonus_per": { "rng": [ 0, 2 ] },
+    "bonus_str": { "rng": [ 0, 2 ] },
+    "bonus_int": { "rng": [ 0, 2 ] },
+    "worn_override": "BONE_SEER_Brigitte_worn",
+    "weapon_override": "BONE_SEER_Brigitte_wield",
+    "shopkeeper_item_group": "NC_BONE_SEER_misc",
+    "skills": [
+      {
+        "skill": "ALL",
+        "level": { "mul": [ { "one_in": 3 }, { "sum": [ { "dice": [ 2, 2 ] }, { "constant": -2 }, { "one_in": 4 } ] } ] }
+      },
+      { "skill": "survival", "bonus": { "rng": [ 2, 4 ] } },
+      { "skill": "dodge", "bonus": { "rng": [ 4, 8 ] } },
+      { "skill": "melee", "bonus": { "rng": [ 6, 8 ] } },
+      { "skill": "bashing", "bonus": { "rng": [ 3, 6 ] } },
+      { "skill": "cutting", "bonus": { "rng": [ 3, 6 ] } }
+    ]
+  },
+  {
+    "type": "item_group",
+    "id": "BONE_SEER_Brigitte_worn",
+    "subtype": "collection",
+    "entries": [
+      { "item": "boxer_briefs" },
+      { "item": "socks" },
+      { "item": "tshirt_tour" },
+      { "item": "jacket_leather_bone" },
+      { "item": "gloves_liner" },
+      { "item": "helmet_skull" },
+      { "item": "gloves_leather" },
+      { "item": "pants_leather" },
+      { "item": "boots_bone" },
+      { "item": "backpack_leather" }
+    ]
+  },
+  {
+    "type": "item_group",
+    "id": "BONE_SEER_Brigitte_wield",
+    "subtype": "collection",
+    "entries": [ { "item": "2h_flail_steel" } ]
+  },
+  {
+    "type": "item_group",
+    "id": "NC_BONE_SEER_misc",
+    "subtype": "distribution",
+    "entries": [
+      { "item": "needle_bone", "prob": 40 },
+      { "item": "bone_glue", "prob": 20 },
+      { "item": "bone_flute", "prob": 10 },
+      { "item": "bone_human", "prob": 10 },
+      { "item": "broth_bone", "prob": 60 },
+      { "item": "water_clean", "prob": 90 }
+    ]
+  },
+  {
+    "type": "mutation",
+    "id": "seer_mark",
+    "name": { "str": "Mark of the Seer" },
+    "points": 1,
+    "description": "A strange occult symbol carved into your hand by Brigitte LaCroix.",
+    "starting_trait": false,
+    "valid": false,
+    "purifiable": false
+  },
+  {
+    "type": "npc",
+    "id": "SEER_Brigitte_LaCroix",
+    "//": "A mysterious member of a doomsday cult.",
+    "name_unique": "Brigitte LaCroix",
+    "gender": "female",
+    "name_suffix": "Bone Seer",
+    "class": "NC_BONE_SEER",
+    "attitude": 7,
+    "mission": 3,
+    "chat": "TALK_BONE_SEER",
+    "faction": "no_faction",
+    "mission_offered": "MISSION_SEER_GATHER_BONE"
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER",
+    "dynamic_line": {
+      "u_has_var": "talked_to_seer",
+      "type": "dialogue",
+      "context": "first_meeting",
+      "value": "yes",
+      "no": "You there.  Quiet down.  Can you hear it?  The song?",
+      "yes": {
+        "u_has_var": "asked_about_song",
+        "type": "dialogue",
+        "context": "song",
+        "value": "yes",
+        "no": "You're back.  Have you come to listen to the song?",
+        "yes": {
+          "u_has_trait": "seer_mark",
+          "no": "Traveller.",
+          "yes": { "u_female": true, "yes": "Greetings, sister.", "no": "Greetings, brother." }
+        }
+      }
+    },
+    "speaker_effect": { "effect": { "u_add_var": "talked_to_seer", "type": "dialogue", "context": "first_meeting", "value": "yes" } },
+    "responses": [
+      {
+        "text": "What song?",
+        "topic": "TALK_BONE_SEER_SONG",
+        "condition": { "not": { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" } }
+      },
+      {
+        "text": "So about the songs…",
+        "topic": "TALK_BONE_SEER_SONG2",
+        "condition": { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" }
+      },
+      {
+        "text": "Do others follow this belief as well?",
+        "topic": "TALK_BONE_SEER_OTHERS",
+        "condition": { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" }
+      },
+      {
+        "text": "Can you tell me more about yourself?",
+        "topic": "TALK_BONE_SEER_ABOUT",
+        "condition": { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" }
+      },
+      {
+        "text": "You mentioned some cycle before.  What does that mean?",
+        "topic": "TALK_BONE_SEER_CYCLE",
+        "condition": { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" }
+      },
+      {
+        "text": "I've met Cooper.",
+        "topic": "TALK_BONE_SEER_METCOOPER",
+        "condition": {
+          "and": [
+            { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" },
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "Would you like to join me on my travels?",
+        "topic": "TALK_SUGGEST_FOLLOW_SEER",
+        "condition": {
+          "and": [
+            { "not": "npc_following" },
+            { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "Is there a way I can help you with your song?",
+        "topic": "TALK_MISSION_LIST_SEER",
+        "condition": { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" }
+      },
+      {
+        "text": "I have to go.",
+        "topic": "TALK_DONE",
+        "condition": { "not": { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" } }
+      },
+      {
+        "text": "I have to get going.  Take care, Seer.",
+        "topic": "TALK_DONE",
+        "condition": { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" }
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_SONG",
+    "dynamic_line": "Listen carefully.  The bones… they hum.  Can you hear it?  The song they weave?  The stories they hold?",
+    "responses": [
+      { "text": "Bones?  What are you talking about?", "topic": "TALK_BONE_SEER_SONG2" },
+      { "text": "Uh… yeah, sure.  I think I'll just be on my way.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_SONG2",
+    "dynamic_line": "When it all happened, the Cataclysm, something… changed.  You can see it in all creatures, most of all in their bones.  They break, morph, rise again, over and over - a never-ending cycle.  The dead walk again, horrors rip and tear each other apart.  And within each one… the quiet hum of raw strength.  Only by taking the bones does the cycle end - their story, their song, their strength; they become yours to use.",
+    "speaker_effect": { "effect": { "u_add_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" } },
+    "responses": [
+      { "text": "So what do you actually do with the bones?", "topic": "TALK_BONE_SEER_BONES" },
+      { "text": "I'm still not sure what you mean.", "topic": "TALK_BONE_SEER_SONG3" },
+      { "text": "Does anyone else, uh, believe this?", "topic": "TALK_BONE_SEER_OTHERS" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_SONG3",
+    "dynamic_line": "Only when you crush the bones of a body does it cease to rise.  Only if you examine the bones can you see what was, the story of the bones.  Whatever causes this change is alive, writhing within us all; an inevitable part of this new world.  It holds the power of change.  When we hold the bones, we hold the power.  Thus the strength.  Together… they form a beautiful song.",
+    "responses": [
+      { "text": "What do you actually do with the bones?", "topic": "TALK_BONE_SEER_BONES" },
+      { "text": "Does anyone else share this belief?", "topic": "TALK_BONE_SEER_OTHERS" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_OTHERS",
+    "dynamic_line": "There are others who know the power the bones hold, but not all of them are my kin.  Not anymore, at least.",
+    "speaker_effect": { "effect": { "u_add_var": "knows_kindred", "type": "dialogue", "context": "kindred", "value": "yes" } },
+    "responses": [
+      { "text": "What do you mean 'not anymore'?", "topic": "TALK_BONE_SEER_COOPER" },
+      { "text": "Why do you gather these bones again?", "topic": "TALK_BONE_SEER_BONES" },
+      { "text": "Thank you for all the information, but I have to go now.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_COOPER",
+    "dynamic_line": "Some time ago, a man named Cooper joined me and my kin.  He showed great promise and devotion to our cause, but in his effort to weave songs, he justified increasingly grim actions.  We tried to stop him when we learned of this, but he managed to get away.  If you ever come across him, be sure to thread carefully, and if you can, stop him.",
+    "speaker_effect": { "effect": { "u_add_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" } },
+    "responses": [
+      {
+        "text": "Wait, Cooper?  Darren Cooper?  I've already met him.",
+        "topic": "TALK_BONE_SEER_METCOOPER2",
+        "condition": { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+      },
+      { "text": "What exactly did he do?", "topic": "TALK_BONE_SEER_COOPER2" },
+      {
+        "text": "Sounds like there is another side to this.  Sometimes, what is necessary is not pretty.",
+        "topic": "TALK_BONE_SEER_COOPER3",
+        "effect": { "u_add_var": "admires_cooper", "type": "dialogue", "context": "kindred", "value": "yes" }
+      },
+      { "text": "What cause is that?  What do you do with the bones?", "topic": "TALK_BONE_SEER_BONES" },
+      { "text": "I see.  I wanted to ask about something else…", "topic": "TALK_BONE_SEER" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_COOPER2",
+    "dynamic_line": "He began killing others to get their bones as fresh as possible.  Later, he…  he started carving the bones of the living.  Thought the anguish alone would empower the song.  The goal of the Kindred is to banish the shadow of the cataclysm, not to cast it.  Such heinous acts will likely twist the song of the world, but I don't think Cooper realises it.  To him, the end justifies any means.",
+    "speaker_effect": { "effect": { "u_add_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" } },
+    "responses": [
+      { "text": "Well…  shit.  Maybe we should talk about something else.", "topic": "TALK_BONE_SEER" },
+      {
+        "text": "What if he is right?  Maybe what you do isn't enough and he's the only one to do what it takes.",
+        "topic": "TALK_BONE_SEER_COOPER3",
+        "effect": { "u_add_var": "admires_cooper", "type": "dialogue", "context": "kindred", "value": "yes" }
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_COOPER3",
+    "dynamic_line": "You do not realize the gravity of your claim.  When you understand the Song better, you will understand the danger of his actions.",
+    "responses": [ { "text": "I see.", "topic": "TALK_BONE_SEER" }, { "text": "We'll see about that.", "topic": "TALK_BONE_SEER" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_BONES",
+    "dynamic_line": "The song can be woven in many forms.  Carved bone charms, weapons and armor all hold immense power, and when the time comes, me and my Kindred shall amass enough Song to restore this world as it was before.  Restore it, or end it.  Makes no difference.",
+    "responses": [ { "text": "End the world?  What?", "topic": "TALK_BONE_SEER_END" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_END",
+    "dynamic_line": "The Song holds immeasurable power.  A grand symphony could revert the Cataclysm - or accelerate it to a time beyond all.  But with the world looking as is, both options are preferable.",
+    "responses": [
+      { "text": "A strange belief, but maybe there is some truth to it.", "topic": "TALK_BONE_SEER_POSITIVE" },
+      { "text": "Well, at least you're trying to help.", "topic": "TALK_BONE_SEER_POSITIVE" },
+      { "text": "You're nuts.", "topic": "TALK_BONE_SEER_INSULT" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_POSITIVE",
+    "dynamic_line": "Your mind is open.  More than most.  Perhaps one day, you too will feel the power of the song and become Kindred.  For now, traveller, listen, listen and feel the song.",
+    "responses": [ { "text": "I… thank you.", "topic": "TALK_BONE_SEER" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_INSULT",
+    "dynamic_line": "Your skepticism does not surprise me.  Perhaps one day, you too will hear the inevitability of the song, feel its power.  But until you do, you will remain just another survivor, path to the Kindred closed.",
+    "responses": [ { "text": "Alright.", "topic": "TALK_BONE_SEER" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_ABOUT",
+    "dynamic_line": "I grew up in Louisiana with my grandmother.  Great cook.  Made the best boudin I've ever had.  Each night, she would tell me stories; mostly folklore and myths, like about the rougarou, or the Honey Island Swamp monster but…  she sometimes told me about me about the Song, and the bones.  The way she talked about it was…  different, serious.  Didn't give it much thought back then; I was just a child, after all.  I moved here a few years back for work, before the Cataclysm, before everything changed.  I do miss home sometimes, but at least the rats here are smaller.  Never could stand the things.  Anyway…  thank you for asking.  Been a while since I could simply talk to someone.",
+    "responses": [
+      { "text": "Why didn't your parents raise you?", "topic": "TALK_BONE_SEER_PARENTS" },
+      { "text": "What's boudin?", "topic": "TALK_BONE_SEER_BOUDIN" },
+      { "text": "What do you mean she talked about the Song 'differently'?", "topic": "TALK_BONE_SEER_GRANDMA" },
+      { "text": "What's wrong with rats?", "topic": "TALK_BONE_SEER_RATS" },
+      { "text": "Thank you for sharing.  Let's talk about something else.", "topic": "TALK_BONE_SEER" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_PARENTS",
+    "dynamic_line": "They died when I was very young.  Car accident.  I…  don't have any memories of them, but my grandmother raised me as her own.",
+    "responses": [ { "text": "She sounds nice.", "topic": "TALK_BONE_SEER_ABOUT" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_BOUDIN",
+    "dynamic_line": "Spicy sausage, green onions, rice.  She'd batter and deep fry them, make boudin balls.  A dish to die for.",
+    "responses": [
+      { "text": "Sounds delicious.", "topic": "TALK_BONE_SEER_ABOUT" },
+      { "text": "Not my kind of thing.", "topic": "TALK_BONE_SEER_ABOUT" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_GRANDMA",
+    "dynamic_line": "Unlike the other stories, she spoke with determination, reverence even.  I didn't realize it back then but it wasn't just a story; she knew that this wasn't just another tale.",
+    "responses": [ { "text": "I see.", "topic": "TALK_BONE_SEER_ABOUT" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_RATS",
+    "dynamic_line": "Ever since a young age, I hated rats.  Can't quite say why; they always struck me as something…  foul.  I even have nightmares about them sometimes.  Not too long ago, I had one about a man-sized rat, shambling on it's hind legs.  It chased me up a tall building and then pushed me off, snickering.  Maybe the Song was trying to tell me something, but then again, maybe it was just a bad dream.",
+    "responses": [ { "text": "Strange dream, but we all have fears, sometimes irrational.", "topic": "TALK_BONE_SEER_ABOUT" } ]
+  },
+  {
+    "id": "MISSION_SEER_GATHER_BONE",
+    "type": "mission_definition",
+    "name": { "str": "Collect Bones" },
+    "description": {
+      "str": "Brigitte LaCroix asked you to collect clean, untainted bones in order to better understand her beliefs.  8 bones should be sufficient."
+    },
+    "difficulty": 1,
+    "value": 10000,
+    "goal": "MGOAL_FIND_ITEM",
+    "item": "bone",
+    "count": 8,
+    "origins": [ "ORIGIN_SECONDARY" ],
+    "end": {
+      "effect": [
+        { "u_add_var": "NC_SEER_MISSION_1", "type": "general", "context": "mission", "value": "yes" },
+        { "u_add_trait": "seer_mark" }
+      ]
+    },
+    "dialogue": {
+      "describe": "There is always work to be done, song to be woven.",
+      "offer": "If you wish to be set on the path to enlightenment, first you must learn to listen and hear the song.  Go out, butcher an untainted creature and feel the power between your fingertips.  Then bring me the bones and I shall carve them for you.",
+      "accepted": "Excellent.  Now be on your way.",
+      "rejected": "I understand your reluctancy.  Feel free to return when you see the way.",
+      "advice": "The shambling corpses we see all around move in discord.  Their song can be used, but for an Acolyte, this would be needlessly hard.  Be sure to carve an unspoiled living creature.",
+      "inquire": "Have you felt the song in your hands yet?",
+      "success": "And so, another cycle ends.  You have done well.  I will now bestow my mark upon you, so that others may know the path you walk and aid you.",
+      "success_lie": "So you say, but the song sings otherwise.",
+      "failure": "Then you shall try again, until you hear."
+    }
+  },
+  {
+    "id": "TALK_MISSION_LIST_SEER",
+    "type": "talk_topic",
+    "dynamic_line": {
+      "has_no_available_mission": {
+        "has_no_assigned_mission": "The song is… quiet for now.  Perhaps with time, more notes will be etched in the bones of this world.",
+        "no": { "has_many_assigned_missions": "An acolyte should not take on too many songs at once.", "no": "That is all for now." }
+      },
+      "no": {
+        "has_many_available_missions": {
+          "has_no_assigned_mission": "There are bones to etch, songs to sing.  Wish to join me?",
+          "no": {
+            "has_many_assigned_missions": "Do you wish to take on more songs?",
+            "no": "Do you believe you can take on the burden of additional bones?"
+          }
+        },
+        "no": {
+          "has_no_assigned_mission": "A song may yet be sung by you, should you wish to.",
+          "no": {
+            "has_many_assigned_missions": "There is an additional song you could take on, if you'd like.",
+            "no": "I know of certain bones that could be of use, if you'd like to know more."
+          }
+        }
+      }
+    },
+    "responses": [
+      { "text": "I see.", "topic": "TALK_NONE", "condition": "has_no_available_mission" },
+      {
+        "text": "I'm listening.",
+        "topic": "TALK_MISSION_OFFER_SEER",
+        "condition": { "not": "has_no_available_mission" }
+      },
+      {
+        "text": "Perhaps another time, Seer.",
+        "topic": "TALK_NONE",
+        "condition": { "not": "has_no_available_mission" }
+      }
+    ]
+  },
+  {
+    "id": "TALK_MISSION_OFFER_SEER",
+    "type": "talk_topic",
+    "dynamic_line": "If you wish to be set on the path to enlightenment, first you must learn to listen and hear the song.  Go out, butcher an untainted creature and feel the power between your fingertips.  Then bring me the bones and I shall carve them for you.",
+    "responses": [
+      {
+        "text": "Well, I guess I oughta see where this goes.  I'm in.",
+        "topic": "TALK_MISSION_ACCEPTED_SEER",
+        "effect": "assign_mission"
+      },
+      { "text": "Not interested.", "topic": "TALK_MISSION_REJECTED_SEER" }
+    ]
+  },
+  {
+    "id": "TALK_MISSION_ACCEPTED_SEER",
+    "type": "talk_topic",
+    "dynamic_line": "Excellent.  Now be on your way.",
+    "responses": [
+      { "text": "Consider it done.  But I also wanted to ask…", "topic": "TALK_BONE_SEER" },
+      { "text": "Where should I start?", "topic": "TALK_MISSION_ADVICE_SEER" },
+      { "text": "Can you share some equipment to aid me in this?", "topic": "TALK_SHARE_EQUIPMENT_SEER" },
+      { "text": "I'm off then.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "id": "TALK_MISSION_ADVICE_SEER",
+    "type": "talk_topic",
+    "dynamic_line": "The shambling corpses we see all around move in discord.  Their song can be used, but for an Acolyte, this would be needlessly hard.  Be sure to carve an unspoiled living creature.",
+    "responses": [ { "text": "So, a creature that isn't a zombie, or a monster.  Got it.", "topic": "TALK_NONE" } ]
+  },
+  {
+    "id": "TALK_SHARE_EQUIPMENT_SEER",
+    "type": "talk_topic",
+    "dynamic_line": "The path to enlightenment is for you to walk.  For me to aid you would ultimately impede your progress and muddle your song.",
+    "responses": [ { "text": "I see.  Very well then.", "topic": "TALK_NONE" } ]
+  },
+  {
+    "id": "TALK_SUGGEST_FOLLOW_SEER",
+    "type": "talk_topic",
+    "dynamic_line": {
+      "u_has_trait": "seer_mark",
+      "no": "Only those who bear my mark will prove themselves worthy of my skills.",
+      "yes": "You bear my mark, meaning I believe you have potential to learn to truly listen to the Song.  Yes, I will lend my skills to you, for now."
+    },
+    "responses": [
+      { "text": "I see.  Very well then.", "topic": "TALK_NONE", "condition": { "not": { "u_has_trait": "seer_mark" } } },
+      {
+        "text": "I am glad to hear it.  Let's go then.",
+        "effect": "follow",
+        "condition": { "u_has_trait": "seer_mark" },
+        "topic": "TALK_DONE"
+      },
+      {
+        "text": "That's good, but I need to go at it alone right now.  Maybe later.",
+        "condition": { "u_has_trait": "seer_mark" },
+        "topic": "TALK_NONE"
+      }
+    ]
+  },
+  {
+    "id": "TALK_MISSION_REJECTED_SEER",
+    "type": "talk_topic",
+    "dynamic_line": "I understand your reluctancy.  Feel free to return when you see the way.",
+    "responses": [
+      { "text": "Maybe some other time.  Changing the topic…", "topic": "TALK_NONE" },
+      { "text": "Alright, but I have to go now.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_CYCLE",
+    "dynamic_line": "It's not just walking horrors and monsters that have changed with the Cataclysm.  It started a… cycle, of sorts.  Everything repeats.  We can only see it in others, but it happens to us, even you and I.  How many times have you fallen?  Your flesh rent from your body, devoured.  Or perhaps it was the quiet whimper of succumbing to the elements.  But your bones rose again.  Different flesh, different name, sometimes even different knowledge, but the bones, the same.  We are all trapped in the same cycle.  We just keep forgetting.  That's why we need to amass the Song.  That's why it has to end, even if it means the destruction, not restoration.",
+    "responses": [
+      { "text": "That's…  certainly something.", "topic": "TALK_NONE" },
+      { "text": "That's insane.", "topic": "TALK_BONE_SEER_INSULT" },
+      { "text": "Right…  I think I'll go now.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_METCOOPER",
+    "dynamic_line": "I see.  And you live still.  Does that mean you managed to stop him?",
+    "responses": [
+      {
+        "text": "I've confronted him.  He ended up attacking me.",
+        "topic": "TALK_BONE_SEER_COOPERFIGHT",
+        "condition": { "u_has_var": "fought_cooper", "type": "dialogue", "context": "cooper", "value": "yes" }
+      },
+      {
+        "text": "He was reasonable.  We talked, then parted ways peacefully.",
+        "topic": "TALK_BONE_SEER_COOPERPEACE",
+        "condition": { "not": { "u_has_var": "fought_cooper", "type": "dialogue", "context": "cooper", "value": "yes" } }
+      },
+      {
+        "text": "I agree with him.  What he does is necessary.",
+        "topic": "TALK_BONE_SEER_COOPERAGREE",
+        "condition": {
+          "and": [
+            { "not": { "u_has_var": "fought_cooper", "type": "dialogue", "context": "cooper", "value": "yes" } },
+            { "u_has_var": "cooper_friendly", "type": "dialogue", "context": "cooper", "value": "yes" }
+          ]
+        }
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_COOPERFIGHT",
+    "dynamic_line": "It saddens me to see a talented Kindred lose his way so greatly, but I take solace in the fact that you are unscathed.",
+    "responses": [ { "text": "Best not to dwell on it.  Let's move on.", "topic": "TALK_BONE_SEER" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_COOPERPEACE",
+    "dynamic_line": "I am glad your meeting ended without conflict.  Perhaps he's understanding the Song more and the harm his actions caused.  If so…  there may be hope yet.  Never the less, his action can not go unpunished.",
+    "responses": [ { "text": "A topic for another time.  Let's move on.", "topic": "TALK_BONE_SEER" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_METCOOPER2",
+    "dynamic_line": "You have?  A most peculiar coincidence.  How did he act towards you?",
+    "responses": [
+      {
+        "text": "I've confronted him.  He ended up attacking me.",
+        "topic": "TALK_BONE_SEER_COOPERFIGHT",
+        "condition": { "u_has_var": "fought_cooper", "type": "dialogue", "context": "cooper", "value": "yes" }
+      },
+      {
+        "text": "He was reasonable.  We talked, then parted ways peacefully.",
+        "topic": "TALK_BONE_SEER_COOPERPEACE",
+        "condition": { "not": { "u_has_var": "fought_cooper", "type": "dialogue", "context": "cooper", "value": "yes" } }
+      },
+      {
+        "text": "I agree with him.  What he does is necessary.",
+        "topic": "TALK_BONE_SEER_COOPERAGREE",
+        "condition": {
+          "and": [
+            { "not": { "u_has_var": "fought_cooper", "type": "dialogue", "context": "cooper", "value": "yes" } },
+            { "u_has_var": "cooper_friendly", "type": "dialogue", "context": "cooper", "value": "yes" }
+          ]
+        }
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_BONE_SEER_COOPERAGREE",
+    "dynamic_line": "Tread carefully.  I can't allow anyone else to go down such a path.  I can't fail again.",
+    "responses": [
+      { "text": "I'm sorry.  I'll think about it some more.", "topic": "TALK_BONE_SEER" },
+      { "text": "Just saying he has a point, that's all.", "topic": "TALK_BONE_SEER" }
+    ]
+  }
+]
--- a/data/json/npcs/Kindred/NPC_Darren_Cooper.json
+++ b/data/json/npcs/Kindred/NPC_Darren_Cooper.json
@@ -0,0 +1,613 @@
+[
+  {
+    "type": "npc_class",
+    "id": "NC_KINDRED_COOPER",
+    "name": { "str": "Rogue Kindred" },
+    "job_description": "I have to gather more bones",
+    "traits": [
+      { "trait": "OUTDOORSMAN" },
+      { "trait": "INSOMNIA" },
+      { "trait": "GOODCARDIO2" },
+      { "trait": "STRONGSTOMACH" },
+      { "trait": "SPIRITUAL" },
+      { "trait": "TERRIFYING" },
+      { "trait": "KILLER" },
+      { "trait": "seer_mark" },
+      { "group": "Appearance_Caucasian" },
+      { "trait": "hair_brown_short" },
+      { "trait": "FACIAL_HAIR_3DAYSTUBBLE" }
+    ],
+    "common": false,
+    "bonus_per": { "rng": [ 0, 2 ] },
+    "bonus_str": { "rng": [ 0, 2 ] },
+    "worn_override": "KINDRED_COOPER_worn",
+    "weapon_override": "KINDRED_COOPER_wield",
+    "shopkeeper_item_group": "NC_KINDRED_COOPER_misc",
+    "skills": [
+      {
+        "skill": "ALL",
+        "level": { "mul": [ { "one_in": 3 }, { "sum": [ { "dice": [ 2, 2 ] }, { "constant": -2 }, { "one_in": 4 } ] } ] }
+      },
+      { "skill": "dodge", "bonus": { "rng": [ 2, 4 ] } },
+      { "skill": "melee", "bonus": { "rng": [ 5, 7 ] } },
+      { "skill": "cutting", "bonus": { "rng": [ 4, 6 ] } }
+    ]
+  },
+  {
+    "type": "item_group",
+    "id": "KINDRED_COOPER_worn",
+    "subtype": "collection",
+    "entries": [
+      { "item": "loincloth_leather" },
+      { "item": "socks" },
+      { "item": "kevlar" },
+      { "item": "helmet_liner" },
+      { "item": "gloves_liner" },
+      { "item": "boots_larmor" },
+      { "item": "swat_armor" },
+      { "item": "gauntlets_larmor" },
+      { "item": "leather_belt" },
+      { "item": "canteen" },
+      { "item": "armguard_larmor" },
+      { "item": "backpack_leather" },
+      { "item": "knee_pads" },
+      { "item": "knit_scarf" }
+    ]
+  },
+  {
+    "type": "item_group",
+    "id": "KINDRED_COOPER_wield",
+    "subtype": "collection",
+    "entries": [ { "item": "survivor_machete" } ]
+  },
+  {
+    "type": "item_group",
+    "id": "NC_KINDRED_COOPER_misc",
+    "subtype": "distribution",
+    "entries": [
+      { "item": "needle_bone", "prob": 40 },
+      { "item": "bone_glue", "prob": 20 },
+      { "item": "bone_flute", "prob": 10 },
+      { "item": "bone_human", "prob": 10 },
+      { "item": "broth_bone", "prob": 60 },
+      { "item": "water_clean", "prob": 90 }
+    ]
+  },
+  {
+    "type": "npc",
+    "id": "KINDRED_Darren_Cooper",
+    "//": "A once member of a doomsday cult.",
+    "name_unique": "Darren Cooper",
+    "gender": "male",
+    "name_suffix": "Rogue Kindred",
+    "class": "NC_KINDRED_COOPER",
+    "attitude": 0,
+    "mission": 7,
+    "chat": "TALK_KINDRED_COOPER",
+    "faction": "no_faction"
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_KINDRED_COOPER",
+    "dynamic_line": {
+      "u_has_var": "talked_to_cooper",
+      "type": "dialogue",
+      "context": "first_meeting",
+      "value": "yes",
+      "no": {
+        "u_has_trait": "seer_mark",
+        "yes": "How do you do.  Name's Cooper.  What's your- wait…  that's the Mark of the Seer on your hand.  You're Kindred.  So I guess you know who I am then.",
+        "no": "How do you do.  Name's Cooper.  And you are?"
+      },
+      "yes": {
+        "u_has_trait": "seer_mark",
+        "no": {
+          "u_has_var": "cooper_friendly",
+          "type": "dialogue",
+          "context": "cooper",
+          "value": "yes",
+          "yes": "Hello again, traveller.",
+          "no": "Yes?"
+        },
+        "yes": {
+          "u_has_var": "cooper_friendly",
+          "type": "dialogue",
+          "context": "cooper",
+          "value": "yes",
+          "no": "What do you want, Kindred?",
+          "yes": "Kindred.  What can I do for you?"
+        }
+      }
+    },
+    "speaker_effect": { "effect": { "u_add_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" } },
+    "responses": [
+      {
+        "text": "I do.  Brigitte told me about you, and that you're dangerous.",
+        "topic": "TALK_KNOWS_COOPER1",
+        "condition": {
+          "and": [
+            { "not": { "u_has_var": "confronted_cooper", "type": "dialogue", "context": "cooper", "value": "yes" } },
+            { "u_has_trait": "seer_mark" },
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            {
+              "not": { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+            }
+          ]
+        }
+      },
+      {
+        "text": "Brigitte told me everything.  What could drive a man to carve the bones of living people?",
+        "topic": "TALK_KNOWS_COOPER_CARVE",
+        "condition": {
+          "and": [
+            { "not": { "u_has_var": "confronted_cooper", "type": "dialogue", "context": "cooper", "value": "yes" } },
+            { "u_has_trait": "seer_mark" },
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "Brigitte told me about you.  I think what you do might be what's necessary, even if Brigitte doesn't agree.",
+        "topic": "TALK_COOPER_AGREE",
+        "condition": {
+          "and": [
+            { "not": { "u_has_var": "confronted_cooper", "type": "dialogue", "context": "cooper", "value": "yes" } },
+            { "u_has_trait": "seer_mark" },
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            { "u_has_var": "admires_cooper", "type": "dialogue", "context": "kindred", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "I can't say that I do.  Should I?",
+        "topic": "TALK_COOPER_NOTFMLR",
+        "condition": {
+          "and": [
+            { "not": { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" } },
+            { "u_has_trait": "seer_mark" },
+            {
+              "not": { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+            }
+          ]
+        }
+      },
+      {
+        "text": "Just a traveller, trying to survive.  What about you?  Scavenging?",
+        "topic": "TALK_COOPER_INTRODUCTION",
+        "condition": {
+          "and": [
+            { "not": { "u_has_trait": "seer_mark" } },
+            {
+              "not": { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+            },
+            {
+              "not": { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+            }
+          ]
+        }
+      },
+      {
+        "text": "Wait, Cooper?  Brigitte LaCroix mentioned someone by that name.  You're the man who carved the bones of living people.",
+        "topic": "TALK_KNOWS_COOPER_CARVE",
+        "condition": {
+          "and": [
+            { "not": { "u_has_trait": "seer_mark" } },
+            {
+              "not": { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+            },
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "Cooper?  I met a woman who mentioned you, Brigitte.  She said you're dangerous.",
+        "topic": "TALK_COOPER_INTRODUCTION_QUERY",
+        "condition": {
+          "and": [
+            { "not": { "u_has_trait": "seer_mark" } },
+            {
+              "not": { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+            },
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            {
+              "not": { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+            }
+          ]
+        }
+      },
+      {
+        "text": "Wait, Cooper?  I heard about you.  A woman, Brigitte LaCroix, said that you're dangerous, but seems to me like you're just doing what it takes.",
+        "topic": "TALK_COOPER_AGREE",
+        "condition": {
+          "and": [
+            { "not": { "u_has_trait": "seer_mark" } },
+            {
+              "not": { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+            },
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            { "u_has_var": "admires_cooper", "type": "dialogue", "context": "kindred", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "Why did Brigitte say you're dangerous?",
+        "topic": "TALK_COOPERS_SIDE",
+        "condition": {
+          "and": [
+            { "not": { "u_has_trait": "seer_mark" } },
+            { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" },
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            {
+              "not": { "u_has_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+            },
+            {
+              "not": { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+            }
+          ]
+        }
+      },
+      {
+        "text": "Why do you kill people?",
+        "topic": "TALK_COOPER_GOAL",
+        "condition": {
+          "and": [
+            { "not": { "u_has_trait": "seer_mark" } },
+            { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" },
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            {
+              "not": { "u_has_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+            },
+            { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "Could you tell me about yourself?",
+        "topic": "TALK_COOPER_ABOUT",
+        "condition": { "and": [ { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" } ] }
+      },
+      {
+        "text": "I'll be going now.",
+        "topic": "TALK_DONE",
+        "condition": {
+          "and": [
+            { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" },
+            { "not": { "u_has_var": "cooper_friendly", "type": "dialogue", "context": "cooper", "value": "yes" } }
+          ]
+        }
+      },
+      {
+        "text": "Remind me what happened between you and Brigitte.",
+        "topic": "TALK_COOPERS_SIDE",
+        "condition": {
+          "and": [
+            { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" },
+            { "u_has_trait": "seer_mark" }
+          ]
+        }
+      },
+      {
+        "text": "I've been thinking about what you do.  I can't let you keep hurting people.  You have to be stopped.",
+        "topic": "TALK_COOPER_FIGHT",
+        "condition": {
+          "and": [
+            { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" },
+            { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "Could you remind me of your goal again?",
+        "topic": "TALK_COOPER_GOAL",
+        "condition": {
+          "and": [
+            { "not": { "u_has_trait": "seer_mark" } },
+            { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" },
+            { "u_has_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "You mentioned that you have a goal.  What is that exactly?",
+        "topic": "TALK_COOPER_GOAL",
+        "condition": {
+          "and": [
+            { "not": { "u_has_trait": "seer_mark" } },
+            { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" },
+            { "u_has_var": "cooper_goal_dk", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "The woman you mentioned - Brigitte - why isn't she with you?",
+        "topic": "TALK_COOPERS_SIDE",
+        "condition": { "u_has_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+      },
+      {
+        "text": "I was just checking in.  Take care.",
+        "topic": "TALK_DONE",
+        "condition": {
+          "and": [
+            { "u_has_var": "talked_to_cooper", "type": "dialogue", "context": "first_meeting", "value": "yes" },
+            { "u_has_var": "cooper_friendly", "type": "dialogue", "context": "cooper", "value": "yes" }
+          ]
+        }
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_KNOWS_COOPER1",
+    "dynamic_line": "I suppose she probably said I'm some sort of a maniac and that you should kill me on the spot, correct?",
+    "speaker_effect": { "effect": { "u_add_var": "confronted_cooper", "type": "dialogue", "context": "cooper", "value": "yes" } },
+    "responses": [
+      {
+        "text": "I want to hear your side of the story.  You make it sound like it's not so cut and dry.",
+        "topic": "TALK_COOPERS_SIDE"
+      },
+      {
+        "text": "You kill innocent people and butcher them like animals.  I don't care what you say.  You have to be stopped.",
+        "topic": "TALK_COOPER_FIGHT"
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_INTRODUCTION_QUERY",
+    "dynamic_line": "I see.  Would you like to hear my side, or is your mind made up already?",
+    "responses": [
+      { "text": "I'm curious.  Go on.", "topic": "TALK_COOPERS_SIDE" },
+      { "text": "She told me to stop you, and that's what I'll do.", "topic": "TALK_COOPER_FIGHT" },
+      { "text": "I don't care about any of this.  Bye.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_KNOWS_COOPER_CARVE",
+    "dynamic_line": "What?  I'd never do anything like that!  Dammit… if she thinks I did that, that would explain why she's not willing to work with me.  Maybe there's still some hope she'll understand what's necessary.",
+    "responses": [
+      { "text": "So what happened then?", "topic": "TALK_COOPERS_SIDE" },
+      { "text": "You're still a killer, and I can't let you keep going.", "topic": "TALK_COOPER_FIGHT" },
+      { "text": "I don't really care.  I'm leaving.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPERS_SIDE",
+    "dynamic_line": "I met Brigitte shortly after everything collapsed.  Seeing so much death and insanity around me…  it almost crushed me, but when she explained everything about the bones to me, it gave me a sliver of hope, that one time, things might turn around.  For that, I am grateful to her.  But we'll never change anything if we keep using scraps of bones found on corpses on the side of the road.  By the time the animals are done with those, there is barely any Song left to be used.  It's not enough.  I had to leave, to work on my own.  To do what's necessary.",
+    "responses": [
+      {
+        "text": "What do you mean by 'necessary'?",
+        "topic": "TALK_COOPER_NECESSARY",
+        "condition": { "not": { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" } }
+      },
+      {
+        "text": "What are you actually trying to accomplish?",
+        "topic": "TALK_COOPER_GOAL",
+        "condition": { "not": { "u_has_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" } }
+      },
+      { "text": "Can't have been easy to split off, but I understand why you did it.", "topic": "TALK_COOPER_AGREE" },
+      {
+        "text": "Necessary?  You kill innocent people!",
+        "topic": "TALK_COOPER_NECESSARY",
+        "condition": { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" }
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_NECESSARY",
+    "dynamic_line": "People will die in this world overrun with monsters.  There is no avoiding it.  But I can give those deaths meaning, allow them to help the world after death, more than they could in life.  It brings me no pleasure, but…  yes, some must give their life for the greater good.  It's the only way.  Wish there was an alternative, but it must be done.  I only take people from this world to save it.  Make no mistake though, the only people that I…  kill are those who would not survive anyway.",
+    "speaker_effect": { "effect": { "u_add_var": "knows_cooper_kill", "type": "dialogue", "context": "kindred_cooper", "value": "yes" } },
+    "responses": [
+      {
+        "text": "Why do you kill people?",
+        "topic": "TALK_COOPER_GOAL",
+        "condition": { "not": { "u_has_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" } }
+      },
+      { "text": "Are you going to kill me?", "topic": "TALK_COOPER_KILL_PLAYER" },
+      { "text": "You're a monster.", "topic": "TALK_COOPER_MONSTER" },
+      {
+        "text": "You're just a murderer with a shoddy excuse.  I can't let you keep doing this.",
+        "topic": "TALK_COOPER_FIGHT"
+      },
+      { "text": "You have a point.  The ends justify the means.", "topic": "TALK_COOPER_AGREE" },
+      {
+        "text": "Do you have any proof that this will work?",
+        "topic": "TALK_COOPER_WORK",
+        "condition": { "u_has_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_MONSTER",
+    "dynamic_line": "And how many people have you killed?  Maybe it was in self defense, maybe because you wanted their gear.  It's all the same.  I give their death meaning.  I hate that I have to do it, I truly do, but you really must understand, there is no other way.  The sooner I finish my mission, the sooner all this madness can end.",
+    "responses": [
+      { "text": "I suppose you're right.", "topic": "TALK_COOPER_AGREE" },
+      { "text": "You're mad.  You have to be stopped.", "topic": "TALK_COOPER_FIGHT" },
+      { "text": "Whatever.  I'm leaving.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_FIGHT",
+    "dynamic_line": {
+      "u_has_trait": "seer_mark",
+      "no": "I can't allow you to stop me.  If you try, I'll have no option but to fight you.  Maybe I'll die, or maybe you will.  But know that should you win, you'll be ridding the world of the only hope it has.",
+      "yes": "I knew a Kindred would not understand.  But I can't allow you to stop me.  If you try, I'll have no option but to fight you.  But know that should you win, you'll be ridding the world of the only hope it has."
+    },
+    "responses": [
+      {
+        "text": "All I'm ridding the world of is a dangerous madman.  Now die.",
+        "topic": "TALK_DONE",
+        "effect": [ "hostile", { "u_add_var": "fought_cooper", "type": "dialogue", "context": "cooper", "value": "yes" } ]
+      },
+      { "text": "This is a waste of time not worth the risk.  I'm out of here.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_AGREE",
+    "dynamic_line": {
+      "u_has_trait": "seer_mark",
+      "yes": "You're like me then, Kindred.  I'm glad I'm not the only one who realizes what's necessary.  Perhaps one day, we'll be able to work together, but what I do now, I must do alone.",
+      "no": "I'm glad you realize the necessity of the burden I bear.  Maybe someday we'll even join our forces, but for now, I have to do this alone."
+    },
+    "speaker_effect": { "effect": { "u_add_var": "cooper_friendly", "type": "dialogue", "context": "cooper", "value": "yes" } },
+    "responses": [
+      { "text": "I won't delay you then.  Good luck.", "topic": "TALK_DONE" },
+      {
+        "text": "That being said, I need to know why you do it - what purpose it fills.",
+        "topic": "TALK_COOPER_GOAL",
+        "condition": { "not": { "u_has_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" } }
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_WORK",
+    "dynamic_line": {
+      "u_has_trait": "seer_mark",
+      "yes": "You're Kindred, and yet you question the power the bones hold, the Song itself?  This hypocrisy is why I set off on my own.  Stop wasting my time and get out of my way.",
+      "no": "I know it's hard to comprehend when you can't hear the song.  The bones hold power, you just don't hear it yet.  But you will, eventually."
+    },
+    "responses": [
+      { "text": "I meant no offense.  I'm sure you have your reasons.", "topic": "TALK_COOPER_AGREE" },
+      {
+        "text": "What about the woman you mentioned - Brigitte - what happened to her?",
+        "topic": "TALK_COOPERS_SIDE",
+        "condition": { "u_has_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+      },
+      {
+        "text": "Brigitte was right.  I can't reason with you.  You have to be stopped.",
+        "topic": "TALK_COOPER_FIGHT",
+        "condition": {
+          "and": [
+            { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" },
+            { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "cooper", "value": "yes" }
+          ]
+        }
+      },
+      {
+        "text": "You're rambling.  I can't let you keep hurting people.  This ends now.",
+        "topic": "TALK_COOPER_FIGHT",
+        "condition": {
+          "and": [
+            { "not": { "u_has_var": "knows_cooper", "type": "dialogue", "context": "kindred_cooper", "value": "yes" } },
+            { "u_has_var": "knows_cooper_kill", "type": "dialogue", "context": "cooper", "value": "yes" }
+          ]
+        }
+      },
+      { "text": "This is a waste of time.  I'm leaving.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_NOTFMLR",
+    "dynamic_line": "Brigitte did not mention me?  I'm surprised.  Perhaps she's starting to understand I was right.  I was with her for a time, learned from her.  I'm still on her side, but she doesn't realize it yet.",
+    "responses": [ { "text": "You know Brigitte?  What happened with you two?", "topic": "TALK_COOPERS_SIDE" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_INTRODUCTION",
+    "dynamic_line": "I scavenge only so I can survive, but I have a much greater goal than just to live.",
+    "speaker_effect": { "effect": { "u_add_var": "cooper_goal_dk", "type": "dialogue", "context": "first_meeting", "value": "yes" } },
+    "responses": [
+      { "text": "A…  goal?  What do you mean?  What is there to do other than survive?", "topic": "TALK_COOPER_GOAL" },
+      { "text": "Uh, okay then.  I have to go now; have a nice day.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_GOAL",
+    "dynamic_line": "Something changed during the Collapse - the apocalypse, if you prefer that.  The way the dead rise again and again, it's tied to their bones - notice that only when you pulp and crush them properly do they actually die.  A woman I met - Brigitte was her name - taught me how to use the power.  We call it the Song, since if you know how, you can hear it, a quiet hum in the bones.  If I collect enough Song, the concentrated power can reverse the Cataclysm.  Undo all of this.",
+    "speaker_effect": {
+      "effect": [
+        { "u_lose_var": "cooper_goal_dk", "type": "dialogue", "context": "first_meeting" },
+        { "u_add_var": "cooper_goal_k", "type": "dialogue", "context": "first_meeting", "value": "yes" }
+      ]
+    },
+    "responses": [
+      { "text": "Do you have any proof that this will work?", "topic": "TALK_COOPER_WORK" },
+      {
+        "text": "You mentioned a woman, Brigitte.  Why isn't she with you?  What happened?",
+        "topic": "TALK_COOPERS_SIDE",
+        "condition": { "not": { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" } }
+      },
+      {
+        "text": "Wait, Brigitte LaCroix?  I've met her.",
+        "topic": "TALK_COOPER_KNOWBRIG",
+        "condition": {
+          "and": [
+            { "u_has_var": "asked_about_song", "type": "dialogue", "context": "song", "value": "yes" },
+            { "not": { "u_has_var": "cooper_friendly", "type": "dialogue", "context": "cooper", "value": "yes" } }
+          ]
+        }
+      },
+      { "text": "That's insane.  I'm going.", "topic": "TALK_DONE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_KNOWBRIG",
+    "dynamic_line": "Small world, huh?  I hope she's doing fine.  Despite our differences, I owe everything to her.  I hope one day we'll be able to reconcile.",
+    "responses": [
+      { "text": "So, how do you know that any of this works?", "topic": "TALK_COOPER_WORK" },
+      { "text": "What differences?  Why did you part ways?", "topic": "TALK_COOPERS_SIDE" }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_ABOUT",
+    "dynamic_line": {
+      "u_has_var": "cooper_friendly",
+      "type": "dialogue",
+      "context": "cooper",
+      "value": "yes",
+      "no": "Sorry, but I don't know you that well and I'd rather not go into that.",
+      "yes": "I was born here in New England, lived here all my life.  Was an accountant before the Collapse, if you can believe that.  There wasn't really anything special about my life before I learned about the Song, so there isn't much to say."
+    },
+    "responses": [
+      {
+        "text": "I understand.",
+        "topic": "TALK_KINDRED_COOPER",
+        "condition": { "not": { "u_has_var": "cooper_friendly", "type": "dialogue", "context": "cooper", "value": "yes" } }
+      },
+      {
+        "text": "Do you have a favorite food?",
+        "topic": "TALK_COOPER_FOOD",
+        "condition": { "u_has_var": "cooper_friendly", "type": "dialogue", "context": "cooper", "value": "yes" }
+      },
+      {
+        "text": "I see.  Thanks for sharing.",
+        "topic": "TALK_KINDRED_COOPER",
+        "condition": { "u_has_var": "cooper_friendly", "type": "dialogue", "context": "cooper", "value": "yes" }
+      }
+    ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_FOOD",
+    "dynamic_line": "I've always loved crêpes.",
+    "responses": [ { "text": "Fair enough.", "topic": "TALK_KINDRED_COOPER" } ]
+  },
+  {
+    "type": "talk_topic",
+    "id": "TALK_COOPER_KILL_PLAYER",
+    "dynamic_line": "No.  You seem like you have a chance of surviving in this world.  Plus, you took the time to actually hear me out, so there is a chance one day you'll hear the Song the same way I do.",
+    "responses": [
+      { "text": "Nevertheless, I can't allow you to keep killing people.", "topic": "TALK_COOPER_FIGHT" },
+      {
+        "text": "I'm glad you see it that way.",
+        "topic": "TALK_COOPER_AGREE",
+        "condition": { "not": { "u_has_trait": "seer_mark" } }
+      },
+      { "text": "Maybe one day I will.", "topic": "TALK_COOPER_AGREE", "condition": { "u_has_trait": "seer_mark" } },
+      { "text": "This is a waste of time.  I'm leaving", "topic": "TALK_DONE" }
+    ]
+  }
+]
--- a/data/json/mapgen/nested/city_npc_nested_spawns.json
+++ b/data/json/mapgen/nested/city_npc_nested_spawns.json
@@ -138,5 +138,11 @@
     "method": "json",
     "nested_mapgen_id": "SEER_Brigitte_LaCroix_spawn",
     "object": { "mapgensize": [ 1, 1 ], "place_npcs": [ { "class": "SEER_Brigitte_LaCroix", "x": 0, "y": 0 } ] }
+  },
+  {
+    "type": "mapgen",
+    "method": "json",
+    "nested_mapgen_id": "KINDRED_Darren_Cooper_spawn",
+    "object": { "mapgensize": [ 1, 1 ], "place_npcs": [ { "class": "KINDRED_Darren_Cooper", "x": 0, "y": 0 } ] }
   }
 ]
--- a/data/json/mapgen/cabin.json
+++ b/data/json/mapgen/cabin.json
@@ -33,7 +33,8 @@
         "-----------GG-----------"
       ],
       "palettes": [ { "distribution": [ [ "cabin_palette", 1 ], [ "cabin_palette_abandoned", 1 ] ] } ],
-      "place_monsters": [ { "monster": "GROUP_ZOMBIE", "x": 7, "y": 4 } ]
+      "place_monsters": [ { "monster": "GROUP_ZOMBIE", "x": 7, "y": 4 } ],
+      "place_nested": [ { "chunks": [ [ "KINDRED_Darren_Cooper_spawn", 20 ], [ "null", 80 ] ], "x": 12, "y": 14 } ]
     }
   },
   {