-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHistorySpice.json
More file actions
2142 lines (2063 loc) · 69.5 KB
/
Copy pathHistorySpice.json
File metadata and controls
2142 lines (2063 loc) · 69.5 KB
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
{ "spice" : {"eros" : {
"Rc" : "=subject.The==subject.name=&M",
"rc" : "=subject.the==subject.name=&M",
"impatient" :
{
"generic" : [
"Sorry, I have other things to do.",
"Anyway, I'm very busy.",
"Maybe we could talk some more another time?"
]
},
"disposition" :
{
"now_poor": "<spice.eros.Rc> frowns.",
"now_good": "<spice.eros.Rc> smiles.",
"now_great": "<spice.eros.Rc> grins at you."
},
"react" :
{
"jumble" : [
"<spice.eros.react.amorous.!random.!random>",
"<spice.eros.react.amorous.!random.!random>",
"<spice.eros.react.relationship.!random.!random.!random>",
"<spice.eros.react.relationship.!random.!random.!random>",
"<spice.eros.react.stat.!random.!random.!random.!random>",
"<spice.eros.react.stat.!random.!random.!random.!random>",
"<spice.eros.react.stat.!random.!random.!random.!random>",
"<spice.eros.react.part.!random.!random.!random.!random>",
"<spice.eros.react.part.!random.!random.!random.!random>",
"<spice.eros.react.skill.!random.!random.!random.!random>"
],
"generic" :
{
"like" : [
"<spice.eros.Rc> =verb:lean= briefly toward you.",
"<spice.eros.Rc> =verb:smile=.",
"<spice.eros.Rc> =verb:sigh=.",
"<spice.eros.Rc> =verb:relax=."
],
"dislike" : [
"<spice.eros.Rc> =verb:shift= away from you.",
"<spice.eros.Rc> =verb:purse= =pronouns.possessive= lips.",
"<spice.eros.Rc> =verb:draw= a sharp breath.",
"<spice.eros.Rc> =verb:go= still."
],
"flirt" : [
"I've dreamt of finding someone like you, someplace, <spice.history.regions.terrain.!random.over.!random>...",
"It's nice to see you.",
"Stay a while, OK?"
],
"insult" : [
"Begone, to someplace far and <spice.history.regions.terrain.!random.over.!random>!",
"You're such a waste of time.",
"Are you finished?"
]
},
"body" : {
"like" : [
"<spice.eros.react.generic.like.!random>",
"<spice.eros.Rc> =verb:look= you over approvingly.",
"<spice.eros.Rc> =verb:turn= to face you."
],
"dislike" : [
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.Rc> =verb:adopt= a closed posture.",
"<spice.eros.Rc> =verb:keep= some distance between you."
],
"flirt" : [
"<spice.eros.react.generic.flirt.!random>",
"You are just my type.",
"You're easy on the eyes, you know that?",
"I could look at you for hours.",
"By the eaters, where was such a likeness <spice.professions.!random.forged>?"
],
"insult" : [
"<spice.eros.react.generic.insult.!random>",
"You are not my type.",
"You are not my type.",
"Your form was <spice.professions.!random.forged> by someone, yes? They should try again.",
"You would do well to study shapeshifting."
]
},
"skill" :
{
"any" : {
"have" : {
"like" : ["<spice.eros.react.generic.like.!random>",
"<spice.eros.Rc> =verb:seem= impressed with your skills.",
"<spice.eros.Rc> =verb:look= at you with curiosity."
],
"dislike" : ["<spice.eros.react.generic.dislike.!random>",
"<spice.eros.Rc> =verb:look= at you disapprovingly.",
"<spice.eros.Rc> =verb:betray= a hint of resentment."
],
"flirt" : ["<spice.eros.react.generic.flirt.!random>",
"I really admire your knowledge of *skill*.",
"So, how did you learn *skill*?"
],
"insult" : ["<spice.eros.react.generic.insult.!random>",
"Only fools and charlatans dabble in *skill*!",
"*skill* are not going to save you from Qud."
]
}
}
},
"amorous" :
{
"like" : [
"<spice.eros.react.generic.like.!random>",
"<spice.eros.react.generic.like.!random>",
"<spice.eros.Rc> shifts =pronouns.possessive= weight.",
"<spice.eros.Rc> =verb:look= around wistfully.",
"<spice.eros.Rc> =verb:rustle= softly."
],
"dislike" : [
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.Rc> =verb:slouch= a little.",
"<spice.eros.Rc> =verb:look= around with a flat expression.",
"<spice.eros.Rc> =verb:are= still."
],
"flirt" : [
"<spice.eros.react.generic.flirt.!random>",
"Where have you been all my life?",
"Why don't you come a little closer?",
"You are just what I needed."
],
"insult" : [
"<spice.eros.react.generic.insult.!random>",
"You really help me to appreciate my alone time.",
"Please don't touch me.",
"Don't get any ideas."
]
},
"part" :
{
"any" : {
"have" : {
"like" : [
"<spice.eros.react.body.like.!random>",
"<spice.eros.react.body.like.!random>",
"<spice.eros.Rc> =verb:glance= at your *part* and quickly looks away.",
"<spice.eros.Rc> =verb:linger= on the little details of you."
],
"dislike" : [
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.Rc> =verb:avert= =pronouns.possessive= eyes from your *part*.",
"<spice.eros.Rc> =verb:avoid= looking at you too closely."
],
"flirt" : [
"<spice.eros.react.body.flirt.!random>",
"Hey, take good care of your *part* for me, OK?",
"Your *part* must have been <spice.professions.!random.forged> by the Eaters themselves.",
"One of these days you'll tell me how you got your *part* to look that good."
],
"insult" : [
"<spice.eros.react.body.insult.!random>",
"I find *part* disgusting.",
"I hope you get your *part* stuck in a trash chute.",
"It would be a... shame... if something were to happen to your *part*."
]
},
"missing" : {
"like" : [
"<spice.eros.react.body.like.!random>",
"<spice.eros.react.body.like.!random>",
"<spice.eros.Rc> =verb:smile= at what remains of your *part*.",
"<spice.eros.Rc> =verb:linger= on the exotic details of your body."
],
"dislike" : [
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.Rc> =verb:gape= at what's left of your *part*.",
"<spice.eros.Rc> =verb:gawk= rudely at your riven body."
],
"flirt" : [
"<spice.eros.react.body.flirt.!random>",
"Personally, I find the *part* extremely overrated.",
"Who needs ubernostrum? I like you the way you are.",
"Nothing you're missing will be missed."
],
"insult" : [
"<spice.eros.react.body.insult.!random>",
"Look at you! You're falling apart.",
"I've seem ruins in better repair than you.",
"You look like you've been left half-finished."
]
},
"none" : {
"like" : [
"<spice.eros.react.body.like.!random>",
"<spice.eros.react.body.like.!random>",
"<spice.eros.Rc> cheerfully =verb:note= your lack of *part*.",
"<spice.eros.Rc> =verb:linger= on the exotic details of your body."
],
"dislike" : [
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.Rc> =verb:look= for your *part* and finds none.",
"<spice.eros.Rc> =verb:look= disapprovingly over your geometry."
],
"flirt" : [
"<spice.eros.react.body.flirt.!random>",
"I like something a little different in my life.",
"I look forward to learning about your body.",
"Personally, I find the *part* extremely overrated."
],
"insult" : [
"<spice.eros.react.body.insult.!random>",
"You look like you've been left half-finished.",
"You're not my type. No, you're really not my type.",
"Have you ever considered shapeshifting?"
]
}
},
"unknown" : {
"have" : {
"like" : ["<spice.eros.react.part.any.have.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>"]
},
"missing" : {
"like" : ["<spice.eros.react.part.any.missing.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : ["<spice.eros.react.part.any.none.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.none.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.none.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.none.insult.!random>"]
}
},
"Face" : {
"have" : {
"like" : ["<spice.eros.react.part.any.have.like.!random>",
"<spice.eros.Rc> =verb:take= in the little details of your *part*.",
"<spice.eros.Rc> =verb:meet= your gaze and holds it."
],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>",
"<spice.eros.Rc> =verb:seem= to avert =pronouns.possessive= gaze from your *part*.",
"<spice.eros.Rc> =verb:avoid= your gaze."
],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>",
"I haven't been able to get your *part* out my mind.",
"Your *part* must have been <spice.professions.!random.forged> by the gods themselves!"
],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>",
"That is truly a *part* only a mother could love.",
"You would do well to feed your *part* to a madpole."
]
},
"missing" : {
"like" : ["<spice.eros.react.part.any.missing.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : ["<spice.eros.react.part.any.none.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.none.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.none.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.none.insult.!random>"]
}
},
"Body" : {
"have" : {
"like" : [
"<spice.eros.react.part.any.have.like.!random>",
"<spice.eros.Rc> =verb:glance= at your chest and quickly looks away.",
"<spice.eros.Rc> =verb:are= matching your breaths."
],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>"]
},
"missing" : {
"like" : [
"<spice.eros.react.part.any.missing.like.!random>",
"<spice.eros.Rc> =verb:puzzle= over how your body remains alive."
],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : [
"<spice.eros.react.part.any.none.like.!random>",
"<spice.eros.Rc> =verb:admire= your strange body.",
"<spice.eros.Rc> =verb:listen= to the sounds you make as you move."
],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
}
},
"Head" : {
"have" : {
"like" : ["<spice.eros.react.part.any.have.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>"]
},
"missing" : {
"like" : ["<spice.eros.react.part.any.missing.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : ["<spice.eros.react.part.any.none.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.none.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.none.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.none.insult.!random>"]
}
},
"Back" : {
"have" : {
"like" : ["<spice.eros.react.part.any.have.like.!random>",
"<spice.eros.Rc> =verb:seem= to look past you, but not quite past you.",
"<spice.eros.Rc> =verb:keep= glancing at something behind you but you can't figure out what."
],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>"]
},
"missing" : {
"like" : ["<spice.eros.react.part.any.missing.like.!random>",
"<spice.eros.Rc> =verb:give= you a look that says: \"there's no turning back now.\""],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : ["<spice.eros.react.part.any.none.like.!random>",
"<spice.eros.Rc> =verb:give= you a look that says: \"there's no turning back now.\""
],
"dislike" : ["<spice.eros.react.part.any.none.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.none.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.none.insult.!random>"]
}
},
"Arm" : {
"have" : {
"like" : ["<spice.eros.react.part.any.have.like.!random>",
"<spice.eros.Rc> =verb:eye= your shoulder.",
"You stretch your arms and <spice.eros.rc> =verb:are= briefly speechless."
],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>"]
},
"missing" : {
"like" : ["<spice.eros.react.part.any.missing.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : ["<spice.eros.react.part.any.none.like.!random>",
"<spice.eros.Rc> =verb:admire= your strange body."
],
"dislike" : ["<spice.eros.react.part.any.none.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.none.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.none.insult.!random>"]
}
},
"Hands" : {
"have" : {
"like" : ["<spice.eros.react.part.any.have.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>"]
},
"missing" : {
"like" : ["<spice.eros.react.part.any.missing.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : ["<spice.eros.react.part.any.none.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.none.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.none.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.none.insult.!random>"]
}
},
"Hand" : {
"_failureredirect" : "spice.eros.react.part.Hands"
},
"Feet" : {
"have" : {
"like" : ["<spice.eros.react.part.any.have.like.!random>",
"You take a small step, and <spice.eros.rc> =verb:follow= your feet.",
"<spice.eros.Rc> =verb:bend= down suddenly, and breathes deeply.",
"<spice.eros.Rc> =verb:flance= at the ground.",
"<spice.eros.Rc> =verb:keep= looking at the ground."
],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>"]
},
"missing" : {
"like" : ["<spice.eros.react.part.any.missing.like.!random>",
"<spice.eros.Rc> =verb:seem= to enjoy the sound you make while stumping around."
],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : ["<spice.eros.react.part.any.none.like.!random>",
"<spice.eros.Rc> =verb:perk= up at the sound of your movement.",
"<spice.eros.Rc> =verb:admire= your mode of locomotion."
],
"dislike" : ["<spice.eros.react.part.any.none.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.none.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.none.insult.!random>"]
}
},
"Foot" : {
"_failureredirect" : "spice.eros.react.part.Feet"
},
"Floating Nearby" : {
"have" : {
"like" : ["<spice.eros.react.part.any.have.like.!random>",
"<spice.eros.Rc> =verb:seem= to admire your self-control."
],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>",
"Have you ever thought about beekeeping?"
],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>"]
},
"missing" : {
"like" : ["<spice.eros.react.part.any.missing.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : ["<spice.eros.react.part.any.none.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.none.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.none.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.none.insult.!random>"]
}
},
"Tread" : {
"have" : {
"like" : ["<spice.eros.react.part.any.have.like.!random>",
"<spice.eros.Rc> =verb:cast= a sultry look at your motors.",
"<spice.eros.Rc> =verb:follow= the angles of your treads."
],
"dislike" : ["<spice.eros.react.part.any.have.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.have.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.have.insult.!random>"]
},
"missing" : {
"like" : ["<spice.eros.react.part.any.missing.like.!random>"],
"dislike" : ["<spice.eros.react.part.any.missing.dislike.!random>"],
"flirt" : ["<spice.eros.react.part.any.missing.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.missing.insult.!random>"]
},
"none" : {
"like" : ["<spice.eros.react.part.any.none.like.!random>",
"<spice.eros.Rc> =verb:look= approvingly at your propulsion system.",
"<spice.eros.Rc> =verb:admire= your mode of locomotion."
],
"dislike" : ["<spice.eros.react.part.any.none.dislike.!random>",
"<spice.eros.Rc> grimly =verb:study= your inferior ambulatory systems."
],
"flirt" : ["<spice.eros.react.part.any.none.flirt.!random>"],
"insult" : ["<spice.eros.react.part.any.none.insult.!random>"]
}
}
},
"relationship" :
{
"hi" : {
"like" : [
"<spice.eros.react.generic.like.!random>",
"<spice.eros.react.generic.like.!random>",
"<spice.eros.Rc> =verb:seem= at ease around you.",
"<spice.eros.Rc> =verb:give= you a look of fond familiarity.",
"<spice.eros.Rc> =verb:seem= glad to see you again."
],
"dislike" : [
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.Rc> =verb:seem= a little less interested in you now.",
"<spice.eros.Rc> =verb:eye= you with waning interest.",
"<spice.eros.Rc> =verb:give= you a look that makes you feel used up."
],
"flirt" : [
"<spice.eros.react.generic.flirt.!random>",
"I'm glad I took the time to get to know you.",
"Oh, never change."
],
"insult" : [
"<spice.eros.react.generic.insult.!random>",
"As I've gotten to know you, I've come to appreciate you're a terrible person.",
"I'm not interested anymore."
]
},
"lo" : {
"like" : [
"<spice.eros.react.generic.like.!random>",
"<spice.eros.react.generic.like.!random>",
"<spice.eros.Rc> =verb:look= at you curiously.",
"<spice.eros.Rc> =verb:give= you a mysterious look.",
"<spice.eros.Rc> =verb:take= in your strangest details."
],
"dislike" : [
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.Rc> =verb:keep= =pronouns.possessive= distance.",
"<spice.eros.Rc> =verb:eye= you cautiously.",
"<spice.eros.Rc> =verb:respond= only with hesitation."
],
"flirt" : [
"<spice.eros.react.generic.flirt.!random>",
"Howdy, stranger.",
"Less talk, please.",
"What has the wind brought me today?",
"Qud is truly a wondrous place."
],
"insult" : [
"<spice.eros.react.generic.insult.!random>",
"Back off, creep!",
"I don't know you and I don't want to know you.",
"Don't get any ideas.",
"Keep your distance."
]
}
},
"stat" :
{
"physical" : {
"hi" : {
"like" : [
"<spice.eros.react.body.like.!random>",
"<spice.eros.react.body.like.!random>",
"<spice.eros.Rc> =verb:look= you up and down, and up again.",
"<spice.eros.Rc> =verb:admire= your physique."
],
"dislike" : [
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.Rc> =verb:seem= to tense up when you move.",
"<spice.eros.Rc> =verb:watch= you cautiously."
],
"flirt" : [
"<spice.eros.react.body.flirt.!random>",
"Hmm, look at that body!",
"<spice.eros.Rc> =verb:take= a deep breath of you, and sighs."
],
"insult" : [
"<spice.eros.react.body.insult.!random>",
"Tried taking a bath lately?",
"If I was looking for a beast I wouldn't bother speaking."
]
},
"lo" : {
"like" : [
"<spice.eros.react.body.like.!random>",
"<spice.eros.react.body.like.!random>",
"<spice.eros.Rc> =verb:look= sympathetically at you.",
"<spice.eros.Rc> =verb:seem= at ease around you.",
"<spice.eros.Rc> =verb:seem= almost protective."
],
"dislike" : [
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.react.body.dislike.!random>",
"<spice.eros.Rc> =verb:look= you over disapprovingly.",
"<spice.eros.Rc> =verb:frown= at your posture.",
"<spice.eros.Rc> =verb:look= away for a while."
],
"flirt" : [
"<spice.eros.react.body.flirt.!random>",
"I hope you're being careful out there.",
"<spice.eros.Rc> =verb:take= a deep breath of you, and sighs."
],
"insult" : [
"<spice.eros.react.body.insult.!random>",
"You won't last ten seconds out there.",
"By the sultans, you're pathetic."
]
}
},
"mental" : {
"hi" : {
"like" : [
"<spice.eros.react.generic.like.!random>",
"<spice.eros.react.generic.like.!random>",
"<spice.eros.Rc> =verb:listen= attentively.",
"<spice.eros.Rc> =verb:hang= on your words.",
"<spice.eros.Rc> =verb:seem= to enjoy the sound of your voice."
],
"dislike" : [
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.Rc> =verb:seem= uneasy as you speak.",
"<spice.eros.Rc> =verb:seem= hesitant to respond.",
"<spice.eros.Rc> =verb:look= at you as if seeking permission to speak."
],
"flirt" : [
"<spice.eros.react.generic.flirt.!random>",
"Keep talking. I like the sound of your voice.",
"I enjoy our conversations.",
"You never cease to intrigue me."
],
"insult" : [
"<spice.eros.react.generic.insult.!random>",
"You talk a lot, don't you?",
"Do you think you're better than me?",
"You are way, way too intense."
]
},
"lo" : {
"like" : [
"<spice.eros.react.generic.like.!random>",
"<spice.eros.react.generic.like.!random>",
"<spice.eros.Rc> half-=verb:listen= with a smile.",
"<spice.eros.Rc> =verb:admire= your surroundings.",
"<spice.eros.Rc> =verb:smile= and nods."
],
"dislike" : [
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.react.generic.dislike.!random>",
"<spice.eros.Rc> half-=verb:listen= with a patronizing expression.",
"<spice.eros.Rc> =verb:seem= distracted.",
"<spice.eros.Rc> =verb:seem= distracted, then =verb:perk= up when you finish speaking."
],
"flirt" : [
"<spice.eros.react.generic.flirt.!random>",
"Keep talking. I like the sound of your voice.",
"You're easy to be around.",
"Mmm-hmm, yeah, mm-hmm!"
],
"insult" : [
"<spice.eros.react.generic.insult.!random>",
"You talk a lot, don't you?",
"You have a lot to learn.",
"You fool."
]
}
},
"Strength" : {
"hi" : {
"like" : [
"<spice.eros.react.stat.physical.hi.like.!random>",
"<spice.eros.react.stat.physical.hi.like.!random>",
"<spice.eros.Rc>'s eyes trace your muscles.",
"<spice.eros.Rc> =verb:study= how you shoulder your equipment."
],
"dislike" : [
"<spice.eros.react.stat.physical.hi.dislike.!random>",
"<spice.eros.react.stat.physical.hi.dislike.!random>",
"<spice.eros.Rc> =verb:seem= to shrink away from you.",
"<spice.eros.Rc> =verb:gather= =pronouns.object=self."
],
"flirt" : [
"<spice.eros.react.stat.physical.hi.flirt.!random>",
"Looks like someone's been working out.",
"Taking a break from moving mountains?",
"I'd like to put you to work."
],
"insult" : [
"<spice.eros.react.stat.physical.hi.insult.!random>",
"You horrible brute.",
"Sorry, I'm not a sports fan.",
"Shouldn't you be hauling cargo for the dromads?"
]
},
"lo" : {
"like" : [
"<spice.eros.react.stat.physical.lo.like.!random>",
"<spice.eros.react.stat.physical.lo.like.!random>",
"<spice.eros.Rc> =verb:look= at your frame with endearment.",
"<spice.eros.Rc> =verb:look= at your burden sympathetically."
],
"dislike" : [
"<spice.eros.react.stat.physical.lo.dislike.!random>",
"<spice.eros.react.stat.physical.lo.dislike.!random>",
"<spice.eros.Rc> =verb:look= at your frame with disappointment.",
"<spice.eros.Rc> =verb:look= at your burden with a patronizing expression."
],
"flirt" : [
"<spice.eros.react.stat.physical.lo.flirt.!random>",
"Do you need help carrying anything?",
"I admire the one who travels light.",
"<spice.eros.Rc> casually flexes."
],
"insult" : [
"<spice.eros.react.stat.physical.lo.insult.!random>",
"You pathetic weakling.",
"I see now; you're unfit to work, so you roam the wastes.",
"Tell me, who carries your water for you?"
]
}
},
"Agility" : {
"hi" : {
"like" : [
"<spice.eros.react.stat.physical.hi.like.!random>",
"<spice.eros.react.stat.physical.hi.like.!random>",
"<spice.eros.Rc> =verb:follow= your movements with interest.",
"<spice.eros.Rc> =verb:nod= along with your gestures."
],
"dislike" : [
"<spice.eros.react.stat.physical.hi.dislike.!random>",
"<spice.eros.react.stat.physical.hi.dislike.!random>",
"<spice.eros.Rc> =verb:watch= your movements warily.",
"<spice.eros.Rc> =verb:keep= an eye on you."
],
"flirt" : [
"<spice.eros.react.stat.physical.hi.flirt.!random>",
"I hate to see you go, but I love to watch you leave.",
"You move like a dancer, you know that?",
"If you must leave... return to me switftly."
],
"insult" : [
"<spice.eros.react.stat.physical.hi.insult.!random>",
"Run away now, fast and far.",
"Shouldn't you be stealing something?",
"I sense you're good at avoiding things! Could you avoid me, too?"
]
},
"lo" : {
"like" : [
"<spice.eros.react.stat.physical.lo.like.!random>",
"<spice.eros.react.stat.physical.lo.like.!random>",
"<spice.eros.Rc> =verb:giggle= at your clumsy movements.",
"<spice.eros.Rc> =verb:let= their shoulders slacken."
],
"dislike" : [
"<spice.eros.react.stat.physical.lo.dislike.!random>",
"<spice.eros.react.stat.physical.lo.dislike.!random>",
"<spice.eros.Rc> =verb:watch= your clumsy movements with a grim expression.",
"<spice.eros.Rc> =verb:roll= =pronouns.possessive= eyes."
],
"flirt" : [
"<spice.eros.react.stat.physical.lo.flirt.!random>",
"You adorable klutz.",
"Remember to duck! I would hate for anything to happen to that face.",
"Do me a favor and keep away from the slime."
],
"insult" : [
"<spice.eros.react.stat.physical.lo.insult.!random>",
"You awful klutz.",
"The dromads sell helmets for people like you.",
"Please, do us all a favor and fall down a shaft."
]
}
},
"Toughness" : {
"hi" : {
"like" : [
"<spice.eros.react.stat.physical.hi.like.!random>",
"<spice.eros.react.stat.physical.hi.like.!random>",
"<spice.eros.Rc> =verb:seem= to be counting your scars.",
"<spice.eros.Rc> =verb:straighten= =pronouns.possessive= back.",
"<spice.eros.Rc> =verb:stare= you down like a fulcrete wall."
],
"dislike" : [
"<spice.eros.react.stat.physical.hi.dislike.!random>",
"<spice.eros.react.stat.physical.hi.dislike.!random>",
"<spice.eros.Rc> =verb:look= at your scars uneasily.",
"<spice.eros.Rc> =verb:frown= at your overworked body."
],
"flirt" : [
"<spice.eros.react.stat.physical.hi.flirt.!random>",
"So, what happens when you meet an unstoppable force?",
"You'll have to tell me how you got that scar.",
"You look like you've seen a fight or two."
],
"insult" : [
"<spice.eros.react.stat.physical.hi.insult.!random>",
"The leatherworkers would pay a fortune for your hide.",
"You look like an expert in getting kicked around.",
"You have thick skin, so I won't mince my words."
]
},
"lo" : {
"like" : [
"<spice.eros.react.stat.physical.lo.like.!random>",
"<spice.eros.react.stat.physical.lo.like.!random>",
"<spice.eros.Rc> =verb:eye= your soft spots with affection.",
"<spice.eros.Rc> =verb:study= you like a desert flower."
],
"dislike" : [
"<spice.eros.react.stat.physical.lo.dislike.!random>",
"<spice.eros.react.stat.physical.lo.dislike.!random>",
"<spice.eros.Rc> =verb:seem= surprised you've lived this long.",
"<spice.eros.Rc> =verb:look= at you like a dead =player.personTerm= walking."
],
"flirt" : [
"<spice.eros.react.stat.physical.lo.flirt.!random>",
"Be careful out there, OK?",
"Oh, to find elusive softness in Qud...",
"I'll see you again, right?"
],
"insult" : [
"<spice.eros.react.stat.physical.lo.insult.!random>",
"I give you three days before they find your body <spice.history.regions.terrain.!random.over>",
"Is that the sound of your fragile heart breaking?",
"Gracious, what a wimp."
]
}
},
"Intelligence" : {
"hi" : {
"like" : [
"<spice.eros.react.stat.mental.hi.like.!random>",
"<spice.eros.react.stat.mental.hi.like.!random>",
"<spice.eros.Rc> =verb:consider= =pronouns.possessive= next words carefully.",
"<spice.eros.Rc> =verb:look= thoughtful."
],
"dislike" : [
"<spice.eros.react.stat.mental.hi.dislike.!random>",
"<spice.eros.react.stat.mental.hi.dislike.!random>",
"<spice.eros.Rc> =verb:seem= a little annoyed with you.",
"<spice.eros.Rc> =verb:struggle= to find =pronouns.possessive= words."
],
"flirt" : [
"<spice.eros.react.stat.mental.hi.flirt.!random>",
"You have a beautiful mind, you know that?",
"I like the way you think.",
"Good idea!"
],
"insult" : [
"<spice.eros.react.stat.mental.hi.insult.!random>",
"You think you're so clever.",
"Your fancy words won't protect you out there.",
"I tire of your scheming."
]
},
"lo" : {
"like" : [
"<spice.eros.react.stat.mental.lo.like.!random>",
"<spice.eros.react.stat.mental.lo.like.!random>",
"<spice.eros.Rc> =verb:seem= to follow.",
"<spice.eros.Rc> =verb:are= still listening to you."
],
"dislike" : [
"<spice.eros.react.stat.mental.lo.dislike.!random>",
"<spice.eros.react.stat.mental.lo.dislike.!random>",
"<spice.eros.Rc> =verb:appear= unsurprised.",
"<spice.eros.Rc> =verb:are= still listening to you."
],
"flirt" : [
"<spice.eros.react.stat.mental.lo.flirt.!random>",
"I like that you keep things simple.",
"I feel like I completely understand you.",
"You don't overthink things and I respect that."
],
"insult" : [
"<spice.eros.react.stat.mental.lo.insult.!random>",
"You idiot.",
"You aren't very bright, so I'll spell it out for you: not interested.",
"I'm getting very tired of your drivel."
]
}
},
"Willpower" : {
"hi" : {
"like" : [
"<spice.eros.react.stat.mental.hi.like.!random>",
"<spice.eros.react.stat.mental.hi.like.!random>",
"<spice.eros.Rc> =verb:look= at you with admiration.",
"<spice.eros.Rc> =verb:pay= close attention to you."
],
"dislike" : [
"<spice.eros.react.stat.mental.hi.dislike.!random>",
"<spice.eros.react.stat.mental.hi.dislike.!random>",
"<spice.eros.Rc> =verb:look= ready to turn away, but you keep talking.",
"<spice.eros.Rc> =verb:look= taxed by the conversation."
],
"flirt" : [
"<spice.eros.react.stat.mental.hi.flirt.!random>",
"I admire how you know what you want and you go for it.",
"You always seem to know exactly what to do.",
"I'm behind you all the way."
],
"insult" : [
"<spice.eros.react.stat.mental.hi.insult.!random>",
"You're persistent, but you're wasting your breath.",
"You know, you have a special skill for creeping people out.",
"Hey, I heard about a good meditation spot. It's far, far away."
]
},
"lo" : {
"like" : [
"<spice.eros.react.stat.mental.lo.like.!random>",
"<spice.eros.react.stat.mental.lo.like.!random>",
"<spice.eros.Rc> =verb:seem= to have things figured out.",
"You nod, almost unconsciously.",
"You pay close attention to <spice.eros.rc>."
],
"dislike" : [
"<spice.eros.react.stat.mental.lo.dislike.!random>",
"<spice.eros.react.stat.mental.lo.dislike.!random>",
"<spice.eros.Rc> =verb:look= at you with pity.",
"<spice.eros.Rc> =verb:seem= exasperated by your compliance.",
"You feel like you've done something wrong."
],
"flirt" : [
"<spice.eros.react.stat.mental.lo.flirt.!random>",
"I admire how you go with the flow.",
"Can I rely on you?",
"Do you have any pleasant surprises for me?"
],
"insult" : [
"<spice.eros.react.stat.mental.lo.insult.!random>",
"You should learn to think for yourself.",
"Leave me alone.",
"If you wish to woo me, bring me a gift."
]
}
},
"Ego" : {
"hi" : {
"like" : [
"<spice.eros.react.stat.mental.hi.like.!random>",
"<spice.eros.react.stat.mental.hi.like.!random>",
"Your voice makes <spice.eros.rc> smile.",
"<spice.eros.Rc> =verb:chuckle=.",
"<spice.eros.Rc> =verb:nod=, almost unconsciously."
],
"dislike" : [
"<spice.eros.react.stat.mental.hi.dislike.!random>",
"<spice.eros.react.stat.mental.hi.dislike.!random>",
"<spice.eros.Rc> =verb:seem= suspicious of you.",
"<spice.eros.Rc> =verb:seem= a little overwhelmed.",
"<spice.eros.Rc> =verb:nod= reluctantly."
],
"flirt" : [
"<spice.eros.react.stat.mental.hi.flirt.!random>",
"My, my, you have a way with words.",
"You can say that again.",
"Say, are you after my water?",
"Read my mind, friend."
],
"insult" : [
"<spice.eros.react.stat.mental.hi.insult.!random>",
"I won't be manipulated by you.",
"Save your silver tongue for the stiltgrounds.",
"You are disgustingly full of yourself.",
"You should try a slice of humble pie."
]
},
"lo" : {
"like" : [
"<spice.eros.react.stat.mental.lo.like.!random>",
"<spice.eros.react.stat.mental.lo.like.!random>",
"<spice.eros.Rc> =verb:roll= =pronouns.possessive= eyes sentimentally.",
"<spice.eros.Rc> =verb:purse= =pronouns.possessive= lips, but =verb:smile= faintly."
],
"dislike" : [
"<spice.eros.react.stat.mental.lo.dislike.!random>",
"<spice.eros.react.stat.mental.lo.dislike.!random>",
"<spice.eros.Rc> =verb:seem= to see right through you.",
"<spice.eros.Rc> =verb:seem= a little bored."
],
"flirt" : [
"<spice.eros.react.stat.mental.lo.flirt.!random>",
"I like that I can be myself around you.",
"I feel like I know the real you. No facades.",
"If the water runs out, I'll drink you in instead."
],
"insult" : [
"<spice.eros.react.stat.mental.lo.insult.!random>",
"I've met blocks of fulcrete with more personality than you.",
"Please stop talking. You're giving me a headache.",
"I should be charging you for this conversation."
]
}
}
}
},
"opinion" :