@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,2034 @@
1
+ {
2
+ "file": "object_property",
3
+ "source": "lib/gamedata/object_property.txt",
4
+ "records": [
5
+ {
6
+ "name": "strength",
7
+ "code": "STR",
8
+ "type": "stat",
9
+ "power": 9,
10
+ "mult": 13,
11
+ "adjective": "strong",
12
+ "neg-adjective": "weak",
13
+ "bindui": {
14
+ "ui": "stat_mod_ui_compact_0<STR>",
15
+ "aux": 0
16
+ }
17
+ },
18
+ {
19
+ "name": "intelligence",
20
+ "code": "INT",
21
+ "type": "stat",
22
+ "power": 5,
23
+ "mult": 10,
24
+ "adjective": "smart",
25
+ "neg-adjective": "stupid",
26
+ "bindui": {
27
+ "ui": "stat_mod_ui_compact_0<INT>",
28
+ "aux": 0
29
+ }
30
+ },
31
+ {
32
+ "name": "wisdom",
33
+ "code": "WIS",
34
+ "type": "stat",
35
+ "power": 5,
36
+ "mult": 10,
37
+ "adjective": "wise",
38
+ "neg-adjective": "naive",
39
+ "bindui": {
40
+ "ui": "stat_mod_ui_compact_0<WIS>",
41
+ "aux": 0
42
+ }
43
+ },
44
+ {
45
+ "name": "dexterity",
46
+ "code": "DEX",
47
+ "type": "stat",
48
+ "power": 8,
49
+ "mult": 10,
50
+ "type-mult": [
51
+ {
52
+ "type": "gloves",
53
+ "mult": 2
54
+ }
55
+ ],
56
+ "adjective": "dextrous",
57
+ "neg-adjective": "clumsy",
58
+ "bindui": {
59
+ "ui": "stat_mod_ui_compact_0<DEX>",
60
+ "aux": 0
61
+ }
62
+ },
63
+ {
64
+ "name": "constitution",
65
+ "code": "CON",
66
+ "type": "stat",
67
+ "power": 12,
68
+ "mult": 15,
69
+ "adjective": "healthy",
70
+ "neg-adjective": "sickly",
71
+ "bindui": {
72
+ "ui": "stat_mod_ui_compact_0<CON>",
73
+ "aux": 0
74
+ }
75
+ },
76
+ {
77
+ "name": "stealth",
78
+ "code": "STEALTH",
79
+ "type": "mod",
80
+ "power": 8,
81
+ "mult": 12,
82
+ "bindui": {
83
+ "ui": "stealth_ui_compact_0",
84
+ "aux": 0
85
+ }
86
+ },
87
+ {
88
+ "name": "searching skill",
89
+ "code": "SEARCH",
90
+ "type": "mod",
91
+ "power": 2,
92
+ "mult": 5,
93
+ "bindui": {
94
+ "ui": "search_ui_compact_0",
95
+ "aux": 0
96
+ }
97
+ },
98
+ {
99
+ "name": "infravision",
100
+ "code": "INFRA",
101
+ "type": "mod",
102
+ "power": 4,
103
+ "mult": 8,
104
+ "bindui": {
105
+ "ui": "infravision_ui_compact_0",
106
+ "aux": 0
107
+ }
108
+ },
109
+ {
110
+ "name": "tunneling",
111
+ "code": "TUNNEL",
112
+ "type": "mod",
113
+ "power": 3,
114
+ "mult": 8,
115
+ "bindui": {
116
+ "ui": "tunneling_ui_compact_0",
117
+ "aux": 0
118
+ }
119
+ },
120
+ {
121
+ "name": "speed",
122
+ "code": "SPEED",
123
+ "type": "mod",
124
+ "power": 20,
125
+ "mult": 6,
126
+ "bindui": {
127
+ "ui": "speed_ui_compact_0",
128
+ "aux": 0
129
+ }
130
+ },
131
+ {
132
+ "name": "damage reduction",
133
+ "code": "DAM_RED",
134
+ "type": "mod",
135
+ "power": 5,
136
+ "mult": 6,
137
+ "bindui": {
138
+ "ui": "damage_reduction_ui_compact_0",
139
+ "aux": 0
140
+ }
141
+ },
142
+ {
143
+ "name": "extra blows",
144
+ "code": "BLOWS",
145
+ "type": "mod",
146
+ "power": 0,
147
+ "mult": 50,
148
+ "type-mult": [
149
+ {
150
+ "type": "bow",
151
+ "mult": 0
152
+ },
153
+ {
154
+ "type": "ring",
155
+ "mult": 3
156
+ },
157
+ {
158
+ "type": "amulet",
159
+ "mult": 3
160
+ },
161
+ {
162
+ "type": "light",
163
+ "mult": 3
164
+ },
165
+ {
166
+ "type": "soft armor",
167
+ "mult": 3
168
+ },
169
+ {
170
+ "type": "hard armor",
171
+ "mult": 3
172
+ },
173
+ {
174
+ "type": "dragon armor",
175
+ "mult": 3
176
+ },
177
+ {
178
+ "type": "cloak",
179
+ "mult": 3
180
+ },
181
+ {
182
+ "type": "shield",
183
+ "mult": 3
184
+ },
185
+ {
186
+ "type": "helm",
187
+ "mult": 3
188
+ },
189
+ {
190
+ "type": "crown",
191
+ "mult": 3
192
+ },
193
+ {
194
+ "type": "gloves",
195
+ "mult": 3
196
+ },
197
+ {
198
+ "type": "boots",
199
+ "mult": 3
200
+ }
201
+ ],
202
+ "bindui": {
203
+ "ui": "blows_ui_compact_0",
204
+ "aux": 0
205
+ }
206
+ },
207
+ {
208
+ "name": "shooting speed",
209
+ "code": "SHOTS",
210
+ "type": "mod",
211
+ "power": 0,
212
+ "mult": 5,
213
+ "type-mult": [
214
+ {
215
+ "type": "sword",
216
+ "mult": 0
217
+ },
218
+ {
219
+ "type": "polearm",
220
+ "mult": 0
221
+ },
222
+ {
223
+ "type": "hafted",
224
+ "mult": 0
225
+ },
226
+ {
227
+ "type": "digger",
228
+ "mult": 0
229
+ },
230
+ {
231
+ "type": "ring",
232
+ "mult": 4
233
+ },
234
+ {
235
+ "type": "amulet",
236
+ "mult": 4
237
+ },
238
+ {
239
+ "type": "light",
240
+ "mult": 4
241
+ },
242
+ {
243
+ "type": "soft armor",
244
+ "mult": 4
245
+ },
246
+ {
247
+ "type": "hard armor",
248
+ "mult": 4
249
+ },
250
+ {
251
+ "type": "dragon armor",
252
+ "mult": 4
253
+ },
254
+ {
255
+ "type": "cloak",
256
+ "mult": 4
257
+ },
258
+ {
259
+ "type": "shield",
260
+ "mult": 4
261
+ },
262
+ {
263
+ "type": "helm",
264
+ "mult": 4
265
+ },
266
+ {
267
+ "type": "crown",
268
+ "mult": 4
269
+ },
270
+ {
271
+ "type": "gloves",
272
+ "mult": 4
273
+ },
274
+ {
275
+ "type": "boots",
276
+ "mult": 4
277
+ }
278
+ ],
279
+ "bindui": {
280
+ "ui": "shots_ui_compact_0",
281
+ "aux": 0
282
+ }
283
+ },
284
+ {
285
+ "name": "shooting power",
286
+ "code": "MIGHT",
287
+ "type": "mod",
288
+ "power": 0,
289
+ "mult": 30,
290
+ "type-mult": [
291
+ {
292
+ "type": "sword",
293
+ "mult": 0
294
+ },
295
+ {
296
+ "type": "polearm",
297
+ "mult": 0
298
+ },
299
+ {
300
+ "type": "hafted",
301
+ "mult": 0
302
+ },
303
+ {
304
+ "type": "digger",
305
+ "mult": 0
306
+ },
307
+ {
308
+ "type": "ring",
309
+ "mult": 0
310
+ },
311
+ {
312
+ "type": "amulet",
313
+ "mult": 0
314
+ },
315
+ {
316
+ "type": "light",
317
+ "mult": 0
318
+ },
319
+ {
320
+ "type": "soft armor",
321
+ "mult": 0
322
+ },
323
+ {
324
+ "type": "hard armor",
325
+ "mult": 0
326
+ },
327
+ {
328
+ "type": "dragon armor",
329
+ "mult": 0
330
+ },
331
+ {
332
+ "type": "cloak",
333
+ "mult": 0
334
+ },
335
+ {
336
+ "type": "shield",
337
+ "mult": 0
338
+ },
339
+ {
340
+ "type": "helm",
341
+ "mult": 0
342
+ },
343
+ {
344
+ "type": "crown",
345
+ "mult": 0
346
+ },
347
+ {
348
+ "type": "gloves",
349
+ "mult": 0
350
+ },
351
+ {
352
+ "type": "boots",
353
+ "mult": 0
354
+ }
355
+ ],
356
+ "bindui": {
357
+ "ui": "shooting_power_ui_compact_0",
358
+ "aux": 0
359
+ }
360
+ },
361
+ {
362
+ "name": "extra moves",
363
+ "code": "MOVES",
364
+ "type": "mod",
365
+ "power": 0,
366
+ "mult": 50,
367
+ "type-mult": [
368
+ {
369
+ "type": "sword",
370
+ "mult": 0
371
+ },
372
+ {
373
+ "type": "polearm",
374
+ "mult": 0
375
+ },
376
+ {
377
+ "type": "hafted",
378
+ "mult": 0
379
+ },
380
+ {
381
+ "type": "digger",
382
+ "mult": 0
383
+ },
384
+ {
385
+ "type": "ring",
386
+ "mult": 0
387
+ },
388
+ {
389
+ "type": "amulet",
390
+ "mult": 0
391
+ },
392
+ {
393
+ "type": "light",
394
+ "mult": 0
395
+ },
396
+ {
397
+ "type": "soft armor",
398
+ "mult": 0
399
+ },
400
+ {
401
+ "type": "hard armor",
402
+ "mult": 0
403
+ },
404
+ {
405
+ "type": "dragon armor",
406
+ "mult": 0
407
+ },
408
+ {
409
+ "type": "cloak",
410
+ "mult": 0
411
+ },
412
+ {
413
+ "type": "shield",
414
+ "mult": 0
415
+ },
416
+ {
417
+ "type": "helm",
418
+ "mult": 0
419
+ },
420
+ {
421
+ "type": "crown",
422
+ "mult": 0
423
+ },
424
+ {
425
+ "type": "gloves",
426
+ "mult": 0
427
+ },
428
+ {
429
+ "type": "boots",
430
+ "mult": 0
431
+ }
432
+ ],
433
+ "bindui": {
434
+ "ui": "movement_speed_ui_compact_0",
435
+ "aux": 0
436
+ }
437
+ },
438
+ {
439
+ "name": "light",
440
+ "code": "LIGHT",
441
+ "type": "mod",
442
+ "power": 3,
443
+ "mult": 6,
444
+ "type-mult": [
445
+ {
446
+ "type": "light",
447
+ "mult": 3
448
+ }
449
+ ],
450
+ "bindui": {
451
+ "ui": "light_ui_compact_0",
452
+ "aux": 0
453
+ }
454
+ },
455
+ {
456
+ "name": "sustain strength",
457
+ "code": "SUST_STR",
458
+ "type": "flag",
459
+ "subtype": "sustain",
460
+ "id-type": "on effect",
461
+ "power": 9,
462
+ "msg": "Your {name} glows.",
463
+ "bindui": {
464
+ "ui": "stat_mod_ui_compact_0<STR>",
465
+ "aux": 1
466
+ }
467
+ },
468
+ {
469
+ "name": "sustain intelligence",
470
+ "code": "SUST_INT",
471
+ "type": "flag",
472
+ "subtype": "sustain",
473
+ "id-type": "on effect",
474
+ "power": 4,
475
+ "msg": "Your {name} glows.",
476
+ "bindui": {
477
+ "ui": "stat_mod_ui_compact_0<INT>",
478
+ "aux": 1
479
+ }
480
+ },
481
+ {
482
+ "name": "sustain wisdom",
483
+ "code": "SUST_WIS",
484
+ "type": "flag",
485
+ "subtype": "sustain",
486
+ "id-type": "on effect",
487
+ "power": 4,
488
+ "msg": "Your {name} glows.",
489
+ "bindui": {
490
+ "ui": "stat_mod_ui_compact_0<WIS>",
491
+ "aux": 1
492
+ }
493
+ },
494
+ {
495
+ "name": "sustain dexterity",
496
+ "code": "SUST_DEX",
497
+ "type": "flag",
498
+ "subtype": "sustain",
499
+ "id-type": "on effect",
500
+ "power": 7,
501
+ "msg": "Your {name} glows.",
502
+ "bindui": {
503
+ "ui": "stat_mod_ui_compact_0<DEX>",
504
+ "aux": 1
505
+ }
506
+ },
507
+ {
508
+ "name": "sustain constitution",
509
+ "code": "SUST_CON",
510
+ "type": "flag",
511
+ "subtype": "sustain",
512
+ "id-type": "on effect",
513
+ "power": 8,
514
+ "msg": "Your {name} glows.",
515
+ "bindui": {
516
+ "ui": "stat_mod_ui_compact_0<CON>",
517
+ "aux": 1
518
+ }
519
+ },
520
+ {
521
+ "name": "protection from fear",
522
+ "code": "PROT_FEAR",
523
+ "type": "flag",
524
+ "subtype": "protection",
525
+ "id-type": "on effect",
526
+ "power": 6,
527
+ "msg": "Your {name} strengthens your courage.",
528
+ "desc": "fear",
529
+ "bindui": {
530
+ "ui": "pfear_ui_compact_0",
531
+ "aux": 0
532
+ }
533
+ },
534
+ {
535
+ "name": "protection from blindness",
536
+ "code": "PROT_BLIND",
537
+ "type": "flag",
538
+ "subtype": "protection",
539
+ "id-type": "on effect",
540
+ "power": 16,
541
+ "msg": "Your {name} soothes your eyes.",
542
+ "desc": "blindness",
543
+ "bindui": {
544
+ "ui": "pblind_ui_compact_0",
545
+ "aux": 0
546
+ }
547
+ },
548
+ {
549
+ "name": "protection from confusion",
550
+ "code": "PROT_CONF",
551
+ "type": "flag",
552
+ "subtype": "protection",
553
+ "id-type": "on effect",
554
+ "power": 24,
555
+ "msg": "Your {name} clears your thoughts.",
556
+ "desc": "confusion",
557
+ "bindui": {
558
+ "ui": "pconf_ui_compact_0",
559
+ "aux": 0
560
+ }
561
+ },
562
+ {
563
+ "name": "protection from stunning",
564
+ "code": "PROT_STUN",
565
+ "type": "flag",
566
+ "subtype": "protection",
567
+ "id-type": "on effect",
568
+ "power": 12,
569
+ "msg": "Your {name} steadies you.",
570
+ "desc": "stunning",
571
+ "bindui": {
572
+ "ui": "pstun_ui_compact_0",
573
+ "aux": 0
574
+ }
575
+ },
576
+ {
577
+ "name": "slow digestion",
578
+ "code": "SLOW_DIGEST",
579
+ "type": "flag",
580
+ "subtype": "misc ability",
581
+ "id-type": "timed",
582
+ "power": 2,
583
+ "msg": "You realise your {name} is slowing your metabolism.",
584
+ "desc": "Slows your metabolism",
585
+ "bindui": {
586
+ "ui": "slow_digestion_ui_compact_0",
587
+ "aux": 0
588
+ }
589
+ },
590
+ {
591
+ "name": "feather falling",
592
+ "code": "FEATHER",
593
+ "type": "flag",
594
+ "subtype": "misc ability",
595
+ "id-type": "on effect",
596
+ "power": 1,
597
+ "msg": "Your {name} slows your fall.",
598
+ "desc": "Feather Falling",
599
+ "bindui": {
600
+ "ui": "feather_falling_ui_compact_0",
601
+ "aux": 0
602
+ }
603
+ },
604
+ {
605
+ "name": "regeneration",
606
+ "code": "REGEN",
607
+ "type": "flag",
608
+ "subtype": "misc ability",
609
+ "id-type": "timed",
610
+ "power": 5,
611
+ "type-mult": [
612
+ {
613
+ "type": "ring",
614
+ "mult": 2
615
+ },
616
+ {
617
+ "type": "amulet",
618
+ "mult": 2
619
+ },
620
+ {
621
+ "type": "light",
622
+ "mult": 2
623
+ },
624
+ {
625
+ "type": "soft armor",
626
+ "mult": 2
627
+ },
628
+ {
629
+ "type": "hard armor",
630
+ "mult": 2
631
+ },
632
+ {
633
+ "type": "dragon armor",
634
+ "mult": 2
635
+ },
636
+ {
637
+ "type": "cloak",
638
+ "mult": 2
639
+ },
640
+ {
641
+ "type": "shield",
642
+ "mult": 2
643
+ },
644
+ {
645
+ "type": "helm",
646
+ "mult": 2
647
+ },
648
+ {
649
+ "type": "crown",
650
+ "mult": 2
651
+ },
652
+ {
653
+ "type": "gloves",
654
+ "mult": 2
655
+ },
656
+ {
657
+ "type": "boots",
658
+ "mult": 2
659
+ }
660
+ ],
661
+ "msg": "You note that your {name} is speeding up your recovery.",
662
+ "desc": "Speeds regeneration",
663
+ "bindui": {
664
+ "ui": "regen_ui_compact_0",
665
+ "aux": 0
666
+ }
667
+ },
668
+ {
669
+ "name": "telepathy",
670
+ "code": "TELEPATHY",
671
+ "type": "flag",
672
+ "subtype": "misc ability",
673
+ "id-type": "on wield",
674
+ "power": 35,
675
+ "type-mult": [
676
+ {
677
+ "type": "ring",
678
+ "mult": 2
679
+ },
680
+ {
681
+ "type": "amulet",
682
+ "mult": 2
683
+ },
684
+ {
685
+ "type": "light",
686
+ "mult": 2
687
+ },
688
+ {
689
+ "type": "soft armor",
690
+ "mult": 2
691
+ },
692
+ {
693
+ "type": "hard armor",
694
+ "mult": 2
695
+ },
696
+ {
697
+ "type": "dragon armor",
698
+ "mult": 2
699
+ },
700
+ {
701
+ "type": "cloak",
702
+ "mult": 2
703
+ },
704
+ {
705
+ "type": "shield",
706
+ "mult": 2
707
+ },
708
+ {
709
+ "type": "helm",
710
+ "mult": 2
711
+ },
712
+ {
713
+ "type": "crown",
714
+ "mult": 2
715
+ },
716
+ {
717
+ "type": "gloves",
718
+ "mult": 2
719
+ },
720
+ {
721
+ "type": "boots",
722
+ "mult": 2
723
+ }
724
+ ],
725
+ "desc": "Grants telepathy",
726
+ "bindui": {
727
+ "ui": "esp_ui_compact_0",
728
+ "aux": 0
729
+ }
730
+ },
731
+ {
732
+ "name": "see invisible",
733
+ "code": "SEE_INVIS",
734
+ "type": "flag",
735
+ "subtype": "misc ability",
736
+ "id-type": "on wield",
737
+ "power": 6,
738
+ "type-mult": [
739
+ {
740
+ "type": "ring",
741
+ "mult": 2
742
+ },
743
+ {
744
+ "type": "amulet",
745
+ "mult": 2
746
+ },
747
+ {
748
+ "type": "light",
749
+ "mult": 2
750
+ },
751
+ {
752
+ "type": "soft armor",
753
+ "mult": 2
754
+ },
755
+ {
756
+ "type": "hard armor",
757
+ "mult": 2
758
+ },
759
+ {
760
+ "type": "dragon armor",
761
+ "mult": 2
762
+ },
763
+ {
764
+ "type": "cloak",
765
+ "mult": 2
766
+ },
767
+ {
768
+ "type": "shield",
769
+ "mult": 2
770
+ },
771
+ {
772
+ "type": "helm",
773
+ "mult": 2
774
+ },
775
+ {
776
+ "type": "crown",
777
+ "mult": 2
778
+ },
779
+ {
780
+ "type": "gloves",
781
+ "mult": 2
782
+ },
783
+ {
784
+ "type": "boots",
785
+ "mult": 2
786
+ }
787
+ ],
788
+ "desc": "Grants the ability to see invisible things",
789
+ "bindui": {
790
+ "ui": "see_invis_ui_compact_0",
791
+ "aux": 0
792
+ }
793
+ },
794
+ {
795
+ "name": "free action",
796
+ "code": "FREE_ACT",
797
+ "type": "flag",
798
+ "subtype": "misc ability",
799
+ "id-type": "on effect",
800
+ "power": 8,
801
+ "type-mult": [
802
+ {
803
+ "type": "ring",
804
+ "mult": 2
805
+ },
806
+ {
807
+ "type": "amulet",
808
+ "mult": 2
809
+ },
810
+ {
811
+ "type": "light",
812
+ "mult": 2
813
+ },
814
+ {
815
+ "type": "soft armor",
816
+ "mult": 2
817
+ },
818
+ {
819
+ "type": "hard armor",
820
+ "mult": 2
821
+ },
822
+ {
823
+ "type": "dragon armor",
824
+ "mult": 2
825
+ },
826
+ {
827
+ "type": "cloak",
828
+ "mult": 2
829
+ },
830
+ {
831
+ "type": "shield",
832
+ "mult": 2
833
+ },
834
+ {
835
+ "type": "helm",
836
+ "mult": 2
837
+ },
838
+ {
839
+ "type": "crown",
840
+ "mult": 2
841
+ },
842
+ {
843
+ "type": "gloves",
844
+ "mult": 5
845
+ },
846
+ {
847
+ "type": "boots",
848
+ "mult": 2
849
+ }
850
+ ],
851
+ "msg": "Your {name} keeps you moving.",
852
+ "desc": "Prevents paralysis",
853
+ "bindui": {
854
+ "ui": "free_action_ui_compact_0",
855
+ "aux": 0
856
+ }
857
+ },
858
+ {
859
+ "name": "hold life",
860
+ "code": "HOLD_LIFE",
861
+ "type": "flag",
862
+ "subtype": "misc ability",
863
+ "id-type": "on effect",
864
+ "power": 5,
865
+ "type-mult": [
866
+ {
867
+ "type": "ring",
868
+ "mult": 2
869
+ },
870
+ {
871
+ "type": "amulet",
872
+ "mult": 2
873
+ },
874
+ {
875
+ "type": "light",
876
+ "mult": 2
877
+ },
878
+ {
879
+ "type": "soft armor",
880
+ "mult": 2
881
+ },
882
+ {
883
+ "type": "hard armor",
884
+ "mult": 2
885
+ },
886
+ {
887
+ "type": "dragon armor",
888
+ "mult": 2
889
+ },
890
+ {
891
+ "type": "cloak",
892
+ "mult": 2
893
+ },
894
+ {
895
+ "type": "shield",
896
+ "mult": 2
897
+ },
898
+ {
899
+ "type": "helm",
900
+ "mult": 2
901
+ },
902
+ {
903
+ "type": "crown",
904
+ "mult": 2
905
+ },
906
+ {
907
+ "type": "gloves",
908
+ "mult": 2
909
+ },
910
+ {
911
+ "type": "boots",
912
+ "mult": 2
913
+ }
914
+ ],
915
+ "msg": "Your {name} warms your spirit.",
916
+ "desc": "Sustains your life force",
917
+ "bindui": {
918
+ "ui": "holdlife_ui_compact_0",
919
+ "aux": 0
920
+ }
921
+ },
922
+ {
923
+ "name": "earthquakes",
924
+ "code": "IMPACT",
925
+ "type": "flag",
926
+ "subtype": "melee",
927
+ "id-type": "on effect",
928
+ "power": 10,
929
+ "type-mult": [
930
+ {
931
+ "type": "bow",
932
+ "mult": 0
933
+ },
934
+ {
935
+ "type": "ring",
936
+ "mult": 0
937
+ },
938
+ {
939
+ "type": "amulet",
940
+ "mult": 0
941
+ },
942
+ {
943
+ "type": "light",
944
+ "mult": 0
945
+ },
946
+ {
947
+ "type": "soft armor",
948
+ "mult": 0
949
+ },
950
+ {
951
+ "type": "hard armor",
952
+ "mult": 0
953
+ },
954
+ {
955
+ "type": "dragon armor",
956
+ "mult": 0
957
+ },
958
+ {
959
+ "type": "cloak",
960
+ "mult": 0
961
+ },
962
+ {
963
+ "type": "shield",
964
+ "mult": 0
965
+ },
966
+ {
967
+ "type": "helm",
968
+ "mult": 0
969
+ },
970
+ {
971
+ "type": "crown",
972
+ "mult": 0
973
+ },
974
+ {
975
+ "type": "gloves",
976
+ "mult": 0
977
+ },
978
+ {
979
+ "type": "boots",
980
+ "mult": 0
981
+ }
982
+ ],
983
+ "msg": "Your {name} causes an earthquake!",
984
+ "desc": "Sometimes creates earthquakes on impact"
985
+ },
986
+ {
987
+ "name": "blessed melee",
988
+ "code": "BLESSED",
989
+ "type": "flag",
990
+ "subtype": "melee",
991
+ "id-type": "on wield",
992
+ "power": 1,
993
+ "type-mult": [
994
+ {
995
+ "type": "bow",
996
+ "mult": 0
997
+ },
998
+ {
999
+ "type": "hafted",
1000
+ "mult": 0
1001
+ },
1002
+ {
1003
+ "type": "ring",
1004
+ "mult": 0
1005
+ },
1006
+ {
1007
+ "type": "amulet",
1008
+ "mult": 0
1009
+ },
1010
+ {
1011
+ "type": "light",
1012
+ "mult": 0
1013
+ },
1014
+ {
1015
+ "type": "soft armor",
1016
+ "mult": 0
1017
+ },
1018
+ {
1019
+ "type": "hard armor",
1020
+ "mult": 0
1021
+ },
1022
+ {
1023
+ "type": "dragon armor",
1024
+ "mult": 0
1025
+ },
1026
+ {
1027
+ "type": "cloak",
1028
+ "mult": 0
1029
+ },
1030
+ {
1031
+ "type": "shield",
1032
+ "mult": 0
1033
+ },
1034
+ {
1035
+ "type": "helm",
1036
+ "mult": 0
1037
+ },
1038
+ {
1039
+ "type": "crown",
1040
+ "mult": 0
1041
+ },
1042
+ {
1043
+ "type": "gloves",
1044
+ "mult": 0
1045
+ },
1046
+ {
1047
+ "type": "boots",
1048
+ "mult": 0
1049
+ }
1050
+ ],
1051
+ "desc": "Blessed by the gods (combat bonuses for holy casters)",
1052
+ "bindui": {
1053
+ "ui": "bless_ui_compact_0",
1054
+ "aux": 0
1055
+ }
1056
+ },
1057
+ {
1058
+ "name": "burns out",
1059
+ "code": "BURNS_OUT",
1060
+ "type": "flag",
1061
+ "subtype": "light",
1062
+ "id-type": "on wield",
1063
+ "power": 0,
1064
+ "type-mult": [
1065
+ {
1066
+ "type": "sword",
1067
+ "mult": 0
1068
+ },
1069
+ {
1070
+ "type": "polearm",
1071
+ "mult": 0
1072
+ },
1073
+ {
1074
+ "type": "hafted",
1075
+ "mult": 0
1076
+ },
1077
+ {
1078
+ "type": "digger",
1079
+ "mult": 0
1080
+ },
1081
+ {
1082
+ "type": "bow",
1083
+ "mult": 0
1084
+ },
1085
+ {
1086
+ "type": "ring",
1087
+ "mult": 0
1088
+ },
1089
+ {
1090
+ "type": "amulet",
1091
+ "mult": 0
1092
+ },
1093
+ {
1094
+ "type": "soft armor",
1095
+ "mult": 0
1096
+ },
1097
+ {
1098
+ "type": "hard armor",
1099
+ "mult": 0
1100
+ },
1101
+ {
1102
+ "type": "dragon armor",
1103
+ "mult": 0
1104
+ },
1105
+ {
1106
+ "type": "cloak",
1107
+ "mult": 0
1108
+ },
1109
+ {
1110
+ "type": "shield",
1111
+ "mult": 0
1112
+ },
1113
+ {
1114
+ "type": "helm",
1115
+ "mult": 0
1116
+ },
1117
+ {
1118
+ "type": "crown",
1119
+ "mult": 0
1120
+ },
1121
+ {
1122
+ "type": "gloves",
1123
+ "mult": 0
1124
+ },
1125
+ {
1126
+ "type": "boots",
1127
+ "mult": 0
1128
+ }
1129
+ ]
1130
+ },
1131
+ {
1132
+ "name": "takes fuel",
1133
+ "code": "TAKES_FUEL",
1134
+ "type": "flag",
1135
+ "subtype": "light",
1136
+ "id-type": "on wield",
1137
+ "power": 0,
1138
+ "type-mult": [
1139
+ {
1140
+ "type": "sword",
1141
+ "mult": 0
1142
+ },
1143
+ {
1144
+ "type": "polearm",
1145
+ "mult": 0
1146
+ },
1147
+ {
1148
+ "type": "hafted",
1149
+ "mult": 0
1150
+ },
1151
+ {
1152
+ "type": "digger",
1153
+ "mult": 0
1154
+ },
1155
+ {
1156
+ "type": "bow",
1157
+ "mult": 0
1158
+ },
1159
+ {
1160
+ "type": "ring",
1161
+ "mult": 0
1162
+ },
1163
+ {
1164
+ "type": "amulet",
1165
+ "mult": 0
1166
+ },
1167
+ {
1168
+ "type": "soft armor",
1169
+ "mult": 0
1170
+ },
1171
+ {
1172
+ "type": "hard armor",
1173
+ "mult": 0
1174
+ },
1175
+ {
1176
+ "type": "dragon armor",
1177
+ "mult": 0
1178
+ },
1179
+ {
1180
+ "type": "cloak",
1181
+ "mult": 0
1182
+ },
1183
+ {
1184
+ "type": "shield",
1185
+ "mult": 0
1186
+ },
1187
+ {
1188
+ "type": "helm",
1189
+ "mult": 0
1190
+ },
1191
+ {
1192
+ "type": "crown",
1193
+ "mult": 0
1194
+ },
1195
+ {
1196
+ "type": "gloves",
1197
+ "mult": 0
1198
+ },
1199
+ {
1200
+ "type": "boots",
1201
+ "mult": 0
1202
+ }
1203
+ ]
1204
+ },
1205
+ {
1206
+ "name": "no fuel",
1207
+ "code": "NO_FUEL",
1208
+ "type": "flag",
1209
+ "subtype": "light",
1210
+ "id-type": "on wield",
1211
+ "power": 5,
1212
+ "type-mult": [
1213
+ {
1214
+ "type": "sword",
1215
+ "mult": 0
1216
+ },
1217
+ {
1218
+ "type": "polearm",
1219
+ "mult": 0
1220
+ },
1221
+ {
1222
+ "type": "hafted",
1223
+ "mult": 0
1224
+ },
1225
+ {
1226
+ "type": "digger",
1227
+ "mult": 0
1228
+ },
1229
+ {
1230
+ "type": "bow",
1231
+ "mult": 0
1232
+ },
1233
+ {
1234
+ "type": "ring",
1235
+ "mult": 0
1236
+ },
1237
+ {
1238
+ "type": "amulet",
1239
+ "mult": 0
1240
+ },
1241
+ {
1242
+ "type": "soft armor",
1243
+ "mult": 0
1244
+ },
1245
+ {
1246
+ "type": "hard armor",
1247
+ "mult": 0
1248
+ },
1249
+ {
1250
+ "type": "dragon armor",
1251
+ "mult": 0
1252
+ },
1253
+ {
1254
+ "type": "cloak",
1255
+ "mult": 0
1256
+ },
1257
+ {
1258
+ "type": "shield",
1259
+ "mult": 0
1260
+ },
1261
+ {
1262
+ "type": "helm",
1263
+ "mult": 0
1264
+ },
1265
+ {
1266
+ "type": "crown",
1267
+ "mult": 0
1268
+ },
1269
+ {
1270
+ "type": "gloves",
1271
+ "mult": 0
1272
+ },
1273
+ {
1274
+ "type": "boots",
1275
+ "mult": 0
1276
+ }
1277
+ ]
1278
+ },
1279
+ {
1280
+ "name": "impaired hitpoint recovery",
1281
+ "code": "IMPAIR_HP",
1282
+ "type": "flag",
1283
+ "subtype": "bad",
1284
+ "id-type": "timed",
1285
+ "power": -8,
1286
+ "msg": "You feel your {name} is slowing your recovery.",
1287
+ "desc": "Impairs hitpoint recovery",
1288
+ "bindui": {
1289
+ "ui": "imphp_ui_compact_0",
1290
+ "aux": 0
1291
+ }
1292
+ },
1293
+ {
1294
+ "name": "impaired mana recovery",
1295
+ "code": "IMPAIR_MANA",
1296
+ "type": "flag",
1297
+ "subtype": "bad",
1298
+ "id-type": "timed",
1299
+ "power": -8,
1300
+ "msg": "You feel your {name} is slowing your mana recovery.",
1301
+ "desc": "Impairs mana recovery",
1302
+ "bindui": {
1303
+ "ui": "impsp_ui_compact_0",
1304
+ "aux": 0
1305
+ }
1306
+ },
1307
+ {
1308
+ "name": "constant fear",
1309
+ "code": "AFRAID",
1310
+ "type": "flag",
1311
+ "subtype": "bad",
1312
+ "id-type": "on wield",
1313
+ "power": -20,
1314
+ "desc": "Makes you afraid of melee, and worse at shooting and casting spells",
1315
+ "bindui": {
1316
+ "ui": "fear_ui_compact_0",
1317
+ "aux": 0
1318
+ }
1319
+ },
1320
+ {
1321
+ "name": "teleportation ban",
1322
+ "code": "NO_TELEPORT",
1323
+ "type": "flag",
1324
+ "subtype": "bad",
1325
+ "id-type": "on effect",
1326
+ "power": -20,
1327
+ "msg": "Your {name} prevents you teleporting.",
1328
+ "desc": "Prevents teleportation",
1329
+ "bindui": {
1330
+ "ui": "noteleport_ui_compact_0",
1331
+ "aux": 0
1332
+ }
1333
+ },
1334
+ {
1335
+ "name": "aggravation",
1336
+ "code": "AGGRAVATE",
1337
+ "type": "flag",
1338
+ "subtype": "bad",
1339
+ "id-type": "timed",
1340
+ "power": -20,
1341
+ "msg": "You notice your {name} aggravating things around you.",
1342
+ "desc": "Aggravates creatures nearby",
1343
+ "bindui": {
1344
+ "ui": "aggravate_ui_compact_0",
1345
+ "aux": 0
1346
+ }
1347
+ },
1348
+ {
1349
+ "name": "experience drain",
1350
+ "code": "DRAIN_EXP",
1351
+ "type": "flag",
1352
+ "subtype": "bad",
1353
+ "id-type": "timed",
1354
+ "power": -5,
1355
+ "msg": "You sense your {name} is draining your life.",
1356
+ "desc": "Drains experience",
1357
+ "bindui": {
1358
+ "ui": "drainxp_ui_compact_0",
1359
+ "aux": 0
1360
+ }
1361
+ },
1362
+ {
1363
+ "name": "stuck on",
1364
+ "code": "STICKY",
1365
+ "type": "flag",
1366
+ "subtype": "bad",
1367
+ "id-type": "on wield",
1368
+ "power": -5,
1369
+ "desc": "Can't be removed",
1370
+ "bindui": {
1371
+ "ui": "sticky_ui_compact_0",
1372
+ "aux": 0
1373
+ }
1374
+ },
1375
+ {
1376
+ "name": "fragile",
1377
+ "code": "FRAGILE",
1378
+ "type": "flag",
1379
+ "subtype": "bad",
1380
+ "id-type": "on wield",
1381
+ "power": -1,
1382
+ "desc": "Can be destroyed if you attempt to remove its curses",
1383
+ "bindui": {
1384
+ "ui": "fragile_ui_compact_0",
1385
+ "aux": 0
1386
+ }
1387
+ },
1388
+ {
1389
+ "name": "intensity 2 light",
1390
+ "code": "LIGHT_2",
1391
+ "type": "flag",
1392
+ "subtype": "light",
1393
+ "id-type": "on wield",
1394
+ "power": 9,
1395
+ "type-mult": [
1396
+ {
1397
+ "type": "sword",
1398
+ "mult": 0
1399
+ },
1400
+ {
1401
+ "type": "polearm",
1402
+ "mult": 0
1403
+ },
1404
+ {
1405
+ "type": "hafted",
1406
+ "mult": 0
1407
+ },
1408
+ {
1409
+ "type": "digger",
1410
+ "mult": 0
1411
+ },
1412
+ {
1413
+ "type": "bow",
1414
+ "mult": 0
1415
+ },
1416
+ {
1417
+ "type": "ring",
1418
+ "mult": 0
1419
+ },
1420
+ {
1421
+ "type": "amulet",
1422
+ "mult": 0
1423
+ },
1424
+ {
1425
+ "type": "soft armor",
1426
+ "mult": 0
1427
+ },
1428
+ {
1429
+ "type": "hard armor",
1430
+ "mult": 0
1431
+ },
1432
+ {
1433
+ "type": "dragon armor",
1434
+ "mult": 0
1435
+ },
1436
+ {
1437
+ "type": "cloak",
1438
+ "mult": 0
1439
+ },
1440
+ {
1441
+ "type": "shield",
1442
+ "mult": 0
1443
+ },
1444
+ {
1445
+ "type": "helm",
1446
+ "mult": 0
1447
+ },
1448
+ {
1449
+ "type": "crown",
1450
+ "mult": 0
1451
+ },
1452
+ {
1453
+ "type": "gloves",
1454
+ "mult": 0
1455
+ },
1456
+ {
1457
+ "type": "boots",
1458
+ "mult": 0
1459
+ }
1460
+ ]
1461
+ },
1462
+ {
1463
+ "name": "intensity 3 light",
1464
+ "code": "LIGHT_3",
1465
+ "type": "flag",
1466
+ "subtype": "light",
1467
+ "id-type": "on wield",
1468
+ "power": 18,
1469
+ "type-mult": [
1470
+ {
1471
+ "type": "sword",
1472
+ "mult": 0
1473
+ },
1474
+ {
1475
+ "type": "polearm",
1476
+ "mult": 0
1477
+ },
1478
+ {
1479
+ "type": "hafted",
1480
+ "mult": 0
1481
+ },
1482
+ {
1483
+ "type": "digger",
1484
+ "mult": 0
1485
+ },
1486
+ {
1487
+ "type": "bow",
1488
+ "mult": 0
1489
+ },
1490
+ {
1491
+ "type": "ring",
1492
+ "mult": 0
1493
+ },
1494
+ {
1495
+ "type": "amulet",
1496
+ "mult": 0
1497
+ },
1498
+ {
1499
+ "type": "soft armor",
1500
+ "mult": 0
1501
+ },
1502
+ {
1503
+ "type": "hard armor",
1504
+ "mult": 0
1505
+ },
1506
+ {
1507
+ "type": "dragon armor",
1508
+ "mult": 0
1509
+ },
1510
+ {
1511
+ "type": "cloak",
1512
+ "mult": 0
1513
+ },
1514
+ {
1515
+ "type": "shield",
1516
+ "mult": 0
1517
+ },
1518
+ {
1519
+ "type": "helm",
1520
+ "mult": 0
1521
+ },
1522
+ {
1523
+ "type": "crown",
1524
+ "mult": 0
1525
+ },
1526
+ {
1527
+ "type": "gloves",
1528
+ "mult": 0
1529
+ },
1530
+ {
1531
+ "type": "boots",
1532
+ "mult": 0
1533
+ }
1534
+ ]
1535
+ },
1536
+ {
1537
+ "name": "power 1 digging",
1538
+ "code": "DIG_1",
1539
+ "type": "flag",
1540
+ "subtype": "dig",
1541
+ "id-type": "on wield",
1542
+ "power": 3,
1543
+ "bindui": {
1544
+ "ui": "tunneling_ui_compact_0",
1545
+ "aux": 0,
1546
+ "uival": 1
1547
+ }
1548
+ },
1549
+ {
1550
+ "name": "power 2 digging",
1551
+ "code": "DIG_2",
1552
+ "type": "flag",
1553
+ "subtype": "dig",
1554
+ "id-type": "on wield",
1555
+ "power": 6,
1556
+ "bindui": {
1557
+ "ui": "tunneling_ui_compact_0",
1558
+ "aux": 0,
1559
+ "uival": 2
1560
+ }
1561
+ },
1562
+ {
1563
+ "name": "power 3 digging",
1564
+ "code": "DIG_3",
1565
+ "type": "flag",
1566
+ "subtype": "dig",
1567
+ "id-type": "on wield",
1568
+ "power": 9,
1569
+ "bindui": {
1570
+ "ui": "tunneling_ui_compact_0",
1571
+ "aux": 0,
1572
+ "uival": 3
1573
+ }
1574
+ },
1575
+ {
1576
+ "name": "explode",
1577
+ "code": "EXPLODE",
1578
+ "type": "flag",
1579
+ "subtype": "light",
1580
+ "id-type": "on wield",
1581
+ "power": 0,
1582
+ "type-mult": [
1583
+ {
1584
+ "type": "sword",
1585
+ "mult": 0
1586
+ },
1587
+ {
1588
+ "type": "polearm",
1589
+ "mult": 0
1590
+ },
1591
+ {
1592
+ "type": "hafted",
1593
+ "mult": 0
1594
+ },
1595
+ {
1596
+ "type": "digger",
1597
+ "mult": 0
1598
+ },
1599
+ {
1600
+ "type": "bow",
1601
+ "mult": 0
1602
+ },
1603
+ {
1604
+ "type": "ring",
1605
+ "mult": 0
1606
+ },
1607
+ {
1608
+ "type": "amulet",
1609
+ "mult": 0
1610
+ },
1611
+ {
1612
+ "type": "soft armor",
1613
+ "mult": 0
1614
+ },
1615
+ {
1616
+ "type": "hard armor",
1617
+ "mult": 0
1618
+ },
1619
+ {
1620
+ "type": "dragon armor",
1621
+ "mult": 0
1622
+ },
1623
+ {
1624
+ "type": "cloak",
1625
+ "mult": 0
1626
+ },
1627
+ {
1628
+ "type": "shield",
1629
+ "mult": 0
1630
+ },
1631
+ {
1632
+ "type": "helm",
1633
+ "mult": 0
1634
+ },
1635
+ {
1636
+ "type": "crown",
1637
+ "mult": 0
1638
+ },
1639
+ {
1640
+ "type": "gloves",
1641
+ "mult": 0
1642
+ },
1643
+ {
1644
+ "type": "boots",
1645
+ "mult": 0
1646
+ }
1647
+ ]
1648
+ },
1649
+ {
1650
+ "name": "trap immunity",
1651
+ "code": "TRAP_IMMUNE",
1652
+ "type": "flag",
1653
+ "subtype": "misc ability",
1654
+ "id-type": "on effect",
1655
+ "power": 5,
1656
+ "type-mult": [
1657
+ {
1658
+ "type": "ring",
1659
+ "mult": 2
1660
+ },
1661
+ {
1662
+ "type": "amulet",
1663
+ "mult": 2
1664
+ },
1665
+ {
1666
+ "type": "light",
1667
+ "mult": 2
1668
+ },
1669
+ {
1670
+ "type": "soft armor",
1671
+ "mult": 2
1672
+ },
1673
+ {
1674
+ "type": "hard armor",
1675
+ "mult": 2
1676
+ },
1677
+ {
1678
+ "type": "dragon armor",
1679
+ "mult": 2
1680
+ },
1681
+ {
1682
+ "type": "cloak",
1683
+ "mult": 2
1684
+ },
1685
+ {
1686
+ "type": "shield",
1687
+ "mult": 2
1688
+ },
1689
+ {
1690
+ "type": "helm",
1691
+ "mult": 2
1692
+ },
1693
+ {
1694
+ "type": "crown",
1695
+ "mult": 2
1696
+ },
1697
+ {
1698
+ "type": "gloves",
1699
+ "mult": 2
1700
+ },
1701
+ {
1702
+ "type": "boots",
1703
+ "mult": 2
1704
+ }
1705
+ ],
1706
+ "msg": "Your {name} stops you from setting off the trap.",
1707
+ "desc": "Gives immunity to traps",
1708
+ "bindui": {
1709
+ "ui": "trap_immunity_ui_compact_0",
1710
+ "aux": 0
1711
+ }
1712
+ },
1713
+ {
1714
+ "name": "throwing",
1715
+ "code": "THROWING",
1716
+ "type": "flag",
1717
+ "subtype": "throw",
1718
+ "id-type": "on wield",
1719
+ "power": 4
1720
+ },
1721
+ {
1722
+ "name": "multiply weight",
1723
+ "code": "MULTIPLY_WEIGHT",
1724
+ "type": "flag",
1725
+ "subtype": "curse-only",
1726
+ "id-type": "on wield",
1727
+ "power": 0,
1728
+ "type-mult": [
1729
+ {
1730
+ "type": "sword",
1731
+ "mult": 0
1732
+ },
1733
+ {
1734
+ "type": "polearm",
1735
+ "mult": 0
1736
+ },
1737
+ {
1738
+ "type": "hafted",
1739
+ "mult": 0
1740
+ },
1741
+ {
1742
+ "type": "digger",
1743
+ "mult": 0
1744
+ },
1745
+ {
1746
+ "type": "bow",
1747
+ "mult": 0
1748
+ },
1749
+ {
1750
+ "type": "ring",
1751
+ "mult": 0
1752
+ },
1753
+ {
1754
+ "type": "amulet",
1755
+ "mult": 0
1756
+ },
1757
+ {
1758
+ "type": "light",
1759
+ "mult": 0
1760
+ },
1761
+ {
1762
+ "type": "soft armor",
1763
+ "mult": 0
1764
+ },
1765
+ {
1766
+ "type": "hard armor",
1767
+ "mult": 0
1768
+ },
1769
+ {
1770
+ "type": "dragon armor",
1771
+ "mult": 0
1772
+ },
1773
+ {
1774
+ "type": "cloak",
1775
+ "mult": 0
1776
+ },
1777
+ {
1778
+ "type": "shield",
1779
+ "mult": 0
1780
+ },
1781
+ {
1782
+ "type": "helm",
1783
+ "mult": 0
1784
+ },
1785
+ {
1786
+ "type": "crown",
1787
+ "mult": 0
1788
+ },
1789
+ {
1790
+ "type": "gloves",
1791
+ "mult": 0
1792
+ },
1793
+ {
1794
+ "type": "boots",
1795
+ "mult": 0
1796
+ }
1797
+ ]
1798
+ },
1799
+ {
1800
+ "name": "ignore acid",
1801
+ "code": "ACID",
1802
+ "type": "ignore",
1803
+ "power": 3
1804
+ },
1805
+ {
1806
+ "name": "ignore electricity",
1807
+ "code": "ELEC",
1808
+ "type": "ignore",
1809
+ "power": 1
1810
+ },
1811
+ {
1812
+ "name": "ignore fire",
1813
+ "code": "FIRE",
1814
+ "type": "ignore",
1815
+ "power": 3
1816
+ },
1817
+ {
1818
+ "name": "ignore cold",
1819
+ "code": "COLD",
1820
+ "type": "ignore",
1821
+ "power": 1
1822
+ },
1823
+ {
1824
+ "name": "acid resistance",
1825
+ "code": "ACID",
1826
+ "type": "resistance",
1827
+ "power": 5,
1828
+ "bindui": {
1829
+ "ui": "resist_ui_compact_0<ACID>",
1830
+ "aux": 0
1831
+ }
1832
+ },
1833
+ {
1834
+ "name": "electricity resistance",
1835
+ "code": "ELEC",
1836
+ "type": "resistance",
1837
+ "power": 6,
1838
+ "bindui": {
1839
+ "ui": "resist_ui_compact_0<ELEC>",
1840
+ "aux": 0
1841
+ }
1842
+ },
1843
+ {
1844
+ "name": "fire resistance",
1845
+ "code": "FIRE",
1846
+ "type": "resistance",
1847
+ "power": 6,
1848
+ "bindui": {
1849
+ "ui": "resist_ui_compact_0<FIRE>",
1850
+ "aux": 0
1851
+ }
1852
+ },
1853
+ {
1854
+ "name": "cold resistance",
1855
+ "code": "COLD",
1856
+ "type": "resistance",
1857
+ "power": 6,
1858
+ "bindui": {
1859
+ "ui": "resist_ui_compact_0<COLD>",
1860
+ "aux": 0
1861
+ }
1862
+ },
1863
+ {
1864
+ "name": "poison resistance",
1865
+ "code": "POIS",
1866
+ "type": "resistance",
1867
+ "power": 28,
1868
+ "bindui": {
1869
+ "ui": "resist_ui_compact_0<POIS>",
1870
+ "aux": 0
1871
+ }
1872
+ },
1873
+ {
1874
+ "name": "light resistance",
1875
+ "code": "LIGHT",
1876
+ "type": "resistance",
1877
+ "power": 6,
1878
+ "bindui": {
1879
+ "ui": "resist_ui_compact_0<LIGHT>",
1880
+ "aux": 0
1881
+ }
1882
+ },
1883
+ {
1884
+ "name": "dark resistance",
1885
+ "code": "DARK",
1886
+ "type": "resistance",
1887
+ "power": 16,
1888
+ "bindui": {
1889
+ "ui": "resist_ui_compact_0<DARK>",
1890
+ "aux": 0
1891
+ }
1892
+ },
1893
+ {
1894
+ "name": "sound resistance",
1895
+ "code": "SOUND",
1896
+ "type": "resistance",
1897
+ "power": 14,
1898
+ "bindui": {
1899
+ "ui": "resist_ui_compact_0<SOUND>",
1900
+ "aux": 0
1901
+ }
1902
+ },
1903
+ {
1904
+ "name": "shards resistance",
1905
+ "code": "SHARD",
1906
+ "type": "resistance",
1907
+ "power": 8,
1908
+ "bindui": {
1909
+ "ui": "resist_ui_compact_0<SHARD>",
1910
+ "aux": 0
1911
+ }
1912
+ },
1913
+ {
1914
+ "name": "nexus resistance",
1915
+ "code": "NEXUS",
1916
+ "type": "resistance",
1917
+ "power": 15,
1918
+ "bindui": {
1919
+ "ui": "resist_ui_compact_0<NEXUS>",
1920
+ "aux": 0
1921
+ }
1922
+ },
1923
+ {
1924
+ "name": "nether resistance",
1925
+ "code": "NETHER",
1926
+ "type": "resistance",
1927
+ "power": 20,
1928
+ "bindui": {
1929
+ "ui": "resist_ui_compact_0<NETHER>",
1930
+ "aux": 0
1931
+ }
1932
+ },
1933
+ {
1934
+ "name": "chaos resistance",
1935
+ "code": "CHAOS",
1936
+ "type": "resistance",
1937
+ "power": 20,
1938
+ "bindui": {
1939
+ "ui": "resist_ui_compact_0<CHAOS>",
1940
+ "aux": 0
1941
+ }
1942
+ },
1943
+ {
1944
+ "name": "disenchantment resistance",
1945
+ "code": "DISEN",
1946
+ "type": "resistance",
1947
+ "power": 20,
1948
+ "bindui": {
1949
+ "ui": "resist_ui_compact_0<DISEN>",
1950
+ "aux": 0
1951
+ }
1952
+ },
1953
+ {
1954
+ "name": "acid vulnerability",
1955
+ "code": "ACID",
1956
+ "type": "vulnerability",
1957
+ "power": -6,
1958
+ "bindui": {
1959
+ "ui": "resist_ui_compact_0<ACID>",
1960
+ "aux": 0
1961
+ }
1962
+ },
1963
+ {
1964
+ "name": "lightning vulnerability",
1965
+ "code": "ELEC",
1966
+ "type": "vulnerability",
1967
+ "power": -6,
1968
+ "bindui": {
1969
+ "ui": "resist_ui_compact_0<ELEC>",
1970
+ "aux": 0
1971
+ }
1972
+ },
1973
+ {
1974
+ "name": "fire vulnerability",
1975
+ "code": "FIRE",
1976
+ "type": "vulnerability",
1977
+ "power": -6,
1978
+ "bindui": {
1979
+ "ui": "resist_ui_compact_0<FIRE>",
1980
+ "aux": 0
1981
+ }
1982
+ },
1983
+ {
1984
+ "name": "cold vulnerability",
1985
+ "code": "COLD",
1986
+ "type": "vulnerability",
1987
+ "power": -6,
1988
+ "bindui": {
1989
+ "ui": "resist_ui_compact_0<COLD>",
1990
+ "aux": 0
1991
+ }
1992
+ },
1993
+ {
1994
+ "name": "acid immunity",
1995
+ "code": "ACID",
1996
+ "type": "immunity",
1997
+ "power": 43,
1998
+ "bindui": {
1999
+ "ui": "resist_ui_compact_0<ACID>",
2000
+ "aux": 0
2001
+ }
2002
+ },
2003
+ {
2004
+ "name": "lightning immunity",
2005
+ "code": "ELEC",
2006
+ "type": "immunity",
2007
+ "power": 41,
2008
+ "bindui": {
2009
+ "ui": "resist_ui_compact_0<ELEC>",
2010
+ "aux": 0
2011
+ }
2012
+ },
2013
+ {
2014
+ "name": "fire immunity",
2015
+ "code": "FIRE",
2016
+ "type": "immunity",
2017
+ "power": 46,
2018
+ "bindui": {
2019
+ "ui": "resist_ui_compact_0<FIRE>",
2020
+ "aux": 0
2021
+ }
2022
+ },
2023
+ {
2024
+ "name": "cold immunity",
2025
+ "code": "COLD",
2026
+ "type": "immunity",
2027
+ "power": 43,
2028
+ "bindui": {
2029
+ "ui": "resist_ui_compact_0<COLD>",
2030
+ "aux": 0
2031
+ }
2032
+ }
2033
+ ]
2034
+ }