@rpgm-tools/neo-angband-content 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. package/LICENSE.md +43 -0
  2. package/README.md +65 -0
  3. package/dist/compile.d.ts +10 -0
  4. package/dist/compile.d.ts.map +1 -0
  5. package/dist/compile.js +42 -0
  6. package/dist/compile.js.map +1 -0
  7. package/dist/data-exactness.reader.d.ts +105 -0
  8. package/dist/data-exactness.reader.d.ts.map +1 -0
  9. package/dist/data-exactness.reader.js +547 -0
  10. package/dist/data-exactness.reader.js.map +1 -0
  11. package/dist/index.d.ts +17 -0
  12. package/dist/index.d.ts.map +1 -0
  13. package/dist/index.js +15 -0
  14. package/dist/index.js.map +1 -0
  15. package/dist/parser.d.ts +70 -0
  16. package/dist/parser.d.ts.map +1 -0
  17. package/dist/parser.js +365 -0
  18. package/dist/parser.js.map +1 -0
  19. package/dist/records.d.ts +101 -0
  20. package/dist/records.d.ts.map +1 -0
  21. package/dist/records.js +244 -0
  22. package/dist/records.js.map +1 -0
  23. package/dist/specs/generate.d.ts +12 -0
  24. package/dist/specs/generate.d.ts.map +1 -0
  25. package/dist/specs/generate.js +57 -0
  26. package/dist/specs/generate.js.map +1 -0
  27. package/dist/specs/index.d.ts +9 -0
  28. package/dist/specs/index.d.ts.map +1 -0
  29. package/dist/specs/index.js +60 -0
  30. package/dist/specs/index.js.map +1 -0
  31. package/dist/specs/init.d.ts +23 -0
  32. package/dist/specs/init.d.ts.map +1 -0
  33. package/dist/specs/init.js +305 -0
  34. package/dist/specs/init.js.map +1 -0
  35. package/dist/specs/misc.d.ts +33 -0
  36. package/dist/specs/misc.d.ts.map +1 -0
  37. package/dist/specs/misc.js +146 -0
  38. package/dist/specs/misc.js.map +1 -0
  39. package/dist/specs/mon-init.d.ts +22 -0
  40. package/dist/specs/mon-init.d.ts.map +1 -0
  41. package/dist/specs/mon-init.js +157 -0
  42. package/dist/specs/mon-init.js.map +1 -0
  43. package/dist/specs/obj-init.d.ts +19 -0
  44. package/dist/specs/obj-init.d.ts.map +1 -0
  45. package/dist/specs/obj-init.js +219 -0
  46. package/dist/specs/obj-init.js.map +1 -0
  47. package/dist/specs/ui-entry.d.ts +22 -0
  48. package/dist/specs/ui-entry.d.ts.map +1 -0
  49. package/dist/specs/ui-entry.js +69 -0
  50. package/dist/specs/ui-entry.js.map +1 -0
  51. package/dist/specs/visuals.d.ts +26 -0
  52. package/dist/specs/visuals.d.ts.map +1 -0
  53. package/dist/specs/visuals.js +35 -0
  54. package/dist/specs/visuals.js.map +1 -0
  55. package/pack/activation.json +3340 -0
  56. package/pack/artifact.json +5146 -0
  57. package/pack/blow_effects.json +370 -0
  58. package/pack/blow_methods.json +286 -0
  59. package/pack/body.json +59 -0
  60. package/pack/brand.json +100 -0
  61. package/pack/chest_trap.json +117 -0
  62. package/pack/class.json +5501 -0
  63. package/pack/constants.json +470 -0
  64. package/pack/curse.json +580 -0
  65. package/pack/dungeon_profile.json +836 -0
  66. package/pack/ego_item.json +2900 -0
  67. package/pack/flavor.json +1541 -0
  68. package/pack/hints.json +303 -0
  69. package/pack/history.json +1656 -0
  70. package/pack/manifest.json +52 -0
  71. package/pack/monster.json +29392 -0
  72. package/pack/monster_base.json +688 -0
  73. package/pack/monster_spell.json +2735 -0
  74. package/pack/names.json +1204 -0
  75. package/pack/object.json +11877 -0
  76. package/pack/object_base.json +364 -0
  77. package/pack/object_property.json +2034 -0
  78. package/pack/p_race.json +447 -0
  79. package/pack/pain.json +150 -0
  80. package/pack/pit.json +617 -0
  81. package/pack/player_property.json +519 -0
  82. package/pack/player_timed.json +1321 -0
  83. package/pack/projection.json +664 -0
  84. package/pack/quest.json +18 -0
  85. package/pack/realm.json +34 -0
  86. package/pack/room_template.json +9571 -0
  87. package/pack/shape.json +263 -0
  88. package/pack/slay.json +116 -0
  89. package/pack/store.json +675 -0
  90. package/pack/summon.json +143 -0
  91. package/pack/terrain.json +511 -0
  92. package/pack/trap.json +1483 -0
  93. package/pack/ui_entry.json +382 -0
  94. package/pack/ui_entry_base.json +60 -0
  95. package/pack/ui_entry_renderer.json +43 -0
  96. package/pack/ui_knowledge.json +302 -0
  97. package/pack/vault.json +4355 -0
  98. package/pack/visuals.json +680 -0
  99. package/pack/world.json +1030 -0
  100. package/package.json +67 -0
  101. package/src/compile.ts +55 -0
  102. package/src/data-exactness.reader.ts +559 -0
  103. package/src/index.ts +31 -0
  104. package/src/parser.ts +406 -0
  105. package/src/records.ts +341 -0
  106. package/src/specs/generate.ts +61 -0
  107. package/src/specs/index.ts +103 -0
  108. package/src/specs/init.ts +322 -0
  109. package/src/specs/misc.ts +153 -0
  110. package/src/specs/mon-init.ts +165 -0
  111. package/src/specs/obj-init.ts +230 -0
  112. package/src/specs/ui-entry.ts +74 -0
  113. package/src/specs/visuals.ts +37 -0
