@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,1541 @@
1
+ {
2
+ "file": "flavor",
3
+ "source": "lib/gamedata/flavor.txt",
4
+ "records": [
5
+ {
6
+ "kind": {
7
+ "tval": "ring",
8
+ "glyph": "="
9
+ },
10
+ "flavor": [
11
+ {
12
+ "index": 2,
13
+ "attr": "Green",
14
+ "desc": "Alexandrite"
15
+ },
16
+ {
17
+ "index": 3,
18
+ "attr": "Violet",
19
+ "desc": "Amethyst"
20
+ },
21
+ {
22
+ "index": 4,
23
+ "attr": "Light Blue",
24
+ "desc": "Aquamarine"
25
+ },
26
+ {
27
+ "index": 5,
28
+ "attr": "Light Blue",
29
+ "desc": "Azurite"
30
+ },
31
+ {
32
+ "index": 6,
33
+ "attr": "Light Green",
34
+ "desc": "Beryl"
35
+ },
36
+ {
37
+ "index": 7,
38
+ "attr": "Red",
39
+ "desc": "Bloodstone"
40
+ },
41
+ {
42
+ "index": 8,
43
+ "attr": "White",
44
+ "desc": "Calcite"
45
+ },
46
+ {
47
+ "index": 9,
48
+ "attr": "Red",
49
+ "desc": "Carnelian"
50
+ },
51
+ {
52
+ "index": 10,
53
+ "attr": "Slate",
54
+ "desc": "Corundum"
55
+ },
56
+ {
57
+ "index": 11,
58
+ "attr": "White",
59
+ "desc": "Diamond"
60
+ },
61
+ {
62
+ "index": 12,
63
+ "attr": "Green",
64
+ "desc": "Emerald"
65
+ },
66
+ {
67
+ "index": 13,
68
+ "attr": "Light Green",
69
+ "desc": "Fluorite"
70
+ },
71
+ {
72
+ "index": 14,
73
+ "attr": "Red",
74
+ "desc": "Garnet"
75
+ },
76
+ {
77
+ "index": 15,
78
+ "attr": "Light Slate",
79
+ "desc": "Hematite"
80
+ },
81
+ {
82
+ "index": 16,
83
+ "attr": "Light Green",
84
+ "desc": "Jade"
85
+ },
86
+ {
87
+ "index": 17,
88
+ "attr": "Umber",
89
+ "desc": "Jasper"
90
+ },
91
+ {
92
+ "index": 18,
93
+ "attr": "Blue",
94
+ "desc": "Lapis Lazuli"
95
+ },
96
+ {
97
+ "index": 19,
98
+ "attr": "Green",
99
+ "desc": "Malachite"
100
+ },
101
+ {
102
+ "index": 20,
103
+ "attr": "White",
104
+ "desc": "Marble"
105
+ },
106
+ {
107
+ "index": 21,
108
+ "attr": "Light Slate",
109
+ "desc": "Moonstone"
110
+ },
111
+ {
112
+ "index": 22,
113
+ "attr": "Light Red",
114
+ "desc": "Onyx"
115
+ },
116
+ {
117
+ "index": 23,
118
+ "attr": "Light Slate",
119
+ "desc": "Opal"
120
+ },
121
+ {
122
+ "index": 24,
123
+ "attr": "White",
124
+ "desc": "Pearl"
125
+ },
126
+ {
127
+ "index": 25,
128
+ "attr": "Light Slate",
129
+ "desc": "Quartz"
130
+ },
131
+ {
132
+ "index": 26,
133
+ "attr": "Light Slate",
134
+ "desc": "Quartzite"
135
+ },
136
+ {
137
+ "index": 27,
138
+ "attr": "Light Red",
139
+ "desc": "Rhodonite"
140
+ },
141
+ {
142
+ "index": 30,
143
+ "attr": "Yellow",
144
+ "desc": "Tiger Eye"
145
+ },
146
+ {
147
+ "index": 31,
148
+ "attr": "Yellow",
149
+ "desc": "Topaz"
150
+ },
151
+ {
152
+ "index": 32,
153
+ "attr": "Light Blue",
154
+ "desc": "Turquoise"
155
+ },
156
+ {
157
+ "index": 33,
158
+ "attr": "Light Umber",
159
+ "desc": "Zircon"
160
+ },
161
+ {
162
+ "index": 34,
163
+ "attr": "White",
164
+ "desc": "Platinum"
165
+ },
166
+ {
167
+ "index": 35,
168
+ "attr": "Light Umber",
169
+ "desc": "Bronze"
170
+ },
171
+ {
172
+ "index": 36,
173
+ "attr": "Yellow",
174
+ "desc": "Gold"
175
+ },
176
+ {
177
+ "index": 37,
178
+ "attr": "Light Dark",
179
+ "desc": "Obsidian"
180
+ },
181
+ {
182
+ "index": 38,
183
+ "attr": "Light Slate",
184
+ "desc": "Silver"
185
+ },
186
+ {
187
+ "index": 39,
188
+ "attr": "Umber",
189
+ "desc": "Amber"
190
+ },
191
+ {
192
+ "index": 41,
193
+ "attr": "Light Dark",
194
+ "desc": "Jet"
195
+ },
196
+ {
197
+ "index": 42,
198
+ "attr": "Yellow",
199
+ "desc": "Jewelled"
200
+ },
201
+ {
202
+ "index": 43,
203
+ "attr": "Light Green",
204
+ "desc": "Adamantite"
205
+ }
206
+ ],
207
+ "fixed": [
208
+ {
209
+ "index": 1,
210
+ "sval": "Ring of Power",
211
+ "attr": "Yellow",
212
+ "desc": "Plain Gold"
213
+ },
214
+ {
215
+ "index": 28,
216
+ "sval": "Ring of Fire",
217
+ "attr": "Red",
218
+ "desc": "Ruby"
219
+ },
220
+ {
221
+ "index": 40,
222
+ "sval": "Ring of Adamant",
223
+ "attr": "Light Blue",
224
+ "desc": "Mithril"
225
+ },
226
+ {
227
+ "index": 29,
228
+ "sval": "Ring of Firmament",
229
+ "attr": "Blue",
230
+ "desc": "Sapphire"
231
+ }
232
+ ]
233
+ },
234
+ {
235
+ "kind": {
236
+ "tval": "amulet",
237
+ "glyph": "\""
238
+ },
239
+ "flavor": [
240
+ {
241
+ "index": 45,
242
+ "attr": "Light Umber",
243
+ "desc": "Driftwood"
244
+ },
245
+ {
246
+ "index": 47,
247
+ "attr": "Light Slate",
248
+ "desc": "Agate"
249
+ },
250
+ {
251
+ "index": 48,
252
+ "attr": "White",
253
+ "desc": "Ivory"
254
+ },
255
+ {
256
+ "index": 49,
257
+ "attr": "Light Dark",
258
+ "desc": "Obsidian"
259
+ },
260
+ {
261
+ "index": 50,
262
+ "attr": "White",
263
+ "desc": "Bone"
264
+ },
265
+ {
266
+ "index": 51,
267
+ "attr": "Light Umber",
268
+ "desc": "Brass"
269
+ },
270
+ {
271
+ "index": 53,
272
+ "attr": "Slate",
273
+ "desc": "Pewter"
274
+ },
275
+ {
276
+ "index": 54,
277
+ "attr": "Umber",
278
+ "desc": "Tortoise Shell"
279
+ },
280
+ {
281
+ "index": 56,
282
+ "attr": "Light Blue",
283
+ "desc": "Azure"
284
+ },
285
+ {
286
+ "index": 57,
287
+ "attr": "White",
288
+ "desc": "Crystal"
289
+ },
290
+ {
291
+ "index": 58,
292
+ "attr": "Light Slate",
293
+ "desc": "Silver"
294
+ },
295
+ {
296
+ "index": 59,
297
+ "attr": "Light Umber",
298
+ "desc": "Copper"
299
+ },
300
+ {
301
+ "index": 60,
302
+ "attr": "Umber",
303
+ "desc": "Carved Oak"
304
+ },
305
+ {
306
+ "index": 61,
307
+ "attr": "Light Slate",
308
+ "desc": "Dragon Tooth"
309
+ },
310
+ {
311
+ "index": 62,
312
+ "attr": "Red",
313
+ "desc": "Ruby"
314
+ },
315
+ {
316
+ "index": 63,
317
+ "attr": "Light Blue",
318
+ "desc": "Mithril"
319
+ },
320
+ {
321
+ "index": 64,
322
+ "attr": "Light Green",
323
+ "desc": "Adamant"
324
+ },
325
+ {
326
+ "index": 65,
327
+ "attr": "Slate",
328
+ "desc": "Flint Stone"
329
+ },
330
+ {
331
+ "index": 66,
332
+ "attr": "Light Blue",
333
+ "desc": "Sea Shell"
334
+ },
335
+ {
336
+ "index": 67,
337
+ "attr": "Light Slate",
338
+ "desc": "Mother-of-Pearl"
339
+ }
340
+ ],
341
+ "fixed": [
342
+ {
343
+ "index": 52,
344
+ "sval": "Amulet",
345
+ "attr": "Light Umber",
346
+ "desc": "Bronze"
347
+ },
348
+ {
349
+ "index": 55,
350
+ "sval": "Necklace",
351
+ "attr": "Yellow",
352
+ "desc": "Golden"
353
+ },
354
+ {
355
+ "index": 44,
356
+ "sval": "Elfstone",
357
+ "attr": "Green",
358
+ "desc": "Green"
359
+ },
360
+ {
361
+ "index": 46,
362
+ "sval": "Jewel",
363
+ "attr": "White",
364
+ "desc": "White"
365
+ }
366
+ ]
367
+ },
368
+ {
369
+ "kind": {
370
+ "tval": "staff",
371
+ "glyph": "_"
372
+ },
373
+ "flavor": [
374
+ {
375
+ "index": 68,
376
+ "attr": "Light Umber",
377
+ "desc": "Aspen"
378
+ },
379
+ {
380
+ "index": 69,
381
+ "attr": "Light Umber",
382
+ "desc": "Balsa"
383
+ },
384
+ {
385
+ "index": 70,
386
+ "attr": "Light Umber",
387
+ "desc": "Banyan"
388
+ },
389
+ {
390
+ "index": 71,
391
+ "attr": "Light Umber",
392
+ "desc": "Birch"
393
+ },
394
+ {
395
+ "index": 72,
396
+ "attr": "Light Umber",
397
+ "desc": "Cedar"
398
+ },
399
+ {
400
+ "index": 73,
401
+ "attr": "Light Umber",
402
+ "desc": "Cottonwood"
403
+ },
404
+ {
405
+ "index": 74,
406
+ "attr": "Light Umber",
407
+ "desc": "Cypress"
408
+ },
409
+ {
410
+ "index": 75,
411
+ "attr": "Light Umber",
412
+ "desc": "Dogwood"
413
+ },
414
+ {
415
+ "index": 76,
416
+ "attr": "Light Umber",
417
+ "desc": "Elm"
418
+ },
419
+ {
420
+ "index": 77,
421
+ "attr": "Light Umber",
422
+ "desc": "Eucalyptus"
423
+ },
424
+ {
425
+ "index": 78,
426
+ "attr": "Light Umber",
427
+ "desc": "Hemlock"
428
+ },
429
+ {
430
+ "index": 79,
431
+ "attr": "Light Umber",
432
+ "desc": "Hickory"
433
+ },
434
+ {
435
+ "index": 80,
436
+ "attr": "Umber",
437
+ "desc": "Ironwood"
438
+ },
439
+ {
440
+ "index": 81,
441
+ "attr": "Light Umber",
442
+ "desc": "Locust"
443
+ },
444
+ {
445
+ "index": 82,
446
+ "attr": "Umber",
447
+ "desc": "Mahogany"
448
+ },
449
+ {
450
+ "index": 83,
451
+ "attr": "Umber",
452
+ "desc": "Maple"
453
+ },
454
+ {
455
+ "index": 84,
456
+ "attr": "Umber",
457
+ "desc": "Mulberry"
458
+ },
459
+ {
460
+ "index": 85,
461
+ "attr": "Umber",
462
+ "desc": "Oak"
463
+ },
464
+ {
465
+ "index": 86,
466
+ "attr": "Umber",
467
+ "desc": "Pine"
468
+ },
469
+ {
470
+ "index": 87,
471
+ "attr": "Red",
472
+ "desc": "Redwood"
473
+ },
474
+ {
475
+ "index": 88,
476
+ "attr": "Red",
477
+ "desc": "Rosewood"
478
+ },
479
+ {
480
+ "index": 89,
481
+ "attr": "Light Umber",
482
+ "desc": "Spruce"
483
+ },
484
+ {
485
+ "index": 90,
486
+ "attr": "Light Umber",
487
+ "desc": "Sycamore"
488
+ },
489
+ {
490
+ "index": 91,
491
+ "attr": "Light Umber",
492
+ "desc": "Teak"
493
+ },
494
+ {
495
+ "index": 92,
496
+ "attr": "Umber",
497
+ "desc": "Walnut"
498
+ },
499
+ {
500
+ "index": 93,
501
+ "attr": "Green",
502
+ "desc": "Mistletoe"
503
+ },
504
+ {
505
+ "index": 94,
506
+ "attr": "Light Umber",
507
+ "desc": "Hawthorn"
508
+ },
509
+ {
510
+ "index": 95,
511
+ "attr": "Light Umber",
512
+ "desc": "Bamboo"
513
+ },
514
+ {
515
+ "index": 96,
516
+ "attr": "Light Slate",
517
+ "desc": "Silver Birch"
518
+ },
519
+ {
520
+ "index": 97,
521
+ "attr": "Umber",
522
+ "desc": "Hazel"
523
+ },
524
+ {
525
+ "index": 98,
526
+ "attr": "Yellow",
527
+ "desc": "Golden"
528
+ },
529
+ {
530
+ "index": 99,
531
+ "attr": "Slate",
532
+ "desc": "Blackthorn"
533
+ },
534
+ {
535
+ "index": 100,
536
+ "attr": "Light Umber",
537
+ "desc": "Gnarled"
538
+ },
539
+ {
540
+ "index": 101,
541
+ "attr": "White",
542
+ "desc": "Ivory"
543
+ },
544
+ {
545
+ "index": 102,
546
+ "attr": "Light Umber",
547
+ "desc": "Willow"
548
+ }
549
+ ]
550
+ },
551
+ {
552
+ "kind": {
553
+ "tval": "wand",
554
+ "glyph": "-"
555
+ },
556
+ "flavor": [
557
+ {
558
+ "index": 103,
559
+ "attr": "Light Blue",
560
+ "desc": "Aluminium"
561
+ },
562
+ {
563
+ "index": 104,
564
+ "attr": "Light Dark",
565
+ "desc": "Cast Iron"
566
+ },
567
+ {
568
+ "index": 105,
569
+ "attr": "White",
570
+ "desc": "Chromium"
571
+ },
572
+ {
573
+ "index": 106,
574
+ "attr": "Light Umber",
575
+ "desc": "Copper"
576
+ },
577
+ {
578
+ "index": 107,
579
+ "attr": "Yellow",
580
+ "desc": "Gold"
581
+ },
582
+ {
583
+ "index": 108,
584
+ "attr": "Slate",
585
+ "desc": "Iron"
586
+ },
587
+ {
588
+ "index": 109,
589
+ "attr": "Light Slate",
590
+ "desc": "Magnesium"
591
+ },
592
+ {
593
+ "index": 110,
594
+ "attr": "Light Slate",
595
+ "desc": "Molybdenum"
596
+ },
597
+ {
598
+ "index": 111,
599
+ "attr": "Light Umber",
600
+ "desc": "Nickel"
601
+ },
602
+ {
603
+ "index": 112,
604
+ "attr": "Red",
605
+ "desc": "Rusty"
606
+ },
607
+ {
608
+ "index": 113,
609
+ "attr": "Light Slate",
610
+ "desc": "Silver"
611
+ },
612
+ {
613
+ "index": 114,
614
+ "attr": "Light Slate",
615
+ "desc": "Steel"
616
+ },
617
+ {
618
+ "index": 115,
619
+ "attr": "Light Slate",
620
+ "desc": "Tin"
621
+ },
622
+ {
623
+ "index": 116,
624
+ "attr": "White",
625
+ "desc": "Titanium"
626
+ },
627
+ {
628
+ "index": 117,
629
+ "attr": "White",
630
+ "desc": "Tungsten"
631
+ },
632
+ {
633
+ "index": 118,
634
+ "attr": "Light Slate",
635
+ "desc": "Zirconium"
636
+ },
637
+ {
638
+ "index": 119,
639
+ "attr": "Light Slate",
640
+ "desc": "Zinc"
641
+ },
642
+ {
643
+ "index": 120,
644
+ "attr": "Light Blue",
645
+ "desc": "Aluminium-Plated"
646
+ },
647
+ {
648
+ "index": 121,
649
+ "attr": "Light Umber",
650
+ "desc": "Copper-Plated"
651
+ },
652
+ {
653
+ "index": 122,
654
+ "attr": "Yellow",
655
+ "desc": "Gold-Plated"
656
+ },
657
+ {
658
+ "index": 123,
659
+ "attr": "Light Umber",
660
+ "desc": "Nickel-Plated"
661
+ },
662
+ {
663
+ "index": 124,
664
+ "attr": "Light Slate",
665
+ "desc": "Silver-Plated"
666
+ },
667
+ {
668
+ "index": 125,
669
+ "attr": "Light Slate",
670
+ "desc": "Steel-Plated"
671
+ },
672
+ {
673
+ "index": 126,
674
+ "attr": "Light Slate",
675
+ "desc": "Tin-Plated"
676
+ },
677
+ {
678
+ "index": 127,
679
+ "attr": "Light Slate",
680
+ "desc": "Zinc-Plated"
681
+ },
682
+ {
683
+ "index": 128,
684
+ "attr": "Light Blue",
685
+ "desc": "Mithril-Plated"
686
+ },
687
+ {
688
+ "index": 129,
689
+ "attr": "Light Blue",
690
+ "desc": "Mithril"
691
+ },
692
+ {
693
+ "index": 130,
694
+ "attr": "Umber",
695
+ "desc": "Runed"
696
+ },
697
+ {
698
+ "index": 131,
699
+ "attr": "Light Umber",
700
+ "desc": "Bronze"
701
+ },
702
+ {
703
+ "index": 132,
704
+ "attr": "Light Umber",
705
+ "desc": "Brass"
706
+ },
707
+ {
708
+ "index": 133,
709
+ "attr": "White",
710
+ "desc": "Platinum"
711
+ },
712
+ {
713
+ "index": 134,
714
+ "attr": "Slate",
715
+ "desc": "Lead"
716
+ },
717
+ {
718
+ "index": 135,
719
+ "attr": "Slate",
720
+ "desc": "Lead-Plated"
721
+ },
722
+ {
723
+ "index": 136,
724
+ "attr": "White",
725
+ "desc": "Ivory"
726
+ },
727
+ {
728
+ "index": 137,
729
+ "attr": "Slate",
730
+ "desc": "Pewter"
731
+ }
732
+ ]
733
+ },
734
+ {
735
+ "kind": {
736
+ "tval": "rod",
737
+ "glyph": "-"
738
+ },
739
+ "flavor": [
740
+ {
741
+ "index": 138,
742
+ "attr": "Light Blue",
743
+ "desc": "Aluminium"
744
+ },
745
+ {
746
+ "index": 139,
747
+ "attr": "Light Dark",
748
+ "desc": "Cast Iron"
749
+ },
750
+ {
751
+ "index": 140,
752
+ "attr": "White",
753
+ "desc": "Chromium"
754
+ },
755
+ {
756
+ "index": 141,
757
+ "attr": "Light Umber",
758
+ "desc": "Copper"
759
+ },
760
+ {
761
+ "index": 142,
762
+ "attr": "Yellow",
763
+ "desc": "Gold"
764
+ },
765
+ {
766
+ "index": 143,
767
+ "attr": "Slate",
768
+ "desc": "Iron"
769
+ },
770
+ {
771
+ "index": 144,
772
+ "attr": "Light Slate",
773
+ "desc": "Magnesium"
774
+ },
775
+ {
776
+ "index": 145,
777
+ "attr": "Light Slate",
778
+ "desc": "Molybdenum"
779
+ },
780
+ {
781
+ "index": 146,
782
+ "attr": "Light Umber",
783
+ "desc": "Nickel"
784
+ },
785
+ {
786
+ "index": 147,
787
+ "attr": "Red",
788
+ "desc": "Rusty Iron"
789
+ },
790
+ {
791
+ "index": 148,
792
+ "attr": "Light Slate",
793
+ "desc": "Silver"
794
+ },
795
+ {
796
+ "index": 149,
797
+ "attr": "Light Slate",
798
+ "desc": "Steel"
799
+ },
800
+ {
801
+ "index": 150,
802
+ "attr": "Light Slate",
803
+ "desc": "Tin"
804
+ },
805
+ {
806
+ "index": 151,
807
+ "attr": "White",
808
+ "desc": "Titanium"
809
+ },
810
+ {
811
+ "index": 152,
812
+ "attr": "White",
813
+ "desc": "Tungsten"
814
+ },
815
+ {
816
+ "index": 153,
817
+ "attr": "Light Slate",
818
+ "desc": "Zirconium"
819
+ },
820
+ {
821
+ "index": 154,
822
+ "attr": "Light Slate",
823
+ "desc": "Zinc"
824
+ },
825
+ {
826
+ "index": 155,
827
+ "attr": "Light Blue",
828
+ "desc": "Aluminium-Plated"
829
+ },
830
+ {
831
+ "index": 156,
832
+ "attr": "Light Umber",
833
+ "desc": "Copper-Plated"
834
+ },
835
+ {
836
+ "index": 157,
837
+ "attr": "Yellow",
838
+ "desc": "Engraved Gold"
839
+ },
840
+ {
841
+ "index": 158,
842
+ "attr": "Light Umber",
843
+ "desc": "Nickel-Plated"
844
+ },
845
+ {
846
+ "index": 159,
847
+ "attr": "Light Slate",
848
+ "desc": "Silver-Gilt"
849
+ },
850
+ {
851
+ "index": 160,
852
+ "attr": "Light Slate",
853
+ "desc": "Polished Steel"
854
+ },
855
+ {
856
+ "index": 161,
857
+ "attr": "Light Slate",
858
+ "desc": "Tin-Plated"
859
+ },
860
+ {
861
+ "index": 162,
862
+ "attr": "White",
863
+ "desc": "White Gold"
864
+ },
865
+ {
866
+ "index": 163,
867
+ "attr": "Light Blue",
868
+ "desc": "Mithril-Plated"
869
+ },
870
+ {
871
+ "index": 164,
872
+ "attr": "Light Blue",
873
+ "desc": "Mithril"
874
+ },
875
+ {
876
+ "index": 165,
877
+ "attr": "Umber",
878
+ "desc": "Runed"
879
+ },
880
+ {
881
+ "index": 166,
882
+ "attr": "Light Umber",
883
+ "desc": "Bronze"
884
+ },
885
+ {
886
+ "index": 167,
887
+ "attr": "Light Umber",
888
+ "desc": "Brass"
889
+ },
890
+ {
891
+ "index": 168,
892
+ "attr": "White",
893
+ "desc": "Platinum"
894
+ },
895
+ {
896
+ "index": 169,
897
+ "attr": "Red",
898
+ "desc": "Rusted Steel"
899
+ },
900
+ {
901
+ "index": 170,
902
+ "attr": "Slate",
903
+ "desc": "Lead-Plated"
904
+ },
905
+ {
906
+ "index": 171,
907
+ "attr": "White",
908
+ "desc": "Ivory"
909
+ },
910
+ {
911
+ "index": 172,
912
+ "attr": "Slate",
913
+ "desc": "Pewter"
914
+ }
915
+ ]
916
+ },
917
+ {
918
+ "kind": {
919
+ "tval": "mushroom",
920
+ "glyph": ","
921
+ },
922
+ "flavor": [
923
+ {
924
+ "index": 173,
925
+ "attr": "Light Purple",
926
+ "desc": "Spotted"
927
+ },
928
+ {
929
+ "index": 174,
930
+ "attr": "Light Dark",
931
+ "desc": "Rubbery"
932
+ },
933
+ {
934
+ "index": 175,
935
+ "attr": "Mustard",
936
+ "desc": "Crumbly"
937
+ },
938
+ {
939
+ "index": 176,
940
+ "attr": "Light Yellow",
941
+ "desc": "Moldy"
942
+ },
943
+ {
944
+ "index": 177,
945
+ "attr": "Blue",
946
+ "desc": "Mottled"
947
+ },
948
+ {
949
+ "index": 178,
950
+ "attr": "Green",
951
+ "desc": "Firm"
952
+ },
953
+ {
954
+ "index": 179,
955
+ "attr": "Mud",
956
+ "desc": "Woody"
957
+ },
958
+ {
959
+ "index": 180,
960
+ "attr": "Yellow",
961
+ "desc": "Wrinkled"
962
+ },
963
+ {
964
+ "index": 181,
965
+ "attr": "Light Slate",
966
+ "desc": "Furry"
967
+ },
968
+ {
969
+ "index": 182,
970
+ "attr": "Light Red",
971
+ "desc": "Fragile"
972
+ },
973
+ {
974
+ "index": 183,
975
+ "attr": "Slate",
976
+ "desc": "Marbled"
977
+ },
978
+ {
979
+ "index": 184,
980
+ "attr": "Light Blue",
981
+ "desc": "Gelatinous"
982
+ },
983
+ {
984
+ "index": 185,
985
+ "attr": "Light Green",
986
+ "desc": "Speckled"
987
+ },
988
+ {
989
+ "index": 186,
990
+ "attr": "Violet",
991
+ "desc": "Glowing"
992
+ },
993
+ {
994
+ "index": 187,
995
+ "attr": "Red",
996
+ "desc": "Striped"
997
+ },
998
+ {
999
+ "index": 188,
1000
+ "attr": "Slate",
1001
+ "desc": "Slimy"
1002
+ },
1003
+ {
1004
+ "index": 189,
1005
+ "attr": "Deep Light Blue",
1006
+ "desc": "Moist"
1007
+ },
1008
+ {
1009
+ "index": 190,
1010
+ "attr": "White",
1011
+ "desc": "Withered"
1012
+ },
1013
+ {
1014
+ "index": 191,
1015
+ "attr": "White",
1016
+ "desc": "Waxy"
1017
+ },
1018
+ {
1019
+ "index": 192,
1020
+ "attr": "Umber",
1021
+ "desc": "Smelly"
1022
+ }
1023
+ ]
1024
+ },
1025
+ {
1026
+ "kind": {
1027
+ "tval": "potion",
1028
+ "glyph": "!"
1029
+ },
1030
+ "flavor": [
1031
+ {
1032
+ "index": 193,
1033
+ "attr": "White",
1034
+ "desc": "Clear"
1035
+ },
1036
+ {
1037
+ "index": 194,
1038
+ "attr": "Light Umber",
1039
+ "desc": "Light Brown"
1040
+ },
1041
+ {
1042
+ "index": 195,
1043
+ "attr": "Green",
1044
+ "desc": "Icky Green"
1045
+ },
1046
+ {
1047
+ "index": 196,
1048
+ "attr": "Light Blue",
1049
+ "desc": "Azure"
1050
+ },
1051
+ {
1052
+ "index": 197,
1053
+ "attr": "Blue",
1054
+ "desc": "Blue"
1055
+ },
1056
+ {
1057
+ "index": 198,
1058
+ "attr": "Light Blue",
1059
+ "desc": "Cerulean"
1060
+ },
1061
+ {
1062
+ "index": 199,
1063
+ "attr": "Light Dark",
1064
+ "desc": "Black"
1065
+ },
1066
+ {
1067
+ "index": 200,
1068
+ "attr": "Umber",
1069
+ "desc": "Brown"
1070
+ },
1071
+ {
1072
+ "index": 201,
1073
+ "attr": "Umber",
1074
+ "desc": "Ochre"
1075
+ },
1076
+ {
1077
+ "index": 202,
1078
+ "attr": "Light Slate",
1079
+ "desc": "Bubbling"
1080
+ },
1081
+ {
1082
+ "index": 203,
1083
+ "attr": "Light Green",
1084
+ "desc": "Chartreuse"
1085
+ },
1086
+ {
1087
+ "index": 204,
1088
+ "attr": "White",
1089
+ "desc": "Cloudy"
1090
+ },
1091
+ {
1092
+ "index": 205,
1093
+ "attr": "Light Umber",
1094
+ "desc": "Copper Speckled"
1095
+ },
1096
+ {
1097
+ "index": 206,
1098
+ "attr": "Red",
1099
+ "desc": "Crimson"
1100
+ },
1101
+ {
1102
+ "index": 207,
1103
+ "attr": "Light Blue",
1104
+ "desc": "Cyan"
1105
+ },
1106
+ {
1107
+ "index": 208,
1108
+ "attr": "Blue",
1109
+ "desc": "Ultramarine"
1110
+ },
1111
+ {
1112
+ "index": 209,
1113
+ "attr": "Green",
1114
+ "desc": "Dark Green"
1115
+ },
1116
+ {
1117
+ "index": 210,
1118
+ "attr": "Red",
1119
+ "desc": "Dark Red"
1120
+ },
1121
+ {
1122
+ "index": 211,
1123
+ "attr": "Light Yellow",
1124
+ "desc": "Light Yellow"
1125
+ },
1126
+ {
1127
+ "index": 212,
1128
+ "attr": "Green",
1129
+ "desc": "Green"
1130
+ },
1131
+ {
1132
+ "index": 213,
1133
+ "attr": "Mud",
1134
+ "desc": "Muddy"
1135
+ },
1136
+ {
1137
+ "index": 214,
1138
+ "attr": "Slate",
1139
+ "desc": "Grey"
1140
+ },
1141
+ {
1142
+ "index": 215,
1143
+ "attr": "Slate",
1144
+ "desc": "Vespertine"
1145
+ },
1146
+ {
1147
+ "index": 216,
1148
+ "attr": "Light Slate",
1149
+ "desc": "Hazy"
1150
+ },
1151
+ {
1152
+ "index": 217,
1153
+ "attr": "Violet",
1154
+ "desc": "Indigo"
1155
+ },
1156
+ {
1157
+ "index": 218,
1158
+ "attr": "Light Blue",
1159
+ "desc": "Light Blue"
1160
+ },
1161
+ {
1162
+ "index": 219,
1163
+ "attr": "Light Green",
1164
+ "desc": "Light Green"
1165
+ },
1166
+ {
1167
+ "index": 220,
1168
+ "attr": "Magenta-Pink",
1169
+ "desc": "Magenta"
1170
+ },
1171
+ {
1172
+ "index": 221,
1173
+ "attr": "Deep Light Blue",
1174
+ "desc": "Metallic Blue"
1175
+ },
1176
+ {
1177
+ "index": 222,
1178
+ "attr": "Red",
1179
+ "desc": "Metallic Red"
1180
+ },
1181
+ {
1182
+ "index": 223,
1183
+ "attr": "Green",
1184
+ "desc": "Metallic Green"
1185
+ },
1186
+ {
1187
+ "index": 224,
1188
+ "attr": "Violet",
1189
+ "desc": "Metallic Purple"
1190
+ },
1191
+ {
1192
+ "index": 225,
1193
+ "attr": "Light Slate",
1194
+ "desc": "Misty"
1195
+ },
1196
+ {
1197
+ "index": 226,
1198
+ "attr": "Orange",
1199
+ "desc": "Orange"
1200
+ },
1201
+ {
1202
+ "index": 227,
1203
+ "attr": "Orange",
1204
+ "desc": "Orange Speckled"
1205
+ },
1206
+ {
1207
+ "index": 228,
1208
+ "attr": "Magenta-Pink",
1209
+ "desc": "Pink"
1210
+ },
1211
+ {
1212
+ "index": 229,
1213
+ "attr": "Light Teal",
1214
+ "desc": "Light Teal"
1215
+ },
1216
+ {
1217
+ "index": 230,
1218
+ "attr": "Light Violet",
1219
+ "desc": "Light Violet"
1220
+ },
1221
+ {
1222
+ "index": 231,
1223
+ "attr": "Purple",
1224
+ "desc": "Purple"
1225
+ },
1226
+ {
1227
+ "index": 232,
1228
+ "attr": "Purple",
1229
+ "desc": "Purple Speckled"
1230
+ },
1231
+ {
1232
+ "index": 233,
1233
+ "attr": "Red",
1234
+ "desc": "Red"
1235
+ },
1236
+ {
1237
+ "index": 234,
1238
+ "attr": "Teal",
1239
+ "desc": "Teal"
1240
+ },
1241
+ {
1242
+ "index": 235,
1243
+ "attr": "Mustard",
1244
+ "desc": "Mustard Yellow"
1245
+ },
1246
+ {
1247
+ "index": 236,
1248
+ "attr": "Light Dark",
1249
+ "desc": "Smoky"
1250
+ },
1251
+ {
1252
+ "index": 237,
1253
+ "attr": "Orange",
1254
+ "desc": "Tangerine"
1255
+ },
1256
+ {
1257
+ "index": 238,
1258
+ "attr": "Violet",
1259
+ "desc": "Violet"
1260
+ },
1261
+ {
1262
+ "index": 239,
1263
+ "attr": "Red",
1264
+ "desc": "Vermilion"
1265
+ },
1266
+ {
1267
+ "index": 240,
1268
+ "attr": "White",
1269
+ "desc": "White"
1270
+ },
1271
+ {
1272
+ "index": 241,
1273
+ "attr": "Yellow",
1274
+ "desc": "Yellow"
1275
+ },
1276
+ {
1277
+ "index": 242,
1278
+ "attr": "Light Purple",
1279
+ "desc": "Light Purple"
1280
+ },
1281
+ {
1282
+ "index": 243,
1283
+ "attr": "Light Red",
1284
+ "desc": "Pungent"
1285
+ },
1286
+ {
1287
+ "index": 244,
1288
+ "attr": "Light Purple",
1289
+ "desc": "Lavender"
1290
+ },
1291
+ {
1292
+ "index": 245,
1293
+ "attr": "Light Red",
1294
+ "desc": "Viscous Pink"
1295
+ },
1296
+ {
1297
+ "index": 246,
1298
+ "attr": "Yellow",
1299
+ "desc": "Oily Yellow"
1300
+ },
1301
+ {
1302
+ "index": 247,
1303
+ "attr": "Green",
1304
+ "desc": "Gloopy Green"
1305
+ },
1306
+ {
1307
+ "index": 248,
1308
+ "attr": "Violet",
1309
+ "desc": "Shimmering"
1310
+ },
1311
+ {
1312
+ "index": 249,
1313
+ "attr": "Red",
1314
+ "desc": "Coagulated Crimson"
1315
+ },
1316
+ {
1317
+ "index": 250,
1318
+ "attr": "Light Pink",
1319
+ "desc": "Light Pink"
1320
+ },
1321
+ {
1322
+ "index": 251,
1323
+ "attr": "Yellow",
1324
+ "desc": "Gold"
1325
+ }
1326
+ ]
1327
+ },
1328
+ {
1329
+ "kind": {
1330
+ "tval": "scroll",
1331
+ "glyph": "?"
1332
+ },
1333
+ "flavor": [
1334
+ {
1335
+ "index": 252,
1336
+ "attr": "White"
1337
+ },
1338
+ {
1339
+ "index": 253,
1340
+ "attr": "White"
1341
+ },
1342
+ {
1343
+ "index": 254,
1344
+ "attr": "White"
1345
+ },
1346
+ {
1347
+ "index": 255,
1348
+ "attr": "White"
1349
+ },
1350
+ {
1351
+ "index": 256,
1352
+ "attr": "White"
1353
+ },
1354
+ {
1355
+ "index": 257,
1356
+ "attr": "White"
1357
+ },
1358
+ {
1359
+ "index": 258,
1360
+ "attr": "White"
1361
+ },
1362
+ {
1363
+ "index": 259,
1364
+ "attr": "White"
1365
+ },
1366
+ {
1367
+ "index": 260,
1368
+ "attr": "White"
1369
+ },
1370
+ {
1371
+ "index": 261,
1372
+ "attr": "White"
1373
+ },
1374
+ {
1375
+ "index": 262,
1376
+ "attr": "White"
1377
+ },
1378
+ {
1379
+ "index": 263,
1380
+ "attr": "White"
1381
+ },
1382
+ {
1383
+ "index": 264,
1384
+ "attr": "White"
1385
+ },
1386
+ {
1387
+ "index": 265,
1388
+ "attr": "White"
1389
+ },
1390
+ {
1391
+ "index": 266,
1392
+ "attr": "White"
1393
+ },
1394
+ {
1395
+ "index": 267,
1396
+ "attr": "White"
1397
+ },
1398
+ {
1399
+ "index": 268,
1400
+ "attr": "White"
1401
+ },
1402
+ {
1403
+ "index": 269,
1404
+ "attr": "White"
1405
+ },
1406
+ {
1407
+ "index": 270,
1408
+ "attr": "White"
1409
+ },
1410
+ {
1411
+ "index": 271,
1412
+ "attr": "White"
1413
+ },
1414
+ {
1415
+ "index": 272,
1416
+ "attr": "White"
1417
+ },
1418
+ {
1419
+ "index": 273,
1420
+ "attr": "White"
1421
+ },
1422
+ {
1423
+ "index": 274,
1424
+ "attr": "White"
1425
+ },
1426
+ {
1427
+ "index": 275,
1428
+ "attr": "White"
1429
+ },
1430
+ {
1431
+ "index": 276,
1432
+ "attr": "White"
1433
+ },
1434
+ {
1435
+ "index": 277,
1436
+ "attr": "White"
1437
+ },
1438
+ {
1439
+ "index": 278,
1440
+ "attr": "White"
1441
+ },
1442
+ {
1443
+ "index": 279,
1444
+ "attr": "White"
1445
+ },
1446
+ {
1447
+ "index": 280,
1448
+ "attr": "White"
1449
+ },
1450
+ {
1451
+ "index": 281,
1452
+ "attr": "White"
1453
+ },
1454
+ {
1455
+ "index": 282,
1456
+ "attr": "White"
1457
+ },
1458
+ {
1459
+ "index": 283,
1460
+ "attr": "White"
1461
+ },
1462
+ {
1463
+ "index": 284,
1464
+ "attr": "White"
1465
+ },
1466
+ {
1467
+ "index": 285,
1468
+ "attr": "White"
1469
+ },
1470
+ {
1471
+ "index": 286,
1472
+ "attr": "White"
1473
+ },
1474
+ {
1475
+ "index": 287,
1476
+ "attr": "White"
1477
+ },
1478
+ {
1479
+ "index": 288,
1480
+ "attr": "White"
1481
+ },
1482
+ {
1483
+ "index": 289,
1484
+ "attr": "White"
1485
+ },
1486
+ {
1487
+ "index": 290,
1488
+ "attr": "White"
1489
+ },
1490
+ {
1491
+ "index": 291,
1492
+ "attr": "White"
1493
+ },
1494
+ {
1495
+ "index": 292,
1496
+ "attr": "White"
1497
+ },
1498
+ {
1499
+ "index": 293,
1500
+ "attr": "White"
1501
+ },
1502
+ {
1503
+ "index": 294,
1504
+ "attr": "White"
1505
+ },
1506
+ {
1507
+ "index": 295,
1508
+ "attr": "White"
1509
+ },
1510
+ {
1511
+ "index": 296,
1512
+ "attr": "White"
1513
+ },
1514
+ {
1515
+ "index": 297,
1516
+ "attr": "White"
1517
+ },
1518
+ {
1519
+ "index": 298,
1520
+ "attr": "White"
1521
+ },
1522
+ {
1523
+ "index": 299,
1524
+ "attr": "White"
1525
+ },
1526
+ {
1527
+ "index": 300,
1528
+ "attr": "White"
1529
+ },
1530
+ {
1531
+ "index": 301,
1532
+ "attr": "White"
1533
+ },
1534
+ {
1535
+ "index": 302,
1536
+ "attr": "White"
1537
+ }
1538
+ ]
1539
+ }
1540
+ ]
1541
+ }