@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,1204 @@
1
+ {
2
+ "file": "names",
3
+ "source": "lib/gamedata/names.txt",
4
+ "records": [
5
+ {
6
+ "section": 1,
7
+ "word": [
8
+ "adanedhel",
9
+ "adurant",
10
+ "aeglos",
11
+ "aegnor",
12
+ "aelin",
13
+ "aeluin",
14
+ "aerandir",
15
+ "aerin",
16
+ "agarwaen",
17
+ "aglareb",
18
+ "aglarond",
19
+ "aglon",
20
+ "ainulindale",
21
+ "ainur",
22
+ "alcarinque",
23
+ "aldaron",
24
+ "aldudenie",
25
+ "almaren",
26
+ "alqualonde",
27
+ "aman",
28
+ "amandil",
29
+ "amarie",
30
+ "amarth",
31
+ "amlach",
32
+ "amon",
33
+ "amras",
34
+ "amrod",
35
+ "anach",
36
+ "anar",
37
+ "anarion",
38
+ "ancalagon",
39
+ "ancalimon",
40
+ "anarrima",
41
+ "andor",
42
+ "andram",
43
+ "androth",
44
+ "anduin",
45
+ "andunie",
46
+ "anfauglir",
47
+ "anfauglith",
48
+ "angainor",
49
+ "angband",
50
+ "anghabar",
51
+ "anglachel",
52
+ "angrenost",
53
+ "angrim",
54
+ "angrist",
55
+ "angrod",
56
+ "anguirel",
57
+ "annael",
58
+ "annatar",
59
+ "annon",
60
+ "annuminas",
61
+ "apanonar",
62
+ "aradan",
63
+ "aragorn",
64
+ "araman",
65
+ "aranel",
66
+ "aranruth",
67
+ "aranwe",
68
+ "aras",
69
+ "aratan",
70
+ "aratar",
71
+ "arathorn",
72
+ "arda",
73
+ "ardgalen",
74
+ "aredhel",
75
+ "arfeiniel",
76
+ "argonath",
77
+ "arien",
78
+ "armenelos",
79
+ "arminas",
80
+ "arnor",
81
+ "aros",
82
+ "arossiach",
83
+ "arthad",
84
+ "arvernien",
85
+ "arwen",
86
+ "ascar",
87
+ "astaldo",
88
+ "atalante",
89
+ "atanamir",
90
+ "atanatari",
91
+ "atani",
92
+ "aule",
93
+ "avallone",
94
+ "avari",
95
+ "avathar",
96
+ "balan",
97
+ "balar",
98
+ "balrog",
99
+ "barad",
100
+ "baragund",
101
+ "barahir",
102
+ "baran",
103
+ "baranduin",
104
+ "bar",
105
+ "bauglir",
106
+ "beleg",
107
+ "belegaer",
108
+ "belegost",
109
+ "belegund",
110
+ "beleriand",
111
+ "belfalas",
112
+ "belthil",
113
+ "belthronding",
114
+ "beor",
115
+ "beraid",
116
+ "bereg",
117
+ "beren",
118
+ "boromir",
119
+ "boron",
120
+ "bragollach",
121
+ "brandir",
122
+ "bregolas",
123
+ "bregor",
124
+ "brethil",
125
+ "brilthor",
126
+ "brithiach",
127
+ "brithombar",
128
+ "brithon",
129
+ "cabed",
130
+ "calacirya",
131
+ "calaquendi",
132
+ "calenardhon",
133
+ "calion",
134
+ "camlost",
135
+ "caragdur",
136
+ "caranthir",
137
+ "carcharoth",
138
+ "cardolan",
139
+ "carnil",
140
+ "celeborn",
141
+ "celebrant",
142
+ "celebrimbor",
143
+ "celebrindal",
144
+ "celebros",
145
+ "celegorm",
146
+ "celon",
147
+ "cirdan",
148
+ "cirith",
149
+ "cirth",
150
+ "ciryatan",
151
+ "ciryon",
152
+ "coimas",
153
+ "corollaire",
154
+ "crissaegrim",
155
+ "cuarthal",
156
+ "cuivienen",
157
+ "culurien",
158
+ "curufin",
159
+ "curufinwe",
160
+ "curunir",
161
+ "cuthalion",
162
+ "daedeloth",
163
+ "daeron",
164
+ "dagnir",
165
+ "dagor",
166
+ "dagorlad",
167
+ "dairuin",
168
+ "danwedh",
169
+ "delduwath",
170
+ "denethor",
171
+ "dimbar",
172
+ "dimrost",
173
+ "dinen",
174
+ "dior",
175
+ "dirnen",
176
+ "dolmed",
177
+ "doriath",
178
+ "dorlas",
179
+ "dorthonion",
180
+ "draugluin",
181
+ "drengist",
182
+ "duath",
183
+ "duinath",
184
+ "duilwen",
185
+ "dunedain",
186
+ "dungortheb",
187
+ "earendil",
188
+ "earendur",
189
+ "earnil",
190
+ "earnur",
191
+ "earrame",
192
+ "earwen",
193
+ "echor",
194
+ "echoriath",
195
+ "ecthelion",
196
+ "edain",
197
+ "edrahil",
198
+ "eglador",
199
+ "eglarest",
200
+ "eglath",
201
+ "eilinel",
202
+ "eithel",
203
+ "ekkaia",
204
+ "elbereth",
205
+ "eldalie",
206
+ "eldalieva",
207
+ "eldamar",
208
+ "eldar",
209
+ "eledhwen",
210
+ "elemmire",
211
+ "elende",
212
+ "elendil",
213
+ "elendur",
214
+ "elenna",
215
+ "elentari",
216
+ "elenwe",
217
+ "elerrina",
218
+ "elleth",
219
+ "elmoth",
220
+ "elostirion",
221
+ "elrond",
222
+ "elros",
223
+ "elu",
224
+ "eluchil",
225
+ "elured",
226
+ "elurin",
227
+ "elwe",
228
+ "elwing",
229
+ "emeldir",
230
+ "endor",
231
+ "engrin",
232
+ "engwar",
233
+ "eol",
234
+ "eonwe",
235
+ "ephel",
236
+ "erchamion",
237
+ "ereb",
238
+ "ered",
239
+ "erech",
240
+ "eregion",
241
+ "ereinion",
242
+ "erellont",
243
+ "eressea",
244
+ "eriador",
245
+ "eru",
246
+ "esgalduin",
247
+ "este",
248
+ "estel",
249
+ "estolad",
250
+ "ethir",
251
+ "ezellohar",
252
+ "faelivrin",
253
+ "falas",
254
+ "falathar",
255
+ "falathrim",
256
+ "falmari",
257
+ "faroth",
258
+ "fauglith",
259
+ "feanor",
260
+ "feanturi",
261
+ "felagund",
262
+ "finarfin",
263
+ "finduilas",
264
+ "fingolfin",
265
+ "fingon",
266
+ "finwe",
267
+ "firimar",
268
+ "formenos",
269
+ "fornost",
270
+ "frodo",
271
+ "fuin",
272
+ "fuinur",
273
+ "gabilgathol",
274
+ "galad",
275
+ "galadriel",
276
+ "galathilion",
277
+ "galdor",
278
+ "galen",
279
+ "galvorn",
280
+ "gandalf",
281
+ "gaurhoth",
282
+ "gelion",
283
+ "gelmir",
284
+ "gelydh",
285
+ "gil",
286
+ "gildor",
287
+ "giliath",
288
+ "ginglith",
289
+ "girith",
290
+ "glaurung",
291
+ "glingal",
292
+ "glirhuin",
293
+ "gloredhel",
294
+ "glorfindel",
295
+ "golodhrim",
296
+ "gondolin",
297
+ "gondor",
298
+ "gonnhirrim",
299
+ "gorgoroth",
300
+ "gorlim",
301
+ "gorthaur",
302
+ "gorthol",
303
+ "gothmog",
304
+ "guilin",
305
+ "guinar",
306
+ "guldur",
307
+ "gundor",
308
+ "gurthang",
309
+ "gwaith",
310
+ "gwareth",
311
+ "gwindor",
312
+ "hadhodrond",
313
+ "hador",
314
+ "haladin",
315
+ "haldad",
316
+ "haldan",
317
+ "haldar",
318
+ "haldir",
319
+ "haleth",
320
+ "halmir",
321
+ "handir",
322
+ "harad",
323
+ "hareth",
324
+ "hathaldir",
325
+ "hathol",
326
+ "haudh",
327
+ "helcar",
328
+ "helcaraxe",
329
+ "helevorn",
330
+ "helluin",
331
+ "herumor",
332
+ "herunumen",
333
+ "hildorien",
334
+ "himlad",
335
+ "himring",
336
+ "hirilorn",
337
+ "hisilome",
338
+ "hithaeglir",
339
+ "hithlum",
340
+ "hollin",
341
+ "huan",
342
+ "hunthor",
343
+ "huor",
344
+ "hurin",
345
+ "hyarmendacil",
346
+ "hyarmentir",
347
+ "iant",
348
+ "iaur",
349
+ "ibun",
350
+ "idril",
351
+ "illuin",
352
+ "ilmare",
353
+ "ilmen",
354
+ "iluvatar",
355
+ "imlach",
356
+ "imladris",
357
+ "indis",
358
+ "ingwe",
359
+ "irmo",
360
+ "isil",
361
+ "isildur",
362
+ "istari",
363
+ "ithil",
364
+ "ivrin",
365
+ "kelvar",
366
+ "kementari",
367
+ "ladros",
368
+ "laiquendi",
369
+ "lalaith",
370
+ "lamath",
371
+ "lammoth",
372
+ "lanthir",
373
+ "laurelin",
374
+ "leithian",
375
+ "legolin",
376
+ "lembas",
377
+ "lenwe",
378
+ "linaewen",
379
+ "lindon",
380
+ "lindorie",
381
+ "loeg",
382
+ "lomelindi",
383
+ "lomin",
384
+ "lomion",
385
+ "lorellin",
386
+ "lorien",
387
+ "lorindol",
388
+ "losgar",
389
+ "lothlann",
390
+ "lothlorien",
391
+ "luin",
392
+ "luinil",
393
+ "lumbar",
394
+ "luthien",
395
+ "mablung",
396
+ "maedhros",
397
+ "maeglin",
398
+ "maglor",
399
+ "magor",
400
+ "mahanaxar",
401
+ "mahtan",
402
+ "maiar",
403
+ "malduin",
404
+ "malinalda",
405
+ "mandos",
406
+ "manwe",
407
+ "mardil",
408
+ "melian",
409
+ "melkor",
410
+ "menegroth",
411
+ "meneldil",
412
+ "menelmacar",
413
+ "meneltarma",
414
+ "minas",
415
+ "minastir",
416
+ "mindeb",
417
+ "mindolluin",
418
+ "mindon",
419
+ "minyatur",
420
+ "mirdain",
421
+ "miriel",
422
+ "mithlond",
423
+ "mithrandir",
424
+ "mithrim",
425
+ "mordor",
426
+ "morgoth",
427
+ "morgul",
428
+ "moria",
429
+ "moriquendi",
430
+ "mormegil",
431
+ "morwen",
432
+ "nahar",
433
+ "naeramarth",
434
+ "namo",
435
+ "nandor",
436
+ "nargothrond",
437
+ "narog",
438
+ "narsil",
439
+ "narsilion",
440
+ "narya",
441
+ "nauglamir",
442
+ "naugrim",
443
+ "ndengin",
444
+ "neithan",
445
+ "neldoreth",
446
+ "nenar",
447
+ "nenning",
448
+ "nenuial",
449
+ "nenya",
450
+ "nerdanel",
451
+ "nessa",
452
+ "nevrast",
453
+ "nibin",
454
+ "nienna",
455
+ "nienor",
456
+ "nimbrethil",
457
+ "nimloth",
458
+ "nimphelos",
459
+ "nimrais",
460
+ "nimras",
461
+ "ningloron",
462
+ "niniel",
463
+ "ninniach",
464
+ "ninquelote",
465
+ "niphredil",
466
+ "nirnaeth",
467
+ "nivrim",
468
+ "noegyth",
469
+ "nogrod",
470
+ "noldolante",
471
+ "noldor",
472
+ "numenor",
473
+ "nurtale",
474
+ "obel",
475
+ "ohtar",
476
+ "oiolosse",
477
+ "oiomure",
478
+ "olorin",
479
+ "olvar",
480
+ "olwe",
481
+ "ondolinde",
482
+ "orfalch",
483
+ "ormal",
484
+ "orocarni",
485
+ "orodreth",
486
+ "orodruin",
487
+ "orome",
488
+ "oromet",
489
+ "orthanc",
490
+ "osgiliath",
491
+ "osse",
492
+ "ossiriand",
493
+ "palantir",
494
+ "pelargir",
495
+ "pelori",
496
+ "periannath",
497
+ "quendi",
498
+ "quenta",
499
+ "quenya",
500
+ "radagast",
501
+ "radhruin",
502
+ "ragnor",
503
+ "ramdal",
504
+ "rana",
505
+ "rathloriel",
506
+ "rauros",
507
+ "region",
508
+ "rerir",
509
+ "rhovanion",
510
+ "rhudaur",
511
+ "rhun",
512
+ "rhunen",
513
+ "rian",
514
+ "ringil",
515
+ "ringwil",
516
+ "romenna",
517
+ "rudh",
518
+ "rumil",
519
+ "saeros",
520
+ "salmar",
521
+ "saruman",
522
+ "sauron",
523
+ "serech",
524
+ "seregon",
525
+ "serinde",
526
+ "shelob",
527
+ "silmarien",
528
+ "silmaril",
529
+ "silpion",
530
+ "sindar",
531
+ "singollo",
532
+ "sirion",
533
+ "soronume",
534
+ "sul",
535
+ "sulimo",
536
+ "talath",
537
+ "taniquetil",
538
+ "tar",
539
+ "taras",
540
+ "tarn",
541
+ "tathren",
542
+ "taur",
543
+ "tauron",
544
+ "teiglin",
545
+ "telchar",
546
+ "telemnar",
547
+ "teleri",
548
+ "telperion",
549
+ "telumendil",
550
+ "thalion",
551
+ "thalos",
552
+ "thangorodrim",
553
+ "thargelion",
554
+ "thingol",
555
+ "thoronath",
556
+ "thorondor",
557
+ "thranduil",
558
+ "thuringwethil",
559
+ "tilion",
560
+ "tintalle",
561
+ "tinuviel",
562
+ "tirion",
563
+ "tirith",
564
+ "tol",
565
+ "tulkas",
566
+ "tumhalad",
567
+ "tumladen",
568
+ "tuna",
569
+ "tuor",
570
+ "turambar",
571
+ "turgon",
572
+ "turin",
573
+ "uial",
574
+ "uilos",
575
+ "uinen",
576
+ "ulairi",
577
+ "ulmo",
578
+ "ulumuri",
579
+ "umanyar",
580
+ "umarth",
581
+ "umbar",
582
+ "ungoliant",
583
+ "urthel",
584
+ "uruloki",
585
+ "utumno",
586
+ "vaire",
587
+ "valacirca",
588
+ "valandil",
589
+ "valaquenta",
590
+ "valar",
591
+ "valaraukar",
592
+ "valaroma",
593
+ "valier",
594
+ "valimar",
595
+ "valinor",
596
+ "valinoreva",
597
+ "valmar",
598
+ "vana",
599
+ "vanyar",
600
+ "varda",
601
+ "vasa",
602
+ "vilya",
603
+ "vingilot",
604
+ "vinyamar",
605
+ "voronwe",
606
+ "wethrin",
607
+ "wilwarin",
608
+ "yavanna"
609
+ ]
610
+ },
611
+ {
612
+ "section": 2,
613
+ "word": [
614
+ "abracadabra",
615
+ "piffpaffpouf",
616
+ "izzy",
617
+ "wizzy",
618
+ "letsgetsbusy",
619
+ "justlikethat",
620
+ "hocus",
621
+ "pocus",
622
+ "shazam",
623
+ "please",
624
+ "abduco",
625
+ "absorbeo",
626
+ "abutor",
627
+ "accipio",
628
+ "acerbus",
629
+ "adamo",
630
+ "adeo",
631
+ "adficio",
632
+ "adinventitias",
633
+ "admitto",
634
+ "adsidue",
635
+ "adsumo",
636
+ "advenio",
637
+ "aeger",
638
+ "aegrus",
639
+ "aestivus",
640
+ "aggero",
641
+ "ago",
642
+ "alioqui",
643
+ "aliquantum",
644
+ "aliquot",
645
+ "alter",
646
+ "ambianis",
647
+ "amissio",
648
+ "amoveo",
649
+ "andegavense",
650
+ "animus",
651
+ "antepono",
652
+ "appareo",
653
+ "appropinquo",
654
+ "ara",
655
+ "arca",
656
+ "arguo",
657
+ "articulus",
658
+ "ascit",
659
+ "astrum",
660
+ "atrebatum",
661
+ "attonbitus",
662
+ "audax",
663
+ "aureus",
664
+ "autus",
665
+ "averto",
666
+ "bardus",
667
+ "bene",
668
+ "bibo",
669
+ "bonus",
670
+ "breviter",
671
+ "calamitas",
672
+ "callidus",
673
+ "canonus",
674
+ "caput",
675
+ "caritas",
676
+ "casso",
677
+ "catervatim",
678
+ "causa",
679
+ "cedo",
680
+ "celeriter",
681
+ "centum",
682
+ "certus",
683
+ "charisma",
684
+ "cimentarius",
685
+ "cito",
686
+ "clamor",
687
+ "claustrum",
688
+ "coerceo",
689
+ "cogo",
690
+ "colloco",
691
+ "coma",
692
+ "cometissa",
693
+ "commeo",
694
+ "commissum",
695
+ "commoneo",
696
+ "compatior",
697
+ "compes",
698
+ "compositio",
699
+ "comprovincialis",
700
+ "concido",
701
+ "conculco",
702
+ "condico",
703
+ "confiteor",
704
+ "conicio",
705
+ "conor",
706
+ "conservo",
707
+ "consisto",
708
+ "constans",
709
+ "construo",
710
+ "consueta",
711
+ "consulto",
712
+ "consuo",
713
+ "contamino",
714
+ "contemptio",
715
+ "contentus",
716
+ "contineo",
717
+ "contradictio",
718
+ "conventus",
719
+ "copiose",
720
+ "corrigo",
721
+ "corturiacum",
722
+ "crastinus",
723
+ "creo",
724
+ "cribrum",
725
+ "cruentus",
726
+ "cubicularius",
727
+ "cui",
728
+ "culpa",
729
+ "cum",
730
+ "cunctus",
731
+ "cur",
732
+ "curiosus",
733
+ "currus",
734
+ "curto",
735
+ "custodiae",
736
+ "debeo",
737
+ "decimus",
738
+ "decumbo",
739
+ "defendo",
740
+ "defleo",
741
+ "degenero",
742
+ "delego",
743
+ "delinquo",
744
+ "demonstro",
745
+ "dens",
746
+ "depono",
747
+ "deprecor",
748
+ "derelinquo",
749
+ "desino",
750
+ "despero",
751
+ "detego",
752
+ "devito",
753
+ "diabolus",
754
+ "didicerat",
755
+ "differo",
756
+ "dignitas",
757
+ "dilabor",
758
+ "diluculo",
759
+ "diripio",
760
+ "disco",
761
+ "dissimilis",
762
+ "districtus",
763
+ "diutius",
764
+ "divitiae",
765
+ "dolens",
766
+ "domesticus",
767
+ "donec",
768
+ "duco",
769
+ "dulcidine",
770
+ "duro",
771
+ "ecclesia",
772
+ "edo",
773
+ "efficio",
774
+ "ego",
775
+ "elemosina",
776
+ "eluvies",
777
+ "emineo",
778
+ "emptio",
779
+ "epistula",
780
+ "equus",
781
+ "erogo",
782
+ "erudio",
783
+ "etsi",
784
+ "ex",
785
+ "excito",
786
+ "excuso",
787
+ "exesto",
788
+ "exhorresco",
789
+ "eximo",
790
+ "exorior",
791
+ "experior",
792
+ "expiscor",
793
+ "explico",
794
+ "exsequor",
795
+ "exstinguo",
796
+ "extra",
797
+ "fabula",
798
+ "facio",
799
+ "faenum",
800
+ "famulus",
801
+ "fautor",
802
+ "felix",
803
+ "ferme",
804
+ "festinus",
805
+ "fides",
806
+ "fines",
807
+ "flamma",
808
+ "fluo",
809
+ "formo",
810
+ "fortiter",
811
+ "foveo",
812
+ "frequentia",
813
+ "frugalitas",
814
+ "fuga",
815
+ "fultus",
816
+ "furor",
817
+ "galea",
818
+ "genus",
819
+ "glacialis",
820
+ "gratia",
821
+ "gravatus",
822
+ "gregatim",
823
+ "hactenus",
824
+ "harum",
825
+ "heniis",
826
+ "hic",
827
+ "his",
828
+ "hoc",
829
+ "honorabilis",
830
+ "horum",
831
+ "huic",
832
+ "humanitas",
833
+ "hunnam",
834
+ "iam",
835
+ "idem",
836
+ "ignavus",
837
+ "illa",
838
+ "illarum",
839
+ "illi",
840
+ "illis",
841
+ "illius",
842
+ "illorum",
843
+ "illum",
844
+ "imitor",
845
+ "immortalis",
846
+ "impedito",
847
+ "impendo",
848
+ "imperium",
849
+ "importunus",
850
+ "ex",
851
+ "in",
852
+ "incertus",
853
+ "includo",
854
+ "incorruptus",
855
+ "inda",
856
+ "indignatio",
857
+ "induco",
858
+ "inexpugnabilis",
859
+ "infecunditas",
860
+ "infenso",
861
+ "infero",
862
+ "inficio",
863
+ "infigo",
864
+ "infirmitas",
865
+ "infitior",
866
+ "inflatus",
867
+ "infligo",
868
+ "infortunatus",
869
+ "ingemuo",
870
+ "inicio",
871
+ "innotesco",
872
+ "inquis",
873
+ "insciens",
874
+ "insidiae",
875
+ "insperatus",
876
+ "instructus",
877
+ "insurgo",
878
+ "intentio",
879
+ "interdum",
880
+ "intueor",
881
+ "invado",
882
+ "invetero",
883
+ "invisus",
884
+ "ipsemet",
885
+ "irritus",
886
+ "ita",
887
+ "iucunditas",
888
+ "iugis",
889
+ "iussu",
890
+ "jaculum",
891
+ "juventus",
892
+ "labiosus",
893
+ "laboriose",
894
+ "labruscum",
895
+ "lacertosus",
896
+ "lacrimo",
897
+ "lacto",
898
+ "laedo",
899
+ "laetificus",
900
+ "laevus",
901
+ "lamentatio",
902
+ "laqueus",
903
+ "laudo",
904
+ "lectus",
905
+ "lemiscus",
906
+ "lenitas",
907
+ "lentesco",
908
+ "leo",
909
+ "lesciense",
910
+ "leto",
911
+ "levidensis",
912
+ "levo",
913
+ "liber",
914
+ "libere",
915
+ "licet",
916
+ "lino",
917
+ "loci",
918
+ "longe",
919
+ "lucerna",
920
+ "ludio",
921
+ "lupus",
922
+ "macero",
923
+ "maculo",
924
+ "maero",
925
+ "magus",
926
+ "malmundarium",
927
+ "mandatum",
928
+ "manus",
929
+ "matera",
930
+ "me",
931
+ "mei",
932
+ "memor",
933
+ "mensa",
934
+ "meridianus",
935
+ "mica",
936
+ "millies",
937
+ "minuo",
938
+ "miser",
939
+ "mitigo",
940
+ "modio",
941
+ "molestia",
942
+ "monasteriense",
943
+ "monstrum",
944
+ "morior",
945
+ "moveo",
946
+ "multo",
947
+ "mundus",
948
+ "munus",
949
+ "mutuo",
950
+ "nascor",
951
+ "navigo",
952
+ "necesse",
953
+ "nemo",
954
+ "neque",
955
+ "niger",
956
+ "nisi",
957
+ "nivellensem",
958
+ "noceo",
959
+ "non",
960
+ "nos",
961
+ "nota",
962
+ "novus",
963
+ "nunc",
964
+ "nusquam",
965
+ "obdormio",
966
+ "oblivio",
967
+ "obviam",
968
+ "occupo",
969
+ "odium",
970
+ "omitto",
971
+ "onus",
972
+ "oporotheca",
973
+ "opportunitatus",
974
+ "ops",
975
+ "orator",
976
+ "orior",
977
+ "ostium",
978
+ "pactum",
979
+ "palam",
980
+ "par",
981
+ "parens",
982
+ "paro",
983
+ "passer",
984
+ "patiens",
985
+ "patruus",
986
+ "pax",
987
+ "pecus",
988
+ "penitus",
989
+ "per",
990
+ "percutio",
991
+ "perfectus",
992
+ "periclitatus",
993
+ "periurium",
994
+ "perpetro",
995
+ "perseverantia",
996
+ "persuadeo",
997
+ "pertineo",
998
+ "peruro",
999
+ "pessimus",
1000
+ "pestis",
1001
+ "phasma",
1002
+ "pictoratus",
1003
+ "pirus",
1004
+ "placide",
1005
+ "plagiarius",
1006
+ "plecto",
1007
+ "plico",
1008
+ "pluma",
1009
+ "plures",
1010
+ "pluvia",
1011
+ "polenta",
1012
+ "pomum",
1013
+ "porta",
1014
+ "postea",
1015
+ "postulo",
1016
+ "potius",
1017
+ "praebeo",
1018
+ "praecido",
1019
+ "praeda",
1020
+ "praefinio",
1021
+ "praenuntio",
1022
+ "praesentia",
1023
+ "praesto",
1024
+ "praetereo",
1025
+ "pravitas",
1026
+ "premo",
1027
+ "primitus",
1028
+ "principatus",
1029
+ "prius",
1030
+ "pro",
1031
+ "procedo",
1032
+ "procurator",
1033
+ "proficio",
1034
+ "profor",
1035
+ "progenero",
1036
+ "progressio",
1037
+ "proinde",
1038
+ "prolecto",
1039
+ "proloquor",
1040
+ "prominens",
1041
+ "promitto",
1042
+ "promptu",
1043
+ "promus",
1044
+ "propello",
1045
+ "propositum",
1046
+ "prorsus",
1047
+ "prosum",
1048
+ "proveho",
1049
+ "prudens",
1050
+ "pudendus",
1051
+ "puerilis",
1052
+ "pugnax",
1053
+ "pulex",
1054
+ "pulpa",
1055
+ "pumilius",
1056
+ "punitor",
1057
+ "purgatio",
1058
+ "puteo",
1059
+ "pyropus",
1060
+ "quadrigae",
1061
+ "quae",
1062
+ "quaesitio",
1063
+ "qualiscumque",
1064
+ "quam",
1065
+ "quando",
1066
+ "quantum",
1067
+ "quantuslibet",
1068
+ "quas",
1069
+ "quater",
1070
+ "quercus",
1071
+ "queror",
1072
+ "quibus",
1073
+ "quicquid",
1074
+ "quin",
1075
+ "quisnam",
1076
+ "quo",
1077
+ "quodammodo",
1078
+ "quorum",
1079
+ "radicitus",
1080
+ "recedo",
1081
+ "recolo",
1082
+ "rectum",
1083
+ "redarguo",
1084
+ "redeo",
1085
+ "refectorium",
1086
+ "rego",
1087
+ "relinquo",
1088
+ "remaneo",
1089
+ "rependo",
1090
+ "repeto",
1091
+ "reprehendo",
1092
+ "resisto",
1093
+ "retraho",
1094
+ "revoco",
1095
+ "rigor",
1096
+ "rotomagense",
1097
+ "rursus",
1098
+ "sacrilegus",
1099
+ "saeta",
1100
+ "saluto",
1101
+ "sanctimonialis",
1102
+ "sanitas",
1103
+ "sapienter",
1104
+ "satis",
1105
+ "scaldus",
1106
+ "scelus",
1107
+ "scio",
1108
+ "se",
1109
+ "secundum",
1110
+ "secus",
1111
+ "seductor",
1112
+ "sententia",
1113
+ "sepulchrum",
1114
+ "sermo",
1115
+ "servus",
1116
+ "siccus",
1117
+ "silens",
1118
+ "silva",
1119
+ "simulatio",
1120
+ "singultus",
1121
+ "sive",
1122
+ "soleo",
1123
+ "sollicitudo",
1124
+ "solum",
1125
+ "somnio",
1126
+ "sopor",
1127
+ "speciosus",
1128
+ "spero",
1129
+ "spolium",
1130
+ "statim",
1131
+ "stipes",
1132
+ "studio",
1133
+ "sub",
1134
+ "subseco",
1135
+ "succendo",
1136
+ "suggero",
1137
+ "summissus",
1138
+ "super",
1139
+ "superne",
1140
+ "suppellex",
1141
+ "suppono",
1142
+ "suscito",
1143
+ "tabellae",
1144
+ "tactus",
1145
+ "tam",
1146
+ "tandem",
1147
+ "taruennam",
1148
+ "tempero",
1149
+ "templum",
1150
+ "tendo",
1151
+ "tenus",
1152
+ "teres",
1153
+ "tergum",
1154
+ "tero",
1155
+ "tertius",
1156
+ "textor",
1157
+ "thema",
1158
+ "thymbra",
1159
+ "titulus",
1160
+ "torqueo",
1161
+ "toties",
1162
+ "traiectum",
1163
+ "trellum",
1164
+ "tricesimus",
1165
+ "tristis",
1166
+ "tubineus",
1167
+ "tungris",
1168
+ "turpe",
1169
+ "ubi",
1170
+ "ultra",
1171
+ "undique",
1172
+ "unus",
1173
+ "usque",
1174
+ "ut",
1175
+ "utilitas",
1176
+ "utroque",
1177
+ "vado",
1178
+ "validus",
1179
+ "vehementer",
1180
+ "vendolius",
1181
+ "ventus",
1182
+ "verecundia",
1183
+ "versus",
1184
+ "vesica",
1185
+ "vestio",
1186
+ "vicissitudo",
1187
+ "video",
1188
+ "vilicus",
1189
+ "vindico",
1190
+ "virga",
1191
+ "vis",
1192
+ "vivo",
1193
+ "voco",
1194
+ "volo",
1195
+ "voluntas",
1196
+ "volva",
1197
+ "voro",
1198
+ "vulariter",
1199
+ "vulnus",
1200
+ "vultus"
1201
+ ]
1202
+ }
1203
+ ]
1204
+ }