@@ -0,0 +1,1656 @@
1
+ {
2
+ "file": "history",
3
+ "source": "lib/gamedata/history.txt",
4
+ "records": [
5
+ {
6
+ "chart": {
7
+ "chart": 1,
8
+ "next": 2,
9
+ "roll": 10
10
+ },
11
+ "phrase": [
12
+ "You are the illegitimate and unacknowledged child "
13
+ ]
14
+ },
15
+ {
16
+ "chart": {
17
+ "chart": 1,
18
+ "next": 2,
19
+ "roll": 20
20
+ },
21
+ "phrase": [
22
+ "You are the illegitimate but acknowledged child "
23
+ ]
24
+ },
25
+ {
26
+ "chart": {
27
+ "chart": 1,
28
+ "next": 2,
29
+ "roll": 95
30
+ },
31
+ "phrase": [
32
+ "You are one of several children "
33
+ ]
34
+ },
35
+ {
36
+ "chart": {
37
+ "chart": 1,
38
+ "next": 2,
39
+ "roll": 100
40
+ },
41
+ "phrase": [
42
+ "You are the first child "
43
+ ]
44
+ },
45
+ {
46
+ "chart": {
47
+ "chart": 2,
48
+ "next": 3,
49
+ "roll": 40
50
+ },
51
+ "phrase": [
52
+ "of a Serf. "
53
+ ]
54
+ },
55
+ {
56
+ "chart": {
57
+ "chart": 2,
58
+ "next": 3,
59
+ "roll": 65
60
+ },
61
+ "phrase": [
62
+ "of a Yeoman. "
63
+ ]
64
+ },
65
+ {
66
+ "chart": {
67
+ "chart": 2,
68
+ "next": 3,
69
+ "roll": 80
70
+ },
71
+ "phrase": [
72
+ "of a Townsman. "
73
+ ]
74
+ },
75
+ {
76
+ "chart": {
77
+ "chart": 2,
78
+ "next": 3,
79
+ "roll": 90
80
+ },
81
+ "phrase": [
82
+ "of a Guildsman. "
83
+ ]
84
+ },
85
+ {
86
+ "chart": {
87
+ "chart": 2,
88
+ "next": 3,
89
+ "roll": 96
90
+ },
91
+ "phrase": [
92
+ "of a Landed Knight. "
93
+ ]
94
+ },
95
+ {
96
+ "chart": {
97
+ "chart": 2,
98
+ "next": 3,
99
+ "roll": 99
100
+ },
101
+ "phrase": [
102
+ "of a Titled Noble. "
103
+ ]
104
+ },
105
+ {
106
+ "chart": {
107
+ "chart": 2,
108
+ "next": 3,
109
+ "roll": 100
110
+ },
111
+ "phrase": [
112
+ "of a Royal Blood Line. "
113
+ ]
114
+ },
115
+ {
116
+ "chart": {
117
+ "chart": 3,
118
+ "next": 50,
119
+ "roll": 20
120
+ },
121
+ "phrase": [
122
+ "You are the black sheep of the family. "
123
+ ]
124
+ },
125
+ {
126
+ "chart": {
127
+ "chart": 3,
128
+ "next": 50,
129
+ "roll": 80
130
+ },
131
+ "phrase": [
132
+ "You are a credit to the family. "
133
+ ]
134
+ },
135
+ {
136
+ "chart": {
137
+ "chart": 3,
138
+ "next": 50,
139
+ "roll": 100
140
+ },
141
+ "phrase": [
142
+ "You are a well liked child. "
143
+ ]
144
+ },
145
+ {
146
+ "chart": {
147
+ "chart": 4,
148
+ "next": 1,
149
+ "roll": 15
150
+ },
151
+ "phrase": [
152
+ "Your mother was of the Avari. "
153
+ ]
154
+ },
155
+ {
156
+ "chart": {
157
+ "chart": 4,
158
+ "next": 1,
159
+ "roll": 30
160
+ },
161
+ "phrase": [
162
+ "Your father was of the Avari. "
163
+ ]
164
+ },
165
+ {
166
+ "chart": {
167
+ "chart": 4,
168
+ "next": 1,
169
+ "roll": 50
170
+ },
171
+ "phrase": [
172
+ "Your mother was of the Nandor. "
173
+ ]
174
+ },
175
+ {
176
+ "chart": {
177
+ "chart": 4,
178
+ "next": 1,
179
+ "roll": 70
180
+ },
181
+ "phrase": [
182
+ "Your father was of the Nandor. "
183
+ ]
184
+ },
185
+ {
186
+ "chart": {
187
+ "chart": 4,
188
+ "next": 1,
189
+ "roll": 85
190
+ },
191
+ "phrase": [
192
+ "Your mother was of the Sindar. "
193
+ ]
194
+ },
195
+ {
196
+ "chart": {
197
+ "chart": 4,
198
+ "next": 1,
199
+ "roll": 95
200
+ },
201
+ "phrase": [
202
+ "Your father was of the Sindar. "
203
+ ]
204
+ },
205
+ {
206
+ "chart": {
207
+ "chart": 4,
208
+ "next": 1,
209
+ "roll": 98
210
+ },
211
+ "phrase": [
212
+ "Your mother was of the Noldor. "
213
+ ]
214
+ },
215
+ {
216
+ "chart": {
217
+ "chart": 4,
218
+ "next": 1,
219
+ "roll": 100
220
+ },
221
+ "phrase": [
222
+ "Your father was of the Noldor. "
223
+ ]
224
+ },
225
+ {
226
+ "chart": {
227
+ "chart": 5,
228
+ "next": 6,
229
+ "roll": 60
230
+ },
231
+ "phrase": [
232
+ "You are one of several children "
233
+ ]
234
+ },
235
+ {
236
+ "chart": {
237
+ "chart": 5,
238
+ "next": 6,
239
+ "roll": 100
240
+ },
241
+ "phrase": [
242
+ "You are the only child "
243
+ ]
244
+ },
245
+ {
246
+ "chart": {
247
+ "chart": 6,
248
+ "next": 9,
249
+ "roll": 40
250
+ },
251
+ "phrase": [
252
+ "of an Avarin "
253
+ ]
254
+ },
255
+ {
256
+ "chart": {
257
+ "chart": 6,
258
+ "next": 9,
259
+ "roll": 70
260
+ },
261
+ "phrase": [
262
+ "of a Nandorin "
263
+ ]
264
+ },
265
+ {
266
+ "chart": {
267
+ "chart": 6,
268
+ "next": 9,
269
+ "roll": 100
270
+ },
271
+ "phrase": [
272
+ "of a Sindarin "
273
+ ]
274
+ },
275
+ {
276
+ "chart": {
277
+ "chart": 7,
278
+ "next": 8,
279
+ "roll": 60
280
+ },
281
+ "phrase": [
282
+ "You are one of several children "
283
+ ]
284
+ },
285
+ {
286
+ "chart": {
287
+ "chart": 7,
288
+ "next": 8,
289
+ "roll": 100
290
+ },
291
+ "phrase": [
292
+ "You are the only child "
293
+ ]
294
+ },
295
+ {
296
+ "chart": {
297
+ "chart": 8,
298
+ "next": 9,
299
+ "roll": 75
300
+ },
301
+ "phrase": [
302
+ "of a Telerin "
303
+ ]
304
+ },
305
+ {
306
+ "chart": {
307
+ "chart": 8,
308
+ "next": 9,
309
+ "roll": 95
310
+ },
311
+ "phrase": [
312
+ "of a Noldorin "
313
+ ]
314
+ },
315
+ {
316
+ "chart": {
317
+ "chart": 8,
318
+ "next": 9,
319
+ "roll": 100
320
+ },
321
+ "phrase": [
322
+ "of a Vanyarin "
323
+ ]
324
+ },
325
+ {
326
+ "chart": {
327
+ "chart": 9,
328
+ "next": 54,
329
+ "roll": 40
330
+ },
331
+ "phrase": [
332
+ "Ranger. "
333
+ ]
334
+ },
335
+ {
336
+ "chart": {
337
+ "chart": 9,
338
+ "next": 54,
339
+ "roll": 70
340
+ },
341
+ "phrase": [
342
+ "Archer. "
343
+ ]
344
+ },
345
+ {
346
+ "chart": {
347
+ "chart": 9,
348
+ "next": 54,
349
+ "roll": 87
350
+ },
351
+ "phrase": [
352
+ "Warrior. "
353
+ ]
354
+ },
355
+ {
356
+ "chart": {
357
+ "chart": 9,
358
+ "next": 54,
359
+ "roll": 95
360
+ },
361
+ "phrase": [
362
+ "Mage. "
363
+ ]
364
+ },
365
+ {
366
+ "chart": {
367
+ "chart": 9,
368
+ "next": 54,
369
+ "roll": 99
370
+ },
371
+ "phrase": [
372
+ "Prince. "
373
+ ]
374
+ },
375
+ {
376
+ "chart": {
377
+ "chart": 9,
378
+ "next": 54,
379
+ "roll": 100
380
+ },
381
+ "phrase": [
382
+ "King. "
383
+ ]
384
+ },
385
+ {
386
+ "chart": {
387
+ "chart": 10,
388
+ "next": 11,
389
+ "roll": 85
390
+ },
391
+ "phrase": [
392
+ "You are one of several children of a Hobbit "
393
+ ]
394
+ },
395
+ {
396
+ "chart": {
397
+ "chart": 10,
398
+ "next": 11,
399
+ "roll": 100
400
+ },
401
+ "phrase": [
402
+ "You are the only child of a Hobbit "
403
+ ]
404
+ },
405
+ {
406
+ "chart": {
407
+ "chart": 11,
408
+ "next": 3,
409
+ "roll": 20
410
+ },
411
+ "phrase": [
412
+ "Burglar. "
413
+ ]
414
+ },
415
+ {
416
+ "chart": {
417
+ "chart": 11,
418
+ "next": 3,
419
+ "roll": 30
420
+ },
421
+ "phrase": [
422
+ "Miller. "
423
+ ]
424
+ },
425
+ {
426
+ "chart": {
427
+ "chart": 11,
428
+ "next": 3,
429
+ "roll": 40
430
+ },
431
+ "phrase": [
432
+ "Tavern Owner. "
433
+ ]
434
+ },
435
+ {
436
+ "chart": {
437
+ "chart": 11,
438
+ "next": 3,
439
+ "roll": 50
440
+ },
441
+ "phrase": [
442
+ "Archer. "
443
+ ]
444
+ },
445
+ {
446
+ "chart": {
447
+ "chart": 11,
448
+ "next": 3,
449
+ "roll": 80
450
+ },
451
+ "phrase": [
452
+ "Warrior. "
453
+ ]
454
+ },
455
+ {
456
+ "chart": {
457
+ "chart": 11,
458
+ "next": 3,
459
+ "roll": 95
460
+ },
461
+ "phrase": [
462
+ "Shirriff. "
463
+ ]
464
+ },
465
+ {
466
+ "chart": {
467
+ "chart": 11,
468
+ "next": 3,
469
+ "roll": 99
470
+ },
471
+ "phrase": [
472
+ "Mayor. "
473
+ ]
474
+ },
475
+ {
476
+ "chart": {
477
+ "chart": 11,
478
+ "next": 3,
479
+ "roll": 100
480
+ },
481
+ "phrase": [
482
+ "Clan Elder. "
483
+ ]
484
+ },
485
+ {
486
+ "chart": {
487
+ "chart": 13,
488
+ "next": 14,
489
+ "roll": 85
490
+ },
491
+ "phrase": [
492
+ "You are one of several children of a Gnome "
493
+ ]
494
+ },
495
+ {
496
+ "chart": {
497
+ "chart": 13,
498
+ "next": 14,
499
+ "roll": 100
500
+ },
501
+ "phrase": [
502
+ "You are the only child of a Gnome "
503
+ ]
504
+ },
505
+ {
506
+ "chart": {
507
+ "chart": 14,
508
+ "next": 3,
509
+ "roll": 20
510
+ },
511
+ "phrase": [
512
+ "Beggar. "
513
+ ]
514
+ },
515
+ {
516
+ "chart": {
517
+ "chart": 14,
518
+ "next": 3,
519
+ "roll": 50
520
+ },
521
+ "phrase": [
522
+ "Braggart. "
523
+ ]
524
+ },
525
+ {
526
+ "chart": {
527
+ "chart": 14,
528
+ "next": 3,
529
+ "roll": 75
530
+ },
531
+ "phrase": [
532
+ "Prankster. "
533
+ ]
534
+ },
535
+ {
536
+ "chart": {
537
+ "chart": 14,
538
+ "next": 3,
539
+ "roll": 95
540
+ },
541
+ "phrase": [
542
+ "Warrior. "
543
+ ]
544
+ },
545
+ {
546
+ "chart": {
547
+ "chart": 14,
548
+ "next": 3,
549
+ "roll": 100
550
+ },
551
+ "phrase": [
552
+ "Mage. "
553
+ ]
554
+ },
555
+ {
556
+ "chart": {
557
+ "chart": 16,
558
+ "next": 17,
559
+ "roll": 25
560
+ },
561
+ "phrase": [
562
+ "You are one of two children of a Dwarven "
563
+ ]
564
+ },
565
+ {
566
+ "chart": {
567
+ "chart": 16,
568
+ "next": 17,
569
+ "roll": 100
570
+ },
571
+ "phrase": [
572
+ "You are the only child of a Dwarven "
573
+ ]
574
+ },
575
+ {
576
+ "chart": {
577
+ "chart": 17,
578
+ "next": 18,
579
+ "roll": 10
580
+ },
581
+ "phrase": [
582
+ "Thief. "
583
+ ]
584
+ },
585
+ {
586
+ "chart": {
587
+ "chart": 17,
588
+ "next": 18,
589
+ "roll": 25
590
+ },
591
+ "phrase": [
592
+ "Prison Guard. "
593
+ ]
594
+ },
595
+ {
596
+ "chart": {
597
+ "chart": 17,
598
+ "next": 18,
599
+ "roll": 75
600
+ },
601
+ "phrase": [
602
+ "Miner. "
603
+ ]
604
+ },
605
+ {
606
+ "chart": {
607
+ "chart": 17,
608
+ "next": 18,
609
+ "roll": 90
610
+ },
611
+ "phrase": [
612
+ "Warrior. "
613
+ ]
614
+ },
615
+ {
616
+ "chart": {
617
+ "chart": 17,
618
+ "next": 18,
619
+ "roll": 99
620
+ },
621
+ "phrase": [
622
+ "Priest. "
623
+ ]
624
+ },
625
+ {
626
+ "chart": {
627
+ "chart": 17,
628
+ "next": 18,
629
+ "roll": 100
630
+ },
631
+ "phrase": [
632
+ "King. "
633
+ ]
634
+ },
635
+ {
636
+ "chart": {
637
+ "chart": 18,
638
+ "next": 57,
639
+ "roll": 15
640
+ },
641
+ "phrase": [
642
+ "You are the black sheep of the family. "
643
+ ]
644
+ },
645
+ {
646
+ "chart": {
647
+ "chart": 18,
648
+ "next": 57,
649
+ "roll": 85
650
+ },
651
+ "phrase": [
652
+ "You are a credit to the family. "
653
+ ]
654
+ },
655
+ {
656
+ "chart": {
657
+ "chart": 18,
658
+ "next": 57,
659
+ "roll": 100
660
+ },
661
+ "phrase": [
662
+ "You are a well liked child. "
663
+ ]
664
+ },
665
+ {
666
+ "chart": {
667
+ "chart": 19,
668
+ "next": 20,
669
+ "roll": 25
670
+ },
671
+ "phrase": [
672
+ "Your mother was an Orc, "
673
+ ]
674
+ },
675
+ {
676
+ "chart": {
677
+ "chart": 19,
678
+ "next": 20,
679
+ "roll": 100
680
+ },
681
+ "phrase": [
682
+ "Your father was an Orc, "
683
+ ]
684
+ },
685
+ {
686
+ "chart": {
687
+ "chart": 20,
688
+ "next": 2,
689
+ "roll": 20
690
+ },
691
+ "phrase": [
692
+ "and it is acknowledged. You are the adopted child "
693
+ ]
694
+ },
695
+ {
696
+ "chart": {
697
+ "chart": 20,
698
+ "next": 2,
699
+ "roll": 100
700
+ },
701
+ "phrase": [
702
+ "but it is unacknowledged. You are the adopted child "
703
+ ]
704
+ },
705
+ {
706
+ "chart": {
707
+ "chart": 21,
708
+ "next": 22,
709
+ "roll": 30
710
+ },
711
+ "phrase": [
712
+ "Your mother was a Stone-Troll "
713
+ ]
714
+ },
715
+ {
716
+ "chart": {
717
+ "chart": 21,
718
+ "next": 22,
719
+ "roll": 60
720
+ },
721
+ "phrase": [
722
+ "Your father was a Stone-Troll "
723
+ ]
724
+ },
725
+ {
726
+ "chart": {
727
+ "chart": 21,
728
+ "next": 22,
729
+ "roll": 75
730
+ },
731
+ "phrase": [
732
+ "Your mother was a Cave-Troll "
733
+ ]
734
+ },
735
+ {
736
+ "chart": {
737
+ "chart": 21,
738
+ "next": 22,
739
+ "roll": 90
740
+ },
741
+ "phrase": [
742
+ "Your father was a Cave-Troll "
743
+ ]
744
+ },
745
+ {
746
+ "chart": {
747
+ "chart": 21,
748
+ "next": 22,
749
+ "roll": 95
750
+ },
751
+ "phrase": [
752
+ "Your mother was a Water-Troll "
753
+ ]
754
+ },
755
+ {
756
+ "chart": {
757
+ "chart": 21,
758
+ "next": 22,
759
+ "roll": 100
760
+ },
761
+ "phrase": [
762
+ "Your father was a Water-Troll "
763
+ ]
764
+ },
765
+ {
766
+ "chart": {
767
+ "chart": 22,
768
+ "next": 62,
769
+ "roll": 5
770
+ },
771
+ "phrase": [
772
+ "Cook. "
773
+ ]
774
+ },
775
+ {
776
+ "chart": {
777
+ "chart": 22,
778
+ "next": 62,
779
+ "roll": 95
780
+ },
781
+ "phrase": [
782
+ "Warrior. "
783
+ ]
784
+ },
785
+ {
786
+ "chart": {
787
+ "chart": 22,
788
+ "next": 62,
789
+ "roll": 99
790
+ },
791
+ "phrase": [
792
+ "Shaman. "
793
+ ]
794
+ },
795
+ {
796
+ "chart": {
797
+ "chart": 22,
798
+ "next": 62,
799
+ "roll": 100
800
+ },
801
+ "phrase": [
802
+ "Clan Chief. "
803
+ ]
804
+ },
805
+ {
806
+ "chart": {
807
+ "chart": 23,
808
+ "next": 24,
809
+ "roll": 20
810
+ },
811
+ "phrase": [
812
+ "You are the runt of "
813
+ ]
814
+ },
815
+ {
816
+ "chart": {
817
+ "chart": 23,
818
+ "next": 24,
819
+ "roll": 80
820
+ },
821
+ "phrase": [
822
+ "You come from "
823
+ ]
824
+ },
825
+ {
826
+ "chart": {
827
+ "chart": 23,
828
+ "next": 24,
829
+ "roll": 100
830
+ },
831
+ "phrase": [
832
+ "You are the largest of "
833
+ ]
834
+ },
835
+ {
836
+ "chart": {
837
+ "chart": 24,
838
+ "next": 25,
839
+ "roll": 15
840
+ },
841
+ "phrase": [
842
+ "a litter of 3 pups. "
843
+ ]
844
+ },
845
+ {
846
+ "chart": {
847
+ "chart": 24,
848
+ "next": 25,
849
+ "roll": 40
850
+ },
851
+ "phrase": [
852
+ "a litter of 4 pups. "
853
+ ]
854
+ },
855
+ {
856
+ "chart": {
857
+ "chart": 24,
858
+ "next": 25,
859
+ "roll": 70
860
+ },
861
+ "phrase": [
862
+ "a litter of 5 pups. "
863
+ ]
864
+ },
865
+ {
866
+ "chart": {
867
+ "chart": 24,
868
+ "next": 25,
869
+ "roll": 85
870
+ },
871
+ "phrase": [
872
+ "a litter of 6 pups. "
873
+ ]
874
+ },
875
+ {
876
+ "chart": {
877
+ "chart": 24,
878
+ "next": 25,
879
+ "roll": 95
880
+ },
881
+ "phrase": [
882
+ "a litter of 7 pups. "
883
+ ]
884
+ },
885
+ {
886
+ "chart": {
887
+ "chart": 24,
888
+ "next": 25,
889
+ "roll": 100
890
+ },
891
+ "phrase": [
892
+ "a litter of 8 pups. "
893
+ ]
894
+ },
895
+ {
896
+ "chart": {
897
+ "chart": 25,
898
+ "next": 26,
899
+ "roll": 25
900
+ },
901
+ "phrase": [
902
+ "Your father was a fungus farmer, "
903
+ ]
904
+ },
905
+ {
906
+ "chart": {
907
+ "chart": 25,
908
+ "next": 26,
909
+ "roll": 50
910
+ },
911
+ "phrase": [
912
+ "Your father was a hunter, "
913
+ ]
914
+ },
915
+ {
916
+ "chart": {
917
+ "chart": 25,
918
+ "next": 26,
919
+ "roll": 75
920
+ },
921
+ "phrase": [
922
+ "Your father was a warrior, "
923
+ ]
924
+ },
925
+ {
926
+ "chart": {
927
+ "chart": 25,
928
+ "next": 26,
929
+ "roll": 95
930
+ },
931
+ "phrase": [
932
+ "Your father was a shaman, "
933
+ ]
934
+ },
935
+ {
936
+ "chart": {
937
+ "chart": 25,
938
+ "next": 26,
939
+ "roll": 100
940
+ },
941
+ "phrase": [
942
+ "Your father was the tribal chief, "
943
+ ]
944
+ },
945
+ {
946
+ "chart": {
947
+ "chart": 26,
948
+ "next": 67,
949
+ "roll": 20
950
+ },
951
+ "phrase": [
952
+ "and your mother was a prisoner of war. "
953
+ ]
954
+ },
955
+ {
956
+ "chart": {
957
+ "chart": 26,
958
+ "next": 67,
959
+ "roll": 95
960
+ },
961
+ "phrase": [
962
+ "and your mother was a cook. "
963
+ ]
964
+ },
965
+ {
966
+ "chart": {
967
+ "chart": 26,
968
+ "next": 67,
969
+ "roll": 100
970
+ },
971
+ "phrase": [
972
+ "and your mother was one of the Chief's harem. "
973
+ ]
974
+ },
975
+ {
976
+ "chart": {
977
+ "chart": 50,
978
+ "next": 51,
979
+ "roll": 20
980
+ },
981
+ "phrase": [
982
+ "You have dark brown eyes, "
983
+ ]
984
+ },
985
+ {
986
+ "chart": {
987
+ "chart": 50,
988
+ "next": 51,
989
+ "roll": 60
990
+ },
991
+ "phrase": [
992
+ "You have brown eyes, "
993
+ ]
994
+ },
995
+ {
996
+ "chart": {
997
+ "chart": 50,
998
+ "next": 51,
999
+ "roll": 70
1000
+ },
1001
+ "phrase": [
1002
+ "You have hazel eyes, "
1003
+ ]
1004
+ },
1005
+ {
1006
+ "chart": {
1007
+ "chart": 50,
1008
+ "next": 51,
1009
+ "roll": 80
1010
+ },
1011
+ "phrase": [
1012
+ "You have green eyes, "
1013
+ ]
1014
+ },
1015
+ {
1016
+ "chart": {
1017
+ "chart": 50,
1018
+ "next": 51,
1019
+ "roll": 90
1020
+ },
1021
+ "phrase": [
1022
+ "You have blue eyes, "
1023
+ ]
1024
+ },
1025
+ {
1026
+ "chart": {
1027
+ "chart": 50,
1028
+ "next": 51,
1029
+ "roll": 100
1030
+ },
1031
+ "phrase": [
1032
+ "You have blue-gray eyes, "
1033
+ ]
1034
+ },
1035
+ {
1036
+ "chart": {
1037
+ "chart": 51,
1038
+ "next": 52,
1039
+ "roll": 70
1040
+ },
1041
+ "phrase": [
1042
+ "straight "
1043
+ ]
1044
+ },
1045
+ {
1046
+ "chart": {
1047
+ "chart": 51,
1048
+ "next": 52,
1049
+ "roll": 90
1050
+ },
1051
+ "phrase": [
1052
+ "wavy "
1053
+ ]
1054
+ },
1055
+ {
1056
+ "chart": {
1057
+ "chart": 51,
1058
+ "next": 52,
1059
+ "roll": 100
1060
+ },
1061
+ "phrase": [
1062
+ "curly "
1063
+ ]
1064
+ },
1065
+ {
1066
+ "chart": {
1067
+ "chart": 52,
1068
+ "next": 53,
1069
+ "roll": 30
1070
+ },
1071
+ "phrase": [
1072
+ "black hair, "
1073
+ ]
1074
+ },
1075
+ {
1076
+ "chart": {
1077
+ "chart": 52,
1078
+ "next": 53,
1079
+ "roll": 70
1080
+ },
1081
+ "phrase": [
1082
+ "brown hair, "
1083
+ ]
1084
+ },
1085
+ {
1086
+ "chart": {
1087
+ "chart": 52,
1088
+ "next": 53,
1089
+ "roll": 80
1090
+ },
1091
+ "phrase": [
1092
+ "auburn hair, "
1093
+ ]
1094
+ },
1095
+ {
1096
+ "chart": {
1097
+ "chart": 52,
1098
+ "next": 53,
1099
+ "roll": 90
1100
+ },
1101
+ "phrase": [
1102
+ "red hair, "
1103
+ ]
1104
+ },
1105
+ {
1106
+ "chart": {
1107
+ "chart": 52,
1108
+ "next": 53,
1109
+ "roll": 100
1110
+ },
1111
+ "phrase": [
1112
+ "blond hair, "
1113
+ ]
1114
+ },
1115
+ {
1116
+ "chart": {
1117
+ "chart": 53,
1118
+ "next": 0,
1119
+ "roll": 10
1120
+ },
1121
+ "phrase": [
1122
+ "and a very dark complexion."
1123
+ ]
1124
+ },
1125
+ {
1126
+ "chart": {
1127
+ "chart": 53,
1128
+ "next": 0,
1129
+ "roll": 30
1130
+ },
1131
+ "phrase": [
1132
+ "and a dark complexion."
1133
+ ]
1134
+ },
1135
+ {
1136
+ "chart": {
1137
+ "chart": 53,
1138
+ "next": 0,
1139
+ "roll": 80
1140
+ },
1141
+ "phrase": [
1142
+ "and an average complexion."
1143
+ ]
1144
+ },
1145
+ {
1146
+ "chart": {
1147
+ "chart": 53,
1148
+ "next": 0,
1149
+ "roll": 90
1150
+ },
1151
+ "phrase": [
1152
+ "and a fair complexion."
1153
+ ]
1154
+ },
1155
+ {
1156
+ "chart": {
1157
+ "chart": 53,
1158
+ "next": 0,
1159
+ "roll": 100
1160
+ },
1161
+ "phrase": [
1162
+ "and a very fair complexion."
1163
+ ]
1164
+ },
1165
+ {
1166
+ "chart": {
1167
+ "chart": 54,
1168
+ "next": 55,
1169
+ "roll": 85
1170
+ },
1171
+ "phrase": [
1172
+ "You have light grey eyes, "
1173
+ ]
1174
+ },
1175
+ {
1176
+ "chart": {
1177
+ "chart": 54,
1178
+ "next": 55,
1179
+ "roll": 95
1180
+ },
1181
+ "phrase": [
1182
+ "You have light blue eyes, "
1183
+ ]
1184
+ },
1185
+ {
1186
+ "chart": {
1187
+ "chart": 54,
1188
+ "next": 55,
1189
+ "roll": 100
1190
+ },
1191
+ "phrase": [
1192
+ "You have light green eyes, "
1193
+ ]
1194
+ },
1195
+ {
1196
+ "chart": {
1197
+ "chart": 55,
1198
+ "next": 56,
1199
+ "roll": 75
1200
+ },
1201
+ "phrase": [
1202
+ "straight "
1203
+ ]
1204
+ },
1205
+ {
1206
+ "chart": {
1207
+ "chart": 55,
1208
+ "next": 56,
1209
+ "roll": 100
1210
+ },
1211
+ "phrase": [
1212
+ "wavy "
1213
+ ]
1214
+ },
1215
+ {
1216
+ "chart": {
1217
+ "chart": 56,
1218
+ "next": 0,
1219
+ "roll": 75
1220
+ },
1221
+ "phrase": [
1222
+ "black hair, and a fair complexion."
1223
+ ]
1224
+ },
1225
+ {
1226
+ "chart": {
1227
+ "chart": 56,
1228
+ "next": 0,
1229
+ "roll": 85
1230
+ },
1231
+ "phrase": [
1232
+ "brown hair, and a fair complexion."
1233
+ ]
1234
+ },
1235
+ {
1236
+ "chart": {
1237
+ "chart": 56,
1238
+ "next": 0,
1239
+ "roll": 95
1240
+ },
1241
+ "phrase": [
1242
+ "blond hair, and a fair complexion."
1243
+ ]
1244
+ },
1245
+ {
1246
+ "chart": {
1247
+ "chart": 56,
1248
+ "next": 0,
1249
+ "roll": 100
1250
+ },
1251
+ "phrase": [
1252
+ "silver hair, and a fair complexion."
1253
+ ]
1254
+ },
1255
+ {
1256
+ "chart": {
1257
+ "chart": 57,
1258
+ "next": 58,
1259
+ "roll": 99
1260
+ },
1261
+ "phrase": [
1262
+ "You have dark brown eyes, "
1263
+ ]
1264
+ },
1265
+ {
1266
+ "chart": {
1267
+ "chart": 57,
1268
+ "next": 58,
1269
+ "roll": 100
1270
+ },
1271
+ "phrase": [
1272
+ "You have glowing red eyes, "
1273
+ ]
1274
+ },
1275
+ {
1276
+ "chart": {
1277
+ "chart": 58,
1278
+ "next": 59,
1279
+ "roll": 90
1280
+ },
1281
+ "phrase": [
1282
+ "straight "
1283
+ ]
1284
+ },
1285
+ {
1286
+ "chart": {
1287
+ "chart": 58,
1288
+ "next": 59,
1289
+ "roll": 100
1290
+ },
1291
+ "phrase": [
1292
+ "wavy "
1293
+ ]
1294
+ },
1295
+ {
1296
+ "chart": {
1297
+ "chart": 59,
1298
+ "next": 60,
1299
+ "roll": 75
1300
+ },
1301
+ "phrase": [
1302
+ "black hair, "
1303
+ ]
1304
+ },
1305
+ {
1306
+ "chart": {
1307
+ "chart": 59,
1308
+ "next": 60,
1309
+ "roll": 100
1310
+ },
1311
+ "phrase": [
1312
+ "brown hair, "
1313
+ ]
1314
+ },
1315
+ {
1316
+ "chart": {
1317
+ "chart": 60,
1318
+ "next": 61,
1319
+ "roll": 25
1320
+ },
1321
+ "phrase": [
1322
+ "a one foot beard, "
1323
+ ]
1324
+ },
1325
+ {
1326
+ "chart": {
1327
+ "chart": 60,
1328
+ "next": 61,
1329
+ "roll": 60
1330
+ },
1331
+ "phrase": [
1332
+ "a two foot beard, "
1333
+ ]
1334
+ },
1335
+ {
1336
+ "chart": {
1337
+ "chart": 60,
1338
+ "next": 61,
1339
+ "roll": 90
1340
+ },
1341
+ "phrase": [
1342
+ "a three foot beard, "
1343
+ ]
1344
+ },
1345
+ {
1346
+ "chart": {
1347
+ "chart": 60,
1348
+ "next": 61,
1349
+ "roll": 100
1350
+ },
1351
+ "phrase": [
1352
+ "a four foot beard, "
1353
+ ]
1354
+ },
1355
+ {
1356
+ "chart": {
1357
+ "chart": 61,
1358
+ "next": 0,
1359
+ "roll": 100
1360
+ },
1361
+ "phrase": [
1362
+ "and a dark complexion."
1363
+ ]
1364
+ },
1365
+ {
1366
+ "chart": {
1367
+ "chart": 62,
1368
+ "next": 63,
1369
+ "roll": 60
1370
+ },
1371
+ "phrase": [
1372
+ "You have slime-green eyes, "
1373
+ ]
1374
+ },
1375
+ {
1376
+ "chart": {
1377
+ "chart": 62,
1378
+ "next": 63,
1379
+ "roll": 85
1380
+ },
1381
+ "phrase": [
1382
+ "You have puke-yellow eyes, "
1383
+ ]
1384
+ },
1385
+ {
1386
+ "chart": {
1387
+ "chart": 62,
1388
+ "next": 63,
1389
+ "roll": 99
1390
+ },
1391
+ "phrase": [
1392
+ "You have blue-bloodshot eyes, "
1393
+ ]
1394
+ },
1395
+ {
1396
+ "chart": {
1397
+ "chart": 62,
1398
+ "next": 63,
1399
+ "roll": 100
1400
+ },
1401
+ "phrase": [
1402
+ "You have glowing red eyes, "
1403
+ ]
1404
+ },
1405
+ {
1406
+ "chart": {
1407
+ "chart": 63,
1408
+ "next": 64,
1409
+ "roll": 33
1410
+ },
1411
+ "phrase": [
1412
+ "dirty "
1413
+ ]
1414
+ },
1415
+ {
1416
+ "chart": {
1417
+ "chart": 63,
1418
+ "next": 64,
1419
+ "roll": 66
1420
+ },
1421
+ "phrase": [
1422
+ "mangy "
1423
+ ]
1424
+ },
1425
+ {
1426
+ "chart": {
1427
+ "chart": 63,
1428
+ "next": 64,
1429
+ "roll": 100
1430
+ },
1431
+ "phrase": [
1432
+ "oily "
1433
+ ]
1434
+ },
1435
+ {
1436
+ "chart": {
1437
+ "chart": 64,
1438
+ "next": 65,
1439
+ "roll": 33
1440
+ },
1441
+ "phrase": [
1442
+ "sea-weed green hair, "
1443
+ ]
1444
+ },
1445
+ {
1446
+ "chart": {
1447
+ "chart": 64,
1448
+ "next": 65,
1449
+ "roll": 66
1450
+ },
1451
+ "phrase": [
1452
+ "bright red hair, "
1453
+ ]
1454
+ },
1455
+ {
1456
+ "chart": {
1457
+ "chart": 64,
1458
+ "next": 65,
1459
+ "roll": 100
1460
+ },
1461
+ "phrase": [
1462
+ "dark purple hair, "
1463
+ ]
1464
+ },
1465
+ {
1466
+ "chart": {
1467
+ "chart": 65,
1468
+ "next": 66,
1469
+ "roll": 25
1470
+ },
1471
+ "phrase": [
1472
+ "and green "
1473
+ ]
1474
+ },
1475
+ {
1476
+ "chart": {
1477
+ "chart": 65,
1478
+ "next": 66,
1479
+ "roll": 50
1480
+ },
1481
+ "phrase": [
1482
+ "and blue "
1483
+ ]
1484
+ },
1485
+ {
1486
+ "chart": {
1487
+ "chart": 65,
1488
+ "next": 66,
1489
+ "roll": 75
1490
+ },
1491
+ "phrase": [
1492
+ "and white "
1493
+ ]
1494
+ },
1495
+ {
1496
+ "chart": {
1497
+ "chart": 65,
1498
+ "next": 66,
1499
+ "roll": 100
1500
+ },
1501
+ "phrase": [
1502
+ "and black "
1503
+ ]
1504
+ },
1505
+ {
1506
+ "chart": {
1507
+ "chart": 66,
1508
+ "next": 0,
1509
+ "roll": 33
1510
+ },
1511
+ "phrase": [
1512
+ "ulcerous skin."
1513
+ ]
1514
+ },
1515
+ {
1516
+ "chart": {
1517
+ "chart": 66,
1518
+ "next": 0,
1519
+ "roll": 66
1520
+ },
1521
+ "phrase": [
1522
+ "scabby skin."
1523
+ ]
1524
+ },
1525
+ {
1526
+ "chart": {
1527
+ "chart": 66,
1528
+ "next": 0,
1529
+ "roll": 100
1530
+ },
1531
+ "phrase": [
1532
+ "leprous skin."
1533
+ ]
1534
+ },
1535
+ {
1536
+ "chart": {
1537
+ "chart": 67,
1538
+ "next": 68,
1539
+ "roll": 10
1540
+ },
1541
+ "phrase": [
1542
+ "You have black eyes, "
1543
+ ]
1544
+ },
1545
+ {
1546
+ "chart": {
1547
+ "chart": 67,
1548
+ "next": 68,
1549
+ "roll": 40
1550
+ },
1551
+ "phrase": [
1552
+ "You have dark brown eyes, "
1553
+ ]
1554
+ },
1555
+ {
1556
+ "chart": {
1557
+ "chart": 67,
1558
+ "next": 68,
1559
+ "roll": 80
1560
+ },
1561
+ "phrase": [
1562
+ "You have brown eyes, "
1563
+ ]
1564
+ },
1565
+ {
1566
+ "chart": {
1567
+ "chart": 67,
1568
+ "next": 68,
1569
+ "roll": 99
1570
+ },
1571
+ "phrase": [
1572
+ "You have light brown eyes, "
1573
+ ]
1574
+ },
1575
+ {
1576
+ "chart": {
1577
+ "chart": 67,
1578
+ "next": 68,
1579
+ "roll": 100
1580
+ },
1581
+ "phrase": [
1582
+ "You have glowing red eyes, "
1583
+ ]
1584
+ },
1585
+ {
1586
+ "chart": {
1587
+ "chart": 68,
1588
+ "next": 69,
1589
+ "roll": 40
1590
+ },
1591
+ "phrase": [
1592
+ "a dark brown hide, "
1593
+ ]
1594
+ },
1595
+ {
1596
+ "chart": {
1597
+ "chart": 68,
1598
+ "next": 69,
1599
+ "roll": 60
1600
+ },
1601
+ "phrase": [
1602
+ "a reddish-brown hide, "
1603
+ ]
1604
+ },
1605
+ {
1606
+ "chart": {
1607
+ "chart": 68,
1608
+ "next": 69,
1609
+ "roll": 95
1610
+ },
1611
+ "phrase": [
1612
+ "an olive green hide, "
1613
+ ]
1614
+ },
1615
+ {
1616
+ "chart": {
1617
+ "chart": 68,
1618
+ "next": 69,
1619
+ "roll": 100
1620
+ },
1621
+ "phrase": [
1622
+ "a deep blue hide, "
1623
+ ]
1624
+ },
1625
+ {
1626
+ "chart": {
1627
+ "chart": 69,
1628
+ "next": 0,
1629
+ "roll": 10
1630
+ },
1631
+ "phrase": [
1632
+ "and large, flat teeth."
1633
+ ]
1634
+ },
1635
+ {
1636
+ "chart": {
1637
+ "chart": 69,
1638
+ "next": 0,
1639
+ "roll": 90
1640
+ },
1641
+ "phrase": [
1642
+ "and small, sharp teeth."
1643
+ ]
1644
+ },
1645
+ {
1646
+ "chart": {
1647
+ "chart": 69,
1648
+ "next": 0,
1649
+ "roll": 100
1650
+ },
1651
+ "phrase": [
1652
+ "and large, sharp teeth."
1653
+ ]
1654
+ }
1655
+ ]
1656
+ }