@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,3340 @@
1
+ {
2
+ "file": "activation",
3
+ "source": "lib/gamedata/activation.txt",
4
+ "records": [
5
+ {
6
+ "name": "CURE_POISON",
7
+ "aim": 0,
8
+ "level": 5,
9
+ "power": 1,
10
+ "effect": [
11
+ {
12
+ "eff": "CURE",
13
+ "type": "POISONED"
14
+ }
15
+ ],
16
+ "desc": [
17
+ "neutralizes poison"
18
+ ]
19
+ },
20
+ {
21
+ "name": "CURE_BLINDNESS",
22
+ "aim": 0,
23
+ "level": 13,
24
+ "power": 4,
25
+ "effect": [
26
+ {
27
+ "eff": "CURE",
28
+ "type": "BLIND"
29
+ }
30
+ ],
31
+ "desc": [
32
+ "cures blindness"
33
+ ]
34
+ },
35
+ {
36
+ "name": "CURE_PARANOIA",
37
+ "aim": 0,
38
+ "level": 8,
39
+ "power": 2,
40
+ "effect": [
41
+ {
42
+ "eff": "CURE",
43
+ "type": "AFRAID"
44
+ }
45
+ ],
46
+ "desc": [
47
+ "removes your fear"
48
+ ]
49
+ },
50
+ {
51
+ "name": "CURE_CONFUSION",
52
+ "aim": 0,
53
+ "level": 13,
54
+ "power": 4,
55
+ "effect": [
56
+ {
57
+ "eff": "CURE",
58
+ "type": "CONFUSED"
59
+ }
60
+ ],
61
+ "desc": [
62
+ "cures confusion"
63
+ ]
64
+ },
65
+ {
66
+ "name": "CURE_MIND",
67
+ "aim": 0,
68
+ "level": 18,
69
+ "power": 8,
70
+ "effect": [
71
+ {
72
+ "eff": "RESTORE_MANA",
73
+ "dice": "20"
74
+ },
75
+ {
76
+ "eff": "CURE",
77
+ "type": "CONFUSED"
78
+ },
79
+ {
80
+ "eff": "CURE",
81
+ "type": "AFRAID"
82
+ },
83
+ {
84
+ "eff": "CURE",
85
+ "type": "IMAGE"
86
+ },
87
+ {
88
+ "eff": "TIMED_INC",
89
+ "type": "OPP_CONF",
90
+ "dice": "12+6d10"
91
+ }
92
+ ],
93
+ "desc": [
94
+ "restores 20SP, cures confusion and hallucination, removes fear and grants you temporary resistance to confusion"
95
+ ]
96
+ },
97
+ {
98
+ "name": "CURE_BODY",
99
+ "aim": 0,
100
+ "level": 15,
101
+ "power": 7,
102
+ "effect": [
103
+ {
104
+ "eff": "HEAL_HP",
105
+ "dice": "30"
106
+ },
107
+ {
108
+ "eff": "CURE",
109
+ "type": "STUN"
110
+ },
111
+ {
112
+ "eff": "CURE",
113
+ "type": "CUT"
114
+ },
115
+ {
116
+ "eff": "CURE",
117
+ "type": "POISONED"
118
+ },
119
+ {
120
+ "eff": "CURE",
121
+ "type": "BLIND"
122
+ }
123
+ ],
124
+ "desc": [
125
+ "heals 30 hitpoints, cut damage, and cures stunning, poison and blindness"
126
+ ]
127
+ },
128
+ {
129
+ "name": "CURE_LIGHT",
130
+ "aim": 0,
131
+ "level": 12,
132
+ "power": 3,
133
+ "effect": [
134
+ {
135
+ "eff": "HEAL_HP",
136
+ "dice": "20"
137
+ },
138
+ {
139
+ "eff": "CURE",
140
+ "type": "BLIND"
141
+ },
142
+ {
143
+ "eff": "TIMED_DEC",
144
+ "type": "CUT",
145
+ "dice": "20"
146
+ },
147
+ {
148
+ "eff": "TIMED_DEC",
149
+ "type": "CONFUSED",
150
+ "dice": "20"
151
+ }
152
+ ],
153
+ "desc": [
154
+ "heals 20 hitpoints, some cut damage, makes you a little less confused, and cures blindness"
155
+ ]
156
+ },
157
+ {
158
+ "name": "CURE_SERIOUS",
159
+ "aim": 0,
160
+ "level": 25,
161
+ "power": 6,
162
+ "effect": [
163
+ {
164
+ "eff": "HEAL_HP",
165
+ "dice": "40"
166
+ },
167
+ {
168
+ "eff": "CURE",
169
+ "type": "BLIND"
170
+ },
171
+ {
172
+ "eff": "CURE",
173
+ "type": "CUT"
174
+ },
175
+ {
176
+ "eff": "CURE",
177
+ "type": "CONFUSED"
178
+ }
179
+ ],
180
+ "msg": [
181
+ "Your {kind} radiate{s} deep purple..."
182
+ ],
183
+ "desc": [
184
+ "heals 40 hitpoints, cut damage, and cures blindness and confusion"
185
+ ]
186
+ },
187
+ {
188
+ "name": "CURE_CRITICAL",
189
+ "aim": 0,
190
+ "level": 40,
191
+ "power": 9,
192
+ "effect": [
193
+ {
194
+ "eff": "HEAL_HP",
195
+ "dice": "60"
196
+ },
197
+ {
198
+ "eff": "CURE",
199
+ "type": "BLIND"
200
+ },
201
+ {
202
+ "eff": "CURE",
203
+ "type": "CUT"
204
+ },
205
+ {
206
+ "eff": "CURE",
207
+ "type": "POISONED"
208
+ },
209
+ {
210
+ "eff": "CURE",
211
+ "type": "STUN"
212
+ },
213
+ {
214
+ "eff": "CURE",
215
+ "type": "AMNESIA"
216
+ },
217
+ {
218
+ "eff": "CURE",
219
+ "type": "CONFUSED"
220
+ }
221
+ ],
222
+ "desc": [
223
+ "heals 60 hitpoints, cut damage, and cures stunning, poisoning, blindness, and confusion"
224
+ ]
225
+ },
226
+ {
227
+ "name": "CURE_FULL",
228
+ "aim": 0,
229
+ "level": 80,
230
+ "power": 12,
231
+ "effect": [
232
+ {
233
+ "eff": "HEAL_HP",
234
+ "dice": "300+m35"
235
+ },
236
+ {
237
+ "eff": "CURE",
238
+ "type": "BLIND"
239
+ },
240
+ {
241
+ "eff": "CURE",
242
+ "type": "CUT"
243
+ },
244
+ {
245
+ "eff": "CURE",
246
+ "type": "POISONED"
247
+ },
248
+ {
249
+ "eff": "CURE",
250
+ "type": "STUN"
251
+ },
252
+ {
253
+ "eff": "CURE",
254
+ "type": "AMNESIA"
255
+ },
256
+ {
257
+ "eff": "CURE",
258
+ "type": "CONFUSED"
259
+ }
260
+ ],
261
+ "desc": [
262
+ "heals 35% of max HP (minimum 300HP), cut damage, and cures stunning, poisoning, blindness, and confusion"
263
+ ]
264
+ },
265
+ {
266
+ "name": "CURE_FULL2",
267
+ "aim": 0,
268
+ "level": 90,
269
+ "power": 18,
270
+ "effect": [
271
+ {
272
+ "eff": "HEAL_HP",
273
+ "dice": "1200"
274
+ },
275
+ {
276
+ "eff": "CURE",
277
+ "type": "BLIND"
278
+ },
279
+ {
280
+ "eff": "CURE",
281
+ "type": "CUT"
282
+ },
283
+ {
284
+ "eff": "CURE",
285
+ "type": "POISONED"
286
+ },
287
+ {
288
+ "eff": "CURE",
289
+ "type": "STUN"
290
+ },
291
+ {
292
+ "eff": "CURE",
293
+ "type": "AMNESIA"
294
+ },
295
+ {
296
+ "eff": "CURE",
297
+ "type": "CONFUSED"
298
+ }
299
+ ],
300
+ "desc": [
301
+ "heals 1200 hit points, cut damage, and cures stunning, poisoning, blindness, and confusion"
302
+ ]
303
+ },
304
+ {
305
+ "name": "CURE_NONORLYBIG",
306
+ "aim": 0,
307
+ "level": 100,
308
+ "power": 21,
309
+ "effect": [
310
+ {
311
+ "eff": "RESTORE_EXP"
312
+ },
313
+ {
314
+ "eff": "CURE",
315
+ "type": "BLIND"
316
+ },
317
+ {
318
+ "eff": "CURE",
319
+ "type": "CUT"
320
+ },
321
+ {
322
+ "eff": "CURE",
323
+ "type": "POISONED"
324
+ },
325
+ {
326
+ "eff": "CURE",
327
+ "type": "STUN"
328
+ },
329
+ {
330
+ "eff": "CURE",
331
+ "type": "AMNESIA"
332
+ },
333
+ {
334
+ "eff": "CURE",
335
+ "type": "CONFUSED"
336
+ },
337
+ {
338
+ "eff": "CURE",
339
+ "type": "IMAGE"
340
+ },
341
+ {
342
+ "eff": "RESTORE_STAT",
343
+ "type": "STR"
344
+ },
345
+ {
346
+ "eff": "RESTORE_STAT",
347
+ "type": "INT"
348
+ },
349
+ {
350
+ "eff": "RESTORE_STAT",
351
+ "type": "WIS"
352
+ },
353
+ {
354
+ "eff": "RESTORE_STAT",
355
+ "type": "DEX"
356
+ },
357
+ {
358
+ "eff": "RESTORE_STAT",
359
+ "type": "CON"
360
+ },
361
+ {
362
+ "eff": "HEAL_HP",
363
+ "dice": "5000"
364
+ }
365
+ ],
366
+ "msg": [
367
+ "You feel life flow through your body!"
368
+ ],
369
+ "desc": [
370
+ "heals 5000 hit points, restores experience and stats, heals cut damage, and cures stunning, poison, blindness, and confusion"
371
+ ]
372
+ },
373
+ {
374
+ "name": "CURE_TEMP",
375
+ "aim": 0,
376
+ "level": 27,
377
+ "power": 9,
378
+ "effect": [
379
+ {
380
+ "eff": "CURE",
381
+ "type": "BLIND"
382
+ },
383
+ {
384
+ "eff": "CURE",
385
+ "type": "CUT"
386
+ },
387
+ {
388
+ "eff": "CURE",
389
+ "type": "POISONED"
390
+ },
391
+ {
392
+ "eff": "CURE",
393
+ "type": "STUN"
394
+ },
395
+ {
396
+ "eff": "CURE",
397
+ "type": "CONFUSED"
398
+ }
399
+ ],
400
+ "desc": [
401
+ "heals cut damage, and cures all stunning, poison, blindness and confusion"
402
+ ]
403
+ },
404
+ {
405
+ "name": "HEAL1",
406
+ "aim": 0,
407
+ "level": 60,
408
+ "power": 13,
409
+ "effect": [
410
+ {
411
+ "eff": "HEAL_HP",
412
+ "dice": "500"
413
+ },
414
+ {
415
+ "eff": "CURE",
416
+ "type": "CUT"
417
+ }
418
+ ],
419
+ "msg": [
420
+ "You feel a warm tingling inside..."
421
+ ],
422
+ "desc": [
423
+ "heals 500 hit points"
424
+ ]
425
+ },
426
+ {
427
+ "name": "HEAL2",
428
+ "aim": 0,
429
+ "level": 80,
430
+ "power": 16,
431
+ "effect": [
432
+ {
433
+ "eff": "HEAL_HP",
434
+ "dice": "1000"
435
+ },
436
+ {
437
+ "eff": "CURE",
438
+ "type": "CUT"
439
+ }
440
+ ],
441
+ "msg": [
442
+ "{name} glows a bright white..."
443
+ ],
444
+ "desc": [
445
+ "heals 1000 hit points"
446
+ ]
447
+ },
448
+ {
449
+ "name": "HEAL3",
450
+ "aim": 0,
451
+ "level": 65,
452
+ "power": 14,
453
+ "effect": [
454
+ {
455
+ "eff": "HEAL_HP",
456
+ "dice": "500"
457
+ },
458
+ {
459
+ "eff": "CURE",
460
+ "type": "CUT"
461
+ },
462
+ {
463
+ "eff": "CURE",
464
+ "type": "STUN"
465
+ }
466
+ ],
467
+ "desc": [
468
+ "heals 500 hit points, heals cut damage, and cures stunning"
469
+ ]
470
+ },
471
+ {
472
+ "name": "RESTORE_EXP",
473
+ "aim": 0,
474
+ "level": 40,
475
+ "power": 8,
476
+ "effect": [
477
+ {
478
+ "eff": "RESTORE_EXP"
479
+ }
480
+ ],
481
+ "desc": [
482
+ "restores your experience"
483
+ ]
484
+ },
485
+ {
486
+ "name": "RESTORE_MANA",
487
+ "aim": 0,
488
+ "level": 75,
489
+ "power": 20,
490
+ "effect": [
491
+ {
492
+ "eff": "RESTORE_MANA"
493
+ }
494
+ ],
495
+ "desc": [
496
+ "restores your mana points to maximum"
497
+ ]
498
+ },
499
+ {
500
+ "name": "BRAWN",
501
+ "aim": 0,
502
+ "level": 35,
503
+ "power": 30,
504
+ "effect": [
505
+ {
506
+ "eff": "GAIN_STAT",
507
+ "type": "STR"
508
+ },
509
+ {
510
+ "eff": "LOSE_RANDOM_STAT",
511
+ "type": "STR"
512
+ }
513
+ ],
514
+ "desc": [
515
+ "raises your strength at the expense of a random attribute"
516
+ ]
517
+ },
518
+ {
519
+ "name": "INTELLECT",
520
+ "aim": 0,
521
+ "level": 31,
522
+ "power": 25,
523
+ "effect": [
524
+ {
525
+ "eff": "GAIN_STAT",
526
+ "type": "INT"
527
+ },
528
+ {
529
+ "eff": "LOSE_RANDOM_STAT",
530
+ "type": "INT"
531
+ }
532
+ ],
533
+ "desc": [
534
+ "raises your intelligence at the expense of a random attribute"
535
+ ]
536
+ },
537
+ {
538
+ "name": "CONTEMPLATION",
539
+ "aim": 0,
540
+ "level": 31,
541
+ "power": 25,
542
+ "effect": [
543
+ {
544
+ "eff": "GAIN_STAT",
545
+ "type": "WIS"
546
+ },
547
+ {
548
+ "eff": "LOSE_RANDOM_STAT",
549
+ "type": "WIS"
550
+ }
551
+ ],
552
+ "desc": [
553
+ "raises your wisdom at the expense of a random attribute"
554
+ ]
555
+ },
556
+ {
557
+ "name": "TOUGHNESS",
558
+ "aim": 0,
559
+ "level": 35,
560
+ "power": 30,
561
+ "effect": [
562
+ {
563
+ "eff": "GAIN_STAT",
564
+ "type": "CON"
565
+ },
566
+ {
567
+ "eff": "LOSE_RANDOM_STAT",
568
+ "type": "CON"
569
+ }
570
+ ],
571
+ "desc": [
572
+ "raises your constitution at the expense of a random attribute"
573
+ ]
574
+ },
575
+ {
576
+ "name": "NIMBLENESS",
577
+ "aim": 0,
578
+ "level": 31,
579
+ "power": 25,
580
+ "effect": [
581
+ {
582
+ "eff": "GAIN_STAT",
583
+ "type": "DEX"
584
+ },
585
+ {
586
+ "eff": "LOSE_RANDOM_STAT",
587
+ "type": "DEX"
588
+ }
589
+ ],
590
+ "desc": [
591
+ "raises your dexterity at the expense of a random attribute"
592
+ ]
593
+ },
594
+ {
595
+ "name": "RESTORE_STR",
596
+ "aim": 0,
597
+ "level": 20,
598
+ "power": 10,
599
+ "effect": [
600
+ {
601
+ "eff": "RESTORE_STAT",
602
+ "type": "STR"
603
+ }
604
+ ],
605
+ "desc": [
606
+ "restores your strength"
607
+ ]
608
+ },
609
+ {
610
+ "name": "RESTORE_INT",
611
+ "aim": 0,
612
+ "level": 16,
613
+ "power": 8,
614
+ "effect": [
615
+ {
616
+ "eff": "RESTORE_STAT",
617
+ "type": "INT"
618
+ }
619
+ ],
620
+ "desc": [
621
+ "restores your intelligence"
622
+ ]
623
+ },
624
+ {
625
+ "name": "RESTORE_WIS",
626
+ "aim": 0,
627
+ "level": 16,
628
+ "power": 8,
629
+ "effect": [
630
+ {
631
+ "eff": "RESTORE_STAT",
632
+ "type": "WIS"
633
+ }
634
+ ],
635
+ "desc": [
636
+ "restores your wisdom"
637
+ ]
638
+ },
639
+ {
640
+ "name": "RESTORE_DEX",
641
+ "aim": 0,
642
+ "level": 18,
643
+ "power": 9,
644
+ "effect": [
645
+ {
646
+ "eff": "RESTORE_STAT",
647
+ "type": "DEX"
648
+ }
649
+ ],
650
+ "desc": [
651
+ "restores your dexterity"
652
+ ]
653
+ },
654
+ {
655
+ "name": "RESTORE_CON",
656
+ "aim": 0,
657
+ "level": 20,
658
+ "power": 10,
659
+ "effect": [
660
+ {
661
+ "eff": "RESTORE_STAT",
662
+ "type": "CON"
663
+ }
664
+ ],
665
+ "desc": [
666
+ "restores your constitution"
667
+ ]
668
+ },
669
+ {
670
+ "name": "RESTORE_ALL",
671
+ "aim": 0,
672
+ "level": 67,
673
+ "power": 15,
674
+ "effect": [
675
+ {
676
+ "eff": "RESTORE_STAT",
677
+ "type": "STR"
678
+ },
679
+ {
680
+ "eff": "RESTORE_STAT",
681
+ "type": "INT"
682
+ },
683
+ {
684
+ "eff": "RESTORE_STAT",
685
+ "type": "WIS"
686
+ },
687
+ {
688
+ "eff": "RESTORE_STAT",
689
+ "type": "DEX"
690
+ },
691
+ {
692
+ "eff": "RESTORE_STAT",
693
+ "type": "CON"
694
+ }
695
+ ],
696
+ "desc": [
697
+ "restores all your stats"
698
+ ]
699
+ },
700
+ {
701
+ "name": "RESTORE_ST_LEV",
702
+ "aim": 0,
703
+ "level": 72,
704
+ "power": 17,
705
+ "effect": [
706
+ {
707
+ "eff": "RESTORE_STAT",
708
+ "type": "STR"
709
+ },
710
+ {
711
+ "eff": "RESTORE_STAT",
712
+ "type": "INT"
713
+ },
714
+ {
715
+ "eff": "RESTORE_STAT",
716
+ "type": "WIS"
717
+ },
718
+ {
719
+ "eff": "RESTORE_STAT",
720
+ "type": "DEX"
721
+ },
722
+ {
723
+ "eff": "RESTORE_STAT",
724
+ "type": "CON"
725
+ },
726
+ {
727
+ "eff": "RESTORE_EXP"
728
+ }
729
+ ],
730
+ "desc": [
731
+ "restores all your stats and your experience points"
732
+ ]
733
+ },
734
+ {
735
+ "name": "TMD_FREE_ACT",
736
+ "aim": 0,
737
+ "level": 8,
738
+ "power": 4,
739
+ "effect": [
740
+ {
741
+ "eff": "TIMED_INC",
742
+ "type": "FREE_ACT",
743
+ "dice": "10+1d10"
744
+ }
745
+ ],
746
+ "desc": [
747
+ "grants temporary free action for 1d10+10 turns"
748
+ ]
749
+ },
750
+ {
751
+ "name": "TMD_INFRA",
752
+ "aim": 0,
753
+ "level": 10,
754
+ "power": 5,
755
+ "effect": [
756
+ {
757
+ "eff": "TIMED_INC",
758
+ "type": "SINFRA",
759
+ "dice": "100+4d25"
760
+ }
761
+ ],
762
+ "desc": [
763
+ "extends your infravision by 50 feet for 4d25+100 turns"
764
+ ]
765
+ },
766
+ {
767
+ "name": "TMD_SINVIS",
768
+ "aim": 0,
769
+ "level": 12,
770
+ "power": 7,
771
+ "effect": [
772
+ {
773
+ "eff": "CURE",
774
+ "type": "BLIND"
775
+ },
776
+ {
777
+ "eff": "TIMED_INC",
778
+ "type": "SINVIS",
779
+ "dice": "12+2d6"
780
+ }
781
+ ],
782
+ "desc": [
783
+ "cures blindness and allows you to see invisible things for 2d6+12 turns"
784
+ ]
785
+ },
786
+ {
787
+ "name": "TMD_ESP",
788
+ "aim": 0,
789
+ "level": 15,
790
+ "power": 10,
791
+ "effect": [
792
+ {
793
+ "eff": "CURE",
794
+ "type": "BLIND"
795
+ },
796
+ {
797
+ "eff": "TIMED_INC",
798
+ "type": "TELEPATHY",
799
+ "dice": "24+9d9"
800
+ }
801
+ ],
802
+ "desc": [
803
+ "cures blindness and gives you telepathy for 9d9+24 turns"
804
+ ]
805
+ },
806
+ {
807
+ "name": "ENLIGHTENMENT",
808
+ "aim": 0,
809
+ "level": 60,
810
+ "power": 25,
811
+ "effect": [
812
+ {
813
+ "eff": "LIGHT_LEVEL",
814
+ "dice": "1"
815
+ }
816
+ ],
817
+ "desc": [
818
+ "completely lights up and magically maps the level, detecting all objects"
819
+ ]
820
+ },
821
+ {
822
+ "name": "HERO",
823
+ "aim": 0,
824
+ "level": 12,
825
+ "power": 7,
826
+ "effect": [
827
+ {
828
+ "eff": "HEAL_HP",
829
+ "dice": "10"
830
+ },
831
+ {
832
+ "eff": "CURE",
833
+ "type": "AFRAID"
834
+ },
835
+ {
836
+ "eff": "TIMED_INC",
837
+ "type": "HERO",
838
+ "dice": "25+1d25"
839
+ }
840
+ ],
841
+ "desc": [
842
+ "restores 10 hit points, removes fear and grants you resistance to fear and +12 to-hit for 1d25+25 turns"
843
+ ]
844
+ },
845
+ {
846
+ "name": "SHERO",
847
+ "aim": 0,
848
+ "level": 15,
849
+ "power": 9,
850
+ "effect": [
851
+ {
852
+ "eff": "HEAL_HP",
853
+ "dice": "30"
854
+ },
855
+ {
856
+ "eff": "CURE",
857
+ "type": "AFRAID"
858
+ },
859
+ {
860
+ "eff": "TIMED_INC",
861
+ "type": "SHERO",
862
+ "dice": "25+1d25"
863
+ }
864
+ ],
865
+ "desc": [
866
+ "restores 30 hit points, removes fear and grants you resistance to fear, +25 to-hit for melee, and -10AC for 1d25+25 turns"
867
+ ]
868
+ },
869
+ {
870
+ "name": "RESIST_ACID",
871
+ "aim": 0,
872
+ "level": 5,
873
+ "power": 4,
874
+ "effect": [
875
+ {
876
+ "eff": "TIMED_INC",
877
+ "type": "OPP_ACID",
878
+ "dice": "10+1d10"
879
+ }
880
+ ],
881
+ "desc": [
882
+ "grants temporary resistance to acid for 1d10+10 turns"
883
+ ]
884
+ },
885
+ {
886
+ "name": "RESIST_ELEC",
887
+ "aim": 0,
888
+ "level": 5,
889
+ "power": 4,
890
+ "effect": [
891
+ {
892
+ "eff": "TIMED_INC",
893
+ "type": "OPP_ELEC",
894
+ "dice": "10+1d10"
895
+ }
896
+ ],
897
+ "desc": [
898
+ "grants temporary resistance to electricity for 1d10+10 turns"
899
+ ]
900
+ },
901
+ {
902
+ "name": "RESIST_FIRE",
903
+ "aim": 0,
904
+ "level": 5,
905
+ "power": 4,
906
+ "effect": [
907
+ {
908
+ "eff": "TIMED_INC",
909
+ "type": "OPP_FIRE",
910
+ "dice": "10+1d10"
911
+ }
912
+ ],
913
+ "desc": [
914
+ "grants temporary resistance to fire for 1d10+10 turns"
915
+ ]
916
+ },
917
+ {
918
+ "name": "RESIST_COLD",
919
+ "aim": 0,
920
+ "level": 5,
921
+ "power": 4,
922
+ "effect": [
923
+ {
924
+ "eff": "TIMED_INC",
925
+ "type": "OPP_COLD",
926
+ "dice": "10+1d10"
927
+ }
928
+ ],
929
+ "desc": [
930
+ "grants temporary resistance to cold for 1d10+10 turns"
931
+ ]
932
+ },
933
+ {
934
+ "name": "RESIST_POIS",
935
+ "aim": 0,
936
+ "level": 5,
937
+ "power": 4,
938
+ "effect": [
939
+ {
940
+ "eff": "TIMED_INC",
941
+ "type": "OPP_POIS",
942
+ "dice": "10+1d10"
943
+ }
944
+ ],
945
+ "desc": [
946
+ "grants temporary resistance to poison for 1d10+10 turns"
947
+ ]
948
+ },
949
+ {
950
+ "name": "RESIST_ALL",
951
+ "aim": 0,
952
+ "level": 15,
953
+ "power": 10,
954
+ "effect": [
955
+ {
956
+ "eff": "SET_VALUE",
957
+ "dice": "20+1d20"
958
+ },
959
+ {
960
+ "eff": "TIMED_INC",
961
+ "type": "OPP_ACID"
962
+ },
963
+ {
964
+ "eff": "TIMED_INC",
965
+ "type": "OPP_ELEC"
966
+ },
967
+ {
968
+ "eff": "TIMED_INC",
969
+ "type": "OPP_FIRE"
970
+ },
971
+ {
972
+ "eff": "TIMED_INC",
973
+ "type": "OPP_COLD"
974
+ },
975
+ {
976
+ "eff": "TIMED_INC",
977
+ "type": "OPP_POIS"
978
+ },
979
+ {
980
+ "eff": "CLEAR_VALUE"
981
+ }
982
+ ],
983
+ "msg": [
984
+ "{name} glows many colours..."
985
+ ],
986
+ "desc": [
987
+ "grants temporary resistance to acid, electricity, fire, cold and poison",
988
+ " for 1d20+20 turns"
989
+ ]
990
+ },
991
+ {
992
+ "name": "DETECT_TREASURE",
993
+ "aim": 0,
994
+ "level": 5,
995
+ "power": 6,
996
+ "effect": [
997
+ {
998
+ "eff": "DETECT_GOLD",
999
+ "effect-yx": {
1000
+ "y": 22,
1001
+ "x": 40
1002
+ }
1003
+ },
1004
+ {
1005
+ "eff": "SENSE_OBJECTS",
1006
+ "effect-yx": {
1007
+ "y": 22,
1008
+ "x": 40
1009
+ }
1010
+ }
1011
+ ],
1012
+ "desc": [
1013
+ "detects gold and objects nearby"
1014
+ ]
1015
+ },
1016
+ {
1017
+ "name": "DETECT_INVIS",
1018
+ "aim": 0,
1019
+ "level": 8,
1020
+ "power": 6,
1021
+ "effect": [
1022
+ {
1023
+ "eff": "DETECT_INVISIBLE_MONSTERS",
1024
+ "effect-yx": {
1025
+ "y": 22,
1026
+ "x": 40
1027
+ }
1028
+ }
1029
+ ],
1030
+ "desc": [
1031
+ "detects invisible creatures nearby"
1032
+ ]
1033
+ },
1034
+ {
1035
+ "name": "DETECT_EVIL",
1036
+ "aim": 0,
1037
+ "level": 15,
1038
+ "power": 6,
1039
+ "effect": [
1040
+ {
1041
+ "eff": "DETECT_EVIL",
1042
+ "effect-yx": {
1043
+ "y": 22,
1044
+ "x": 40
1045
+ }
1046
+ }
1047
+ ],
1048
+ "desc": [
1049
+ "detects evil creatures nearby"
1050
+ ]
1051
+ },
1052
+ {
1053
+ "name": "DETECT_ALL",
1054
+ "aim": 0,
1055
+ "level": 20,
1056
+ "power": 10,
1057
+ "effect": [
1058
+ {
1059
+ "eff": "DETECT_GOLD",
1060
+ "effect-yx": {
1061
+ "y": 22,
1062
+ "x": 40
1063
+ }
1064
+ },
1065
+ {
1066
+ "eff": "SENSE_OBJECTS",
1067
+ "effect-yx": {
1068
+ "y": 22,
1069
+ "x": 40
1070
+ }
1071
+ },
1072
+ {
1073
+ "eff": "DETECT_INVISIBLE_MONSTERS",
1074
+ "effect-yx": {
1075
+ "y": 22,
1076
+ "x": 40
1077
+ }
1078
+ },
1079
+ {
1080
+ "eff": "DETECT_VISIBLE_MONSTERS",
1081
+ "effect-yx": {
1082
+ "y": 22,
1083
+ "x": 40
1084
+ }
1085
+ },
1086
+ {
1087
+ "eff": "MAP_AREA",
1088
+ "effect-yx": {
1089
+ "y": 11,
1090
+ "x": 11
1091
+ }
1092
+ }
1093
+ ],
1094
+ "msg": [
1095
+ "{name} forms an image in your mind..."
1096
+ ],
1097
+ "desc": [
1098
+ "detects treasure and all creatures and maps an area nearby"
1099
+ ]
1100
+ },
1101
+ {
1102
+ "name": "DETECT_OBJECTS",
1103
+ "aim": 0,
1104
+ "level": 15,
1105
+ "power": 10,
1106
+ "effect": [
1107
+ {
1108
+ "eff": "DETECT_OBJECTS",
1109
+ "effect-yx": {
1110
+ "y": 22,
1111
+ "x": 40
1112
+ }
1113
+ }
1114
+ ],
1115
+ "desc": [
1116
+ "detects all objects in the immediate area"
1117
+ ]
1118
+ },
1119
+ {
1120
+ "name": "ENCHANT_TOHIT",
1121
+ "aim": 0,
1122
+ "level": 30,
1123
+ "power": 15,
1124
+ "effect": [
1125
+ {
1126
+ "eff": "ENCHANT",
1127
+ "type": "TOHIT",
1128
+ "dice": "1"
1129
+ }
1130
+ ],
1131
+ "desc": [
1132
+ "attempts to magically enhance a weapon's to-hit bonus"
1133
+ ]
1134
+ },
1135
+ {
1136
+ "name": "ENCHANT_TODAM",
1137
+ "aim": 0,
1138
+ "level": 35,
1139
+ "power": 20,
1140
+ "effect": [
1141
+ {
1142
+ "eff": "ENCHANT",
1143
+ "type": "TODAM",
1144
+ "dice": "1"
1145
+ }
1146
+ ],
1147
+ "desc": [
1148
+ "attempts to magically enhance a weapon's to-dam bonus"
1149
+ ]
1150
+ },
1151
+ {
1152
+ "name": "ENCHANT_WEAPON",
1153
+ "aim": 0,
1154
+ "level": 45,
1155
+ "power": 22,
1156
+ "effect": [
1157
+ {
1158
+ "eff": "ENCHANT",
1159
+ "type": "TOBOTH",
1160
+ "dice": "1d3"
1161
+ }
1162
+ ],
1163
+ "desc": [
1164
+ "attempts to magically enhance a weapon both to-hit and to-dam"
1165
+ ]
1166
+ },
1167
+ {
1168
+ "name": "ENCHANT_ARMOR",
1169
+ "aim": 0,
1170
+ "level": 25,
1171
+ "power": 12,
1172
+ "effect": [
1173
+ {
1174
+ "eff": "ENCHANT",
1175
+ "type": "TOAC",
1176
+ "dice": "1"
1177
+ }
1178
+ ],
1179
+ "desc": [
1180
+ "attempts to magically enhance a piece of armour"
1181
+ ]
1182
+ },
1183
+ {
1184
+ "name": "ENCHANT_ARMOR2",
1185
+ "aim": 0,
1186
+ "level": 40,
1187
+ "power": 15,
1188
+ "effect": [
1189
+ {
1190
+ "eff": "ENCHANT",
1191
+ "type": "TOAC",
1192
+ "dice": "2+1d3"
1193
+ }
1194
+ ],
1195
+ "desc": [
1196
+ "attempts to magically enhance a piece of armour with high chance of success"
1197
+ ]
1198
+ },
1199
+ {
1200
+ "name": "REMOVE_CURSE",
1201
+ "aim": 0,
1202
+ "level": 22,
1203
+ "power": 8,
1204
+ "effect": [
1205
+ {
1206
+ "eff": "REMOVE_CURSE",
1207
+ "dice": "20+d20"
1208
+ }
1209
+ ],
1210
+ "desc": [
1211
+ "attempts to remove a curse from an item"
1212
+ ]
1213
+ },
1214
+ {
1215
+ "name": "REMOVE_CURSE2",
1216
+ "aim": 0,
1217
+ "level": 62,
1218
+ "power": 20,
1219
+ "effect": [
1220
+ {
1221
+ "eff": "REMOVE_CURSE",
1222
+ "dice": "50+d50"
1223
+ }
1224
+ ],
1225
+ "desc": [
1226
+ "makes a strong attempt to remove a curse from an item"
1227
+ ]
1228
+ },
1229
+ {
1230
+ "name": "LIGHT",
1231
+ "aim": 0,
1232
+ "level": 10,
1233
+ "power": 4,
1234
+ "effect": [
1235
+ {
1236
+ "eff": "LIGHT_AREA"
1237
+ },
1238
+ {
1239
+ "eff": "SPHERE",
1240
+ "type": "LIGHT_WEAK",
1241
+ "radius": 2,
1242
+ "dice": "2d8"
1243
+ }
1244
+ ]
1245
+ },
1246
+ {
1247
+ "name": "TELE_PHASE",
1248
+ "aim": 0,
1249
+ "level": 8,
1250
+ "power": 5,
1251
+ "effect": [
1252
+ {
1253
+ "eff": "TELEPORT",
1254
+ "dice": "10"
1255
+ }
1256
+ ],
1257
+ "msg": [
1258
+ "{name} twists space around you..."
1259
+ ],
1260
+ "desc": [
1261
+ "teleports you randomly up to 10 squares away"
1262
+ ]
1263
+ },
1264
+ {
1265
+ "name": "TELE_LONG",
1266
+ "aim": 0,
1267
+ "level": 25,
1268
+ "power": 6,
1269
+ "effect": [
1270
+ {
1271
+ "eff": "TELEPORT",
1272
+ "dice": "M60"
1273
+ }
1274
+ ],
1275
+ "msg": [
1276
+ "Your {kind} twist{s} space around you."
1277
+ ],
1278
+ "desc": [
1279
+ "teleports you randomly about 60 per cent of the largest distance you",
1280
+ " could go"
1281
+ ]
1282
+ },
1283
+ {
1284
+ "name": "TELE_LEVEL",
1285
+ "aim": 0,
1286
+ "level": 32,
1287
+ "power": 15,
1288
+ "effect": [
1289
+ {
1290
+ "eff": "TELEPORT_LEVEL"
1291
+ }
1292
+ ],
1293
+ "desc": [
1294
+ "teleports you one level up or down"
1295
+ ]
1296
+ },
1297
+ {
1298
+ "name": "CONFUSING",
1299
+ "aim": 0,
1300
+ "level": 12,
1301
+ "power": 8,
1302
+ "effect": [
1303
+ {
1304
+ "eff": "TIMED_INC",
1305
+ "type": "ATT_CONF",
1306
+ "dice": "10000"
1307
+ }
1308
+ ],
1309
+ "desc": [
1310
+ "causes your next attack upon a monster to confuse it"
1311
+ ]
1312
+ },
1313
+ {
1314
+ "name": "MAPPING",
1315
+ "aim": 0,
1316
+ "level": 30,
1317
+ "power": 10,
1318
+ "effect": [
1319
+ {
1320
+ "eff": "MAP_AREA",
1321
+ "effect-yx": {
1322
+ "y": 22,
1323
+ "x": 40
1324
+ }
1325
+ }
1326
+ ],
1327
+ "msg": [
1328
+ "The {kind} shine{s} brightly..."
1329
+ ],
1330
+ "desc": [
1331
+ "maps the area around you"
1332
+ ]
1333
+ },
1334
+ {
1335
+ "name": "GLYPH",
1336
+ "aim": 0,
1337
+ "level": 70,
1338
+ "power": 20,
1339
+ "effect": [
1340
+ {
1341
+ "eff": "GLYPH",
1342
+ "type": "WARDING"
1343
+ }
1344
+ ],
1345
+ "desc": [
1346
+ "inscribes a glyph of warding beneath you, which monsters cannot move onto"
1347
+ ]
1348
+ },
1349
+ {
1350
+ "name": "DESTROY_DOORS",
1351
+ "aim": 0,
1352
+ "level": 5,
1353
+ "power": 6,
1354
+ "effect": [
1355
+ {
1356
+ "eff": "TOUCH",
1357
+ "type": "KILL_DOOR"
1358
+ }
1359
+ ],
1360
+ "msg": [
1361
+ "Your {kind} glow{s} bright red..."
1362
+ ],
1363
+ "desc": [
1364
+ "destroys all doors surrounding you"
1365
+ ]
1366
+ },
1367
+ {
1368
+ "name": "RECHARGE",
1369
+ "aim": 0,
1370
+ "level": 60,
1371
+ "power": 11,
1372
+ "effect": [
1373
+ {
1374
+ "eff": "RECHARGE",
1375
+ "dice": "10"
1376
+ }
1377
+ ],
1378
+ "msg": [
1379
+ "Your {kind} glow{s} bright yellow..."
1380
+ ],
1381
+ "desc": [
1382
+ "tries to recharge a wand or staff, destroying the wand or staff on failure"
1383
+ ]
1384
+ },
1385
+ {
1386
+ "name": "BANISHMENT",
1387
+ "aim": 0,
1388
+ "level": 50,
1389
+ "power": 20,
1390
+ "effect": [
1391
+ {
1392
+ "eff": "BANISH"
1393
+ }
1394
+ ],
1395
+ "msg": [
1396
+ "Your {kind} glow{s} deep blue..."
1397
+ ],
1398
+ "desc": [
1399
+ "removes all non-unique monsters represented by a chosen symbol from the level, dealing you damage in the process"
1400
+ ]
1401
+ },
1402
+ {
1403
+ "name": "PROTEVIL",
1404
+ "aim": 0,
1405
+ "level": 40,
1406
+ "power": 6,
1407
+ "effect": [
1408
+ {
1409
+ "eff": "TIMED_INC",
1410
+ "type": "PROTEVIL",
1411
+ "dice": "$B+1d25",
1412
+ "expr": [
1413
+ {
1414
+ "name": "B",
1415
+ "base": "PLAYER_LEVEL",
1416
+ "expr": "* 3"
1417
+ }
1418
+ ]
1419
+ }
1420
+ ],
1421
+ "msg": [
1422
+ "The {kind} let{s} out a shrill wail..."
1423
+ ],
1424
+ "desc": [
1425
+ "grants you protection from evil for 1d25 plus 3 times your character level turns"
1426
+ ]
1427
+ },
1428
+ {
1429
+ "name": "SATISFY",
1430
+ "aim": 0,
1431
+ "level": 10,
1432
+ "power": 7,
1433
+ "effect": [
1434
+ {
1435
+ "eff": "NOURISH",
1436
+ "type": "INC_TO",
1437
+ "dice": "50"
1438
+ }
1439
+ ],
1440
+ "desc": [
1441
+ "magically renders you comfortably fed"
1442
+ ]
1443
+ },
1444
+ {
1445
+ "name": "BLESSING",
1446
+ "aim": 0,
1447
+ "level": 8,
1448
+ "power": 6,
1449
+ "effect": [
1450
+ {
1451
+ "eff": "TIMED_INC",
1452
+ "type": "BLESSED",
1453
+ "dice": "6+1d12"
1454
+ }
1455
+ ],
1456
+ "desc": [
1457
+ "increases your AC and to-hit bonus for 1d12+6 turns"
1458
+ ]
1459
+ },
1460
+ {
1461
+ "name": "BLESSING2",
1462
+ "aim": 0,
1463
+ "level": 12,
1464
+ "power": 7,
1465
+ "effect": [
1466
+ {
1467
+ "eff": "TIMED_INC",
1468
+ "type": "BLESSED",
1469
+ "dice": "12+1d24"
1470
+ }
1471
+ ],
1472
+ "desc": [
1473
+ "increases your AC and to-hit bonus for 1d24+12 turns"
1474
+ ]
1475
+ },
1476
+ {
1477
+ "name": "BLESSING3",
1478
+ "aim": 0,
1479
+ "level": 18,
1480
+ "power": 8,
1481
+ "effect": [
1482
+ {
1483
+ "eff": "TIMED_INC",
1484
+ "type": "BLESSED",
1485
+ "dice": "24+1d48"
1486
+ }
1487
+ ],
1488
+ "desc": [
1489
+ "increases your AC and to-hit bonus for 1d48+24 turns"
1490
+ ]
1491
+ },
1492
+ {
1493
+ "name": "RECALL",
1494
+ "aim": 0,
1495
+ "level": 20,
1496
+ "power": 15,
1497
+ "effect": [
1498
+ {
1499
+ "eff": "RECALL"
1500
+ }
1501
+ ],
1502
+ "msg": [
1503
+ "{name} pulses a soft white."
1504
+ ],
1505
+ "desc": [
1506
+ "returns you from the dungeon or takes you to the dungeon after a short delay"
1507
+ ]
1508
+ },
1509
+ {
1510
+ "name": "DEEP_DESCENT",
1511
+ "aim": 0,
1512
+ "level": 25,
1513
+ "power": 19,
1514
+ "effect": [
1515
+ {
1516
+ "eff": "DEEP_DESCENT"
1517
+ }
1518
+ ],
1519
+ "desc": [
1520
+ "teleports you five levels down"
1521
+ ]
1522
+ },
1523
+ {
1524
+ "name": "EARTHQUAKES",
1525
+ "aim": 0,
1526
+ "level": 47,
1527
+ "power": 5,
1528
+ "effect": [
1529
+ {
1530
+ "eff": "EARTHQUAKE",
1531
+ "type": "NONE",
1532
+ "radius": 10
1533
+ }
1534
+ ],
1535
+ "desc": [
1536
+ "causes an earthquake around you"
1537
+ ]
1538
+ },
1539
+ {
1540
+ "name": "DESTRUCTION2",
1541
+ "aim": 0,
1542
+ "level": 57,
1543
+ "power": 12,
1544
+ "effect": [
1545
+ {
1546
+ "eff": "DESTRUCTION",
1547
+ "type": "LIGHT",
1548
+ "radius": 15
1549
+ }
1550
+ ],
1551
+ "desc": [
1552
+ "destroys an area around you in the shape of a circle radius 15, and blinds you for 1d10+10 turns"
1553
+ ]
1554
+ },
1555
+ {
1556
+ "name": "LOSSLOW",
1557
+ "aim": 0,
1558
+ "level": 16,
1559
+ "power": 7,
1560
+ "effect": [
1561
+ {
1562
+ "eff": "PROJECT_LOS",
1563
+ "type": "MON_SLOW",
1564
+ "dice": "20"
1565
+ }
1566
+ ],
1567
+ "desc": [
1568
+ "slows all non-unique monsters within line of sight"
1569
+ ]
1570
+ },
1571
+ {
1572
+ "name": "LOSSLEEP",
1573
+ "aim": 0,
1574
+ "level": 18,
1575
+ "power": 8,
1576
+ "effect": [
1577
+ {
1578
+ "eff": "PROJECT_LOS",
1579
+ "type": "SLEEP_ALL",
1580
+ "dice": "$B",
1581
+ "expr": [
1582
+ {
1583
+ "name": "B",
1584
+ "base": "PLAYER_LEVEL",
1585
+ "expr": "* 10 + 500"
1586
+ }
1587
+ ]
1588
+ }
1589
+ ],
1590
+ "desc": [
1591
+ "sleeps all non-unique creatures within line of sight"
1592
+ ]
1593
+ },
1594
+ {
1595
+ "name": "LOSCONF",
1596
+ "aim": 0,
1597
+ "level": 18,
1598
+ "power": 10,
1599
+ "effect": [
1600
+ {
1601
+ "eff": "PROJECT_LOS",
1602
+ "type": "MON_CONF",
1603
+ "dice": "5+1d5"
1604
+ }
1605
+ ],
1606
+ "desc": [
1607
+ "confuses all non-unique creatures within line of sight"
1608
+ ]
1609
+ },
1610
+ {
1611
+ "name": "LOSKILL",
1612
+ "aim": 0,
1613
+ "level": 40,
1614
+ "power": 25,
1615
+ "effect": [
1616
+ {
1617
+ "eff": "MASS_BANISH"
1618
+ }
1619
+ ],
1620
+ "msg": [
1621
+ "Your {kind} let{s} out a long, shrill note..."
1622
+ ],
1623
+ "desc": [
1624
+ "removes all non-unique monsters within 20 squares, dealing you damage in the process"
1625
+ ]
1626
+ },
1627
+ {
1628
+ "name": "ILLUMINATION",
1629
+ "aim": 0,
1630
+ "level": 12,
1631
+ "power": 4,
1632
+ "effect": [
1633
+ {
1634
+ "eff": "LIGHT_AREA"
1635
+ },
1636
+ {
1637
+ "eff": "SPHERE",
1638
+ "type": "LIGHT_WEAK",
1639
+ "radius": 3,
1640
+ "dice": "2d15"
1641
+ }
1642
+ ],
1643
+ "msg": [
1644
+ "The {kind} well{s} with clear light..."
1645
+ ]
1646
+ },
1647
+ {
1648
+ "name": "CLAIRVOYANCE",
1649
+ "aim": 0,
1650
+ "level": 50,
1651
+ "power": 22,
1652
+ "effect": [
1653
+ {
1654
+ "eff": "LIGHT_LEVEL"
1655
+ }
1656
+ ],
1657
+ "msg": [
1658
+ "The {kind} form{s} an image in your mind..."
1659
+ ],
1660
+ "desc": [
1661
+ "lights and maps the entire level, sensing objects"
1662
+ ]
1663
+ },
1664
+ {
1665
+ "name": "PROBING",
1666
+ "aim": 0,
1667
+ "level": 20,
1668
+ "power": 8,
1669
+ "effect": [
1670
+ {
1671
+ "eff": "PROBE"
1672
+ }
1673
+ ],
1674
+ "msg": [
1675
+ "{name} glows brightly..."
1676
+ ],
1677
+ "desc": [
1678
+ "gives you information on the health and abilities of monsters you can see"
1679
+ ]
1680
+ },
1681
+ {
1682
+ "name": "HASTE",
1683
+ "aim": 0,
1684
+ "level": 40,
1685
+ "power": 10,
1686
+ "effect": [
1687
+ {
1688
+ "eff": "TIMED_INC",
1689
+ "type": "FAST",
1690
+ "radius": 0,
1691
+ "other": 5,
1692
+ "dice": "20+2d10"
1693
+ }
1694
+ ],
1695
+ "desc": [
1696
+ "hastens you for 2d10+20 turns"
1697
+ ]
1698
+ },
1699
+ {
1700
+ "name": "HASTE1",
1701
+ "aim": 0,
1702
+ "level": 40,
1703
+ "power": 10,
1704
+ "effect": [
1705
+ {
1706
+ "eff": "TIMED_INC",
1707
+ "type": "FAST",
1708
+ "radius": 0,
1709
+ "other": 5,
1710
+ "dice": "20+1d20"
1711
+ }
1712
+ ],
1713
+ "msg": [
1714
+ "Your {kind} glow{s} bright green..."
1715
+ ],
1716
+ "desc": [
1717
+ "hastens you for d20+20 turns"
1718
+ ]
1719
+ },
1720
+ {
1721
+ "name": "HASTE2",
1722
+ "aim": 0,
1723
+ "level": 60,
1724
+ "power": 13,
1725
+ "effect": [
1726
+ {
1727
+ "eff": "TIMED_INC",
1728
+ "type": "FAST",
1729
+ "radius": 0,
1730
+ "other": 5,
1731
+ "dice": "75+1d75"
1732
+ }
1733
+ ],
1734
+ "msg": [
1735
+ "The {kind} glow{s} brightly..."
1736
+ ],
1737
+ "desc": [
1738
+ "hastens you for d75+75 turns"
1739
+ ]
1740
+ },
1741
+ {
1742
+ "name": "DISPEL_EVIL",
1743
+ "aim": 0,
1744
+ "level": 65,
1745
+ "power": 12,
1746
+ "effect": [
1747
+ {
1748
+ "eff": "PROJECT_LOS",
1749
+ "type": "DISP_EVIL",
1750
+ "radius": 0,
1751
+ "other": 1,
1752
+ "dice": "$B",
1753
+ "expr": [
1754
+ {
1755
+ "name": "B",
1756
+ "base": "PLAYER_LEVEL",
1757
+ "expr": "* 5"
1758
+ }
1759
+ ]
1760
+ }
1761
+ ],
1762
+ "msg": [
1763
+ "The {kind} flood{s} the area with goodness..."
1764
+ ],
1765
+ "desc": [
1766
+ "deals five times your level's damage to all evil creatures that you can see"
1767
+ ]
1768
+ },
1769
+ {
1770
+ "name": "DISPEL_EVIL60",
1771
+ "aim": 0,
1772
+ "level": 55,
1773
+ "power": 9,
1774
+ "effect": [
1775
+ {
1776
+ "eff": "PROJECT_LOS",
1777
+ "type": "DISP_EVIL",
1778
+ "radius": 0,
1779
+ "other": 1,
1780
+ "dice": "60"
1781
+ }
1782
+ ],
1783
+ "desc": [
1784
+ "deals 60 damage to all evil creatures that you can see"
1785
+ ]
1786
+ },
1787
+ {
1788
+ "name": "DISPEL_UNDEAD",
1789
+ "aim": 0,
1790
+ "level": 50,
1791
+ "power": 9,
1792
+ "effect": [
1793
+ {
1794
+ "eff": "PROJECT_LOS",
1795
+ "type": "DISP_UNDEAD",
1796
+ "radius": 0,
1797
+ "other": 1,
1798
+ "dice": "60"
1799
+ }
1800
+ ],
1801
+ "desc": [
1802
+ "deals 60 damage to all undead creatures that you can see"
1803
+ ]
1804
+ },
1805
+ {
1806
+ "name": "DISPEL_ALL",
1807
+ "aim": 0,
1808
+ "level": 75,
1809
+ "power": 11,
1810
+ "effect": [
1811
+ {
1812
+ "eff": "PROJECT_LOS",
1813
+ "type": "DISP_ALL",
1814
+ "radius": 0,
1815
+ "other": 1,
1816
+ "dice": "120"
1817
+ }
1818
+ ],
1819
+ "desc": [
1820
+ "deals 120 damage to all creatures that you can see"
1821
+ ]
1822
+ },
1823
+ {
1824
+ "name": "SLEEPII",
1825
+ "aim": 0,
1826
+ "level": 12,
1827
+ "power": 8,
1828
+ "effect": [
1829
+ {
1830
+ "eff": "TOUCH_AWARE",
1831
+ "type": "SLEEP_ALL",
1832
+ "dice": "$B",
1833
+ "expr": [
1834
+ {
1835
+ "name": "B",
1836
+ "base": "PLAYER_LEVEL",
1837
+ "expr": "* 10 + 500"
1838
+ }
1839
+ ]
1840
+ }
1841
+ ],
1842
+ "msg": [
1843
+ "{name} glows deep blue..."
1844
+ ],
1845
+ "desc": [
1846
+ "puts to sleep the monsters around you"
1847
+ ]
1848
+ },
1849
+ {
1850
+ "name": "STAR_BALL",
1851
+ "aim": 0,
1852
+ "level": 60,
1853
+ "power": 18,
1854
+ "effect": [
1855
+ {
1856
+ "eff": "STAR_BALL",
1857
+ "type": "ELEC",
1858
+ "radius": 3,
1859
+ "dice": "150"
1860
+ }
1861
+ ],
1862
+ "msg": [
1863
+ "Lightning surrounds your {kind}!"
1864
+ ]
1865
+ },
1866
+ {
1867
+ "name": "RAGE_BLESS_RESIST",
1868
+ "aim": 0,
1869
+ "level": 50,
1870
+ "power": 21,
1871
+ "effect": [
1872
+ {
1873
+ "eff": "HEAL_HP",
1874
+ "dice": "30"
1875
+ },
1876
+ {
1877
+ "eff": "CURE",
1878
+ "type": "AFRAID"
1879
+ },
1880
+ {
1881
+ "eff": "SET_VALUE",
1882
+ "dice": "50+1d50"
1883
+ },
1884
+ {
1885
+ "eff": "TIMED_INC",
1886
+ "type": "SHERO"
1887
+ },
1888
+ {
1889
+ "eff": "TIMED_INC",
1890
+ "type": "BLESSED"
1891
+ },
1892
+ {
1893
+ "eff": "TIMED_INC",
1894
+ "type": "OPP_ACID"
1895
+ },
1896
+ {
1897
+ "eff": "TIMED_INC",
1898
+ "type": "OPP_ELEC"
1899
+ },
1900
+ {
1901
+ "eff": "TIMED_INC",
1902
+ "type": "OPP_FIRE"
1903
+ },
1904
+ {
1905
+ "eff": "TIMED_INC",
1906
+ "type": "OPP_COLD"
1907
+ },
1908
+ {
1909
+ "eff": "TIMED_INC",
1910
+ "type": "OPP_POIS"
1911
+ },
1912
+ {
1913
+ "eff": "CLEAR_VALUE"
1914
+ }
1915
+ ],
1916
+ "msg": [
1917
+ "{name} glow{s} many colors..."
1918
+ ],
1919
+ "desc": [
1920
+ "bestows upon you berserk rage, bless, and resistance"
1921
+ ]
1922
+ },
1923
+ {
1924
+ "name": "RESTORE_LIFE",
1925
+ "aim": 0,
1926
+ "level": 40,
1927
+ "power": 8,
1928
+ "effect": [
1929
+ {
1930
+ "eff": "RESTORE_EXP"
1931
+ }
1932
+ ],
1933
+ "msg": [
1934
+ "Your {kind} glow{s} a deep red..."
1935
+ ],
1936
+ "desc": [
1937
+ "restores your experience to full"
1938
+ ]
1939
+ },
1940
+ {
1941
+ "name": "REM_FEAR_POIS",
1942
+ "aim": 0,
1943
+ "level": 10,
1944
+ "power": 3,
1945
+ "effect": [
1946
+ {
1947
+ "eff": "CURE",
1948
+ "type": "AFRAID"
1949
+ },
1950
+ {
1951
+ "eff": "CURE",
1952
+ "type": "POISONED"
1953
+ }
1954
+ ],
1955
+ "msg": [
1956
+ "Your {kind} glow{s} deep blue..."
1957
+ ],
1958
+ "desc": [
1959
+ "cures you of fear and poison"
1960
+ ]
1961
+ },
1962
+ {
1963
+ "name": "FIREBRAND",
1964
+ "aim": 0,
1965
+ "level": 45,
1966
+ "power": 25,
1967
+ "effect": [
1968
+ {
1969
+ "eff": "BRAND_BOLTS"
1970
+ }
1971
+ ],
1972
+ "desc": [
1973
+ "brands bolts with fire, in an unbalanced fashion"
1974
+ ]
1975
+ },
1976
+ {
1977
+ "name": "FIRE_BOLT",
1978
+ "aim": 1,
1979
+ "level": 1,
1980
+ "power": 5,
1981
+ "effect": [
1982
+ {
1983
+ "eff": "BOLT",
1984
+ "type": "FIRE",
1985
+ "dice": "9d8"
1986
+ }
1987
+ ],
1988
+ "msg": [
1989
+ "Your {kind} {is} covered in fire..."
1990
+ ]
1991
+ },
1992
+ {
1993
+ "name": "FIRE_BOLT2",
1994
+ "aim": 1,
1995
+ "level": 32,
1996
+ "power": 7,
1997
+ "effect": [
1998
+ {
1999
+ "eff": "BOLT_OR_BEAM",
2000
+ "type": "FIRE",
2001
+ "dice": "12d8"
2002
+ }
2003
+ ]
2004
+ },
2005
+ {
2006
+ "name": "FIRE_BOLT3",
2007
+ "aim": 1,
2008
+ "level": 40,
2009
+ "power": 9,
2010
+ "effect": [
2011
+ {
2012
+ "eff": "BOLT_OR_BEAM",
2013
+ "type": "FIRE",
2014
+ "dice": "16d8"
2015
+ }
2016
+ ]
2017
+ },
2018
+ {
2019
+ "name": "FIRE_BALL72",
2020
+ "aim": 1,
2021
+ "level": 30,
2022
+ "power": 9,
2023
+ "effect": [
2024
+ {
2025
+ "eff": "BALL",
2026
+ "type": "FIRE",
2027
+ "radius": 2,
2028
+ "dice": "72"
2029
+ }
2030
+ ],
2031
+ "msg": [
2032
+ "{name} rages in fire..."
2033
+ ]
2034
+ },
2035
+ {
2036
+ "name": "FIRE_BALL",
2037
+ "aim": 1,
2038
+ "level": 50,
2039
+ "power": 11,
2040
+ "effect": [
2041
+ {
2042
+ "eff": "BALL",
2043
+ "type": "FIRE",
2044
+ "radius": 2,
2045
+ "dice": "144"
2046
+ }
2047
+ ],
2048
+ "msg": [
2049
+ "The {kind} glow{s} deep red..."
2050
+ ]
2051
+ },
2052
+ {
2053
+ "name": "FIRE_BALL2",
2054
+ "aim": 1,
2055
+ "level": 60,
2056
+ "power": 11,
2057
+ "effect": [
2058
+ {
2059
+ "eff": "BALL",
2060
+ "type": "FIRE",
2061
+ "radius": 3,
2062
+ "dice": "120"
2063
+ }
2064
+ ]
2065
+ },
2066
+ {
2067
+ "name": "FIRE_BALL200",
2068
+ "aim": 1,
2069
+ "level": 75,
2070
+ "power": 13,
2071
+ "effect": [
2072
+ {
2073
+ "eff": "BALL",
2074
+ "type": "FIRE",
2075
+ "radius": 3,
2076
+ "dice": "200"
2077
+ }
2078
+ ]
2079
+ },
2080
+ {
2081
+ "name": "COLD_BOLT",
2082
+ "aim": 1,
2083
+ "level": 1,
2084
+ "power": 4,
2085
+ "effect": [
2086
+ {
2087
+ "eff": "BOLT_OR_BEAM",
2088
+ "type": "COLD",
2089
+ "dice": "6d8"
2090
+ }
2091
+ ],
2092
+ "msg": [
2093
+ "Your {kind} {is} covered in frost..."
2094
+ ]
2095
+ },
2096
+ {
2097
+ "name": "COLD_BOLT2",
2098
+ "aim": 1,
2099
+ "level": 20,
2100
+ "power": 7,
2101
+ "effect": [
2102
+ {
2103
+ "eff": "BOLT",
2104
+ "type": "COLD",
2105
+ "dice": "12d8"
2106
+ }
2107
+ ],
2108
+ "msg": [
2109
+ "{name} glows a pale blue..."
2110
+ ]
2111
+ },
2112
+ {
2113
+ "name": "COLD_BALL2",
2114
+ "aim": 1,
2115
+ "level": 70,
2116
+ "power": 13,
2117
+ "effect": [
2118
+ {
2119
+ "eff": "BALL",
2120
+ "type": "COLD",
2121
+ "radius": 3,
2122
+ "dice": "200"
2123
+ }
2124
+ ]
2125
+ },
2126
+ {
2127
+ "name": "COLD_BALL50",
2128
+ "aim": 1,
2129
+ "level": 10,
2130
+ "power": 8,
2131
+ "effect": [
2132
+ {
2133
+ "eff": "BALL",
2134
+ "type": "COLD",
2135
+ "radius": 2,
2136
+ "dice": "50"
2137
+ }
2138
+ ],
2139
+ "msg": [
2140
+ "Your {kind} {is} covered in frost..."
2141
+ ]
2142
+ },
2143
+ {
2144
+ "name": "COLD_BALL100",
2145
+ "aim": 1,
2146
+ "level": 35,
2147
+ "power": 10,
2148
+ "effect": [
2149
+ {
2150
+ "eff": "BALL",
2151
+ "type": "COLD",
2152
+ "radius": 2,
2153
+ "dice": "100"
2154
+ }
2155
+ ],
2156
+ "msg": [
2157
+ "{name} glows an intense blue..."
2158
+ ]
2159
+ },
2160
+ {
2161
+ "name": "COLD_BALL160",
2162
+ "aim": 1,
2163
+ "level": 55,
2164
+ "power": 12,
2165
+ "effect": [
2166
+ {
2167
+ "eff": "BALL",
2168
+ "type": "COLD",
2169
+ "radius": 3,
2170
+ "dice": "160"
2171
+ }
2172
+ ]
2173
+ },
2174
+ {
2175
+ "name": "ACID_BOLT",
2176
+ "aim": 1,
2177
+ "level": 1,
2178
+ "power": 4,
2179
+ "effect": [
2180
+ {
2181
+ "eff": "BOLT",
2182
+ "type": "ACID",
2183
+ "dice": "5d8"
2184
+ }
2185
+ ],
2186
+ "msg": [
2187
+ "Your {kind} {is} covered in acid..."
2188
+ ]
2189
+ },
2190
+ {
2191
+ "name": "ACID_BOLT2",
2192
+ "aim": 1,
2193
+ "level": 30,
2194
+ "power": 6,
2195
+ "effect": [
2196
+ {
2197
+ "eff": "BOLT_OR_BEAM",
2198
+ "type": "ACID",
2199
+ "dice": "10d8"
2200
+ }
2201
+ ]
2202
+ },
2203
+ {
2204
+ "name": "ACID_BOLT3",
2205
+ "aim": 1,
2206
+ "level": 35,
2207
+ "power": 7,
2208
+ "effect": [
2209
+ {
2210
+ "eff": "BOLT_OR_BEAM",
2211
+ "type": "ACID",
2212
+ "dice": "12d8"
2213
+ }
2214
+ ]
2215
+ },
2216
+ {
2217
+ "name": "ACID_BALL",
2218
+ "aim": 1,
2219
+ "level": 55,
2220
+ "power": 11,
2221
+ "effect": [
2222
+ {
2223
+ "eff": "BALL",
2224
+ "type": "ACID",
2225
+ "radius": 2,
2226
+ "dice": "120"
2227
+ }
2228
+ ]
2229
+ },
2230
+ {
2231
+ "name": "ELEC_BOLT",
2232
+ "aim": 1,
2233
+ "level": 1,
2234
+ "power": 5,
2235
+ "effect": [
2236
+ {
2237
+ "eff": "BEAM",
2238
+ "type": "ELEC",
2239
+ "dice": "6d6"
2240
+ }
2241
+ ],
2242
+ "msg": [
2243
+ "Your {kind} {is} covered in sparks..."
2244
+ ]
2245
+ },
2246
+ {
2247
+ "name": "ELEC_BALL",
2248
+ "aim": 1,
2249
+ "level": 40,
2250
+ "power": 9,
2251
+ "effect": [
2252
+ {
2253
+ "eff": "BALL",
2254
+ "type": "ELEC",
2255
+ "radius": 2,
2256
+ "dice": "64"
2257
+ }
2258
+ ]
2259
+ },
2260
+ {
2261
+ "name": "ELEC_BALL2",
2262
+ "aim": 1,
2263
+ "level": 77,
2264
+ "power": 14,
2265
+ "effect": [
2266
+ {
2267
+ "eff": "BALL",
2268
+ "type": "ELEC",
2269
+ "radius": 3,
2270
+ "dice": "250"
2271
+ }
2272
+ ]
2273
+ },
2274
+ {
2275
+ "name": "DRAIN_LIFE1",
2276
+ "aim": 1,
2277
+ "level": 20,
2278
+ "power": 9,
2279
+ "effect": [
2280
+ {
2281
+ "eff": "BOLT",
2282
+ "type": "MON_DRAIN",
2283
+ "dice": "90"
2284
+ }
2285
+ ],
2286
+ "msg": [
2287
+ "{name} glows white..."
2288
+ ],
2289
+ "desc": [
2290
+ "drains up to 90 hit points of life from a target creature. Does not affect undead, demons, golems, elementals or vortices"
2291
+ ]
2292
+ },
2293
+ {
2294
+ "name": "DRAIN_LIFE2",
2295
+ "aim": 1,
2296
+ "level": 30,
2297
+ "power": 10,
2298
+ "effect": [
2299
+ {
2300
+ "eff": "BOLT",
2301
+ "type": "MON_DRAIN",
2302
+ "dice": "120"
2303
+ }
2304
+ ],
2305
+ "msg": [
2306
+ "Your {kind} glow{s} black..."
2307
+ ],
2308
+ "desc": [
2309
+ "drains up to 120 hit points of life from a target creature. Does not affect undead, demons, golems, elementals or vortices"
2310
+ ]
2311
+ },
2312
+ {
2313
+ "name": "DRAIN_LIFE3",
2314
+ "aim": 1,
2315
+ "level": 60,
2316
+ "power": 11,
2317
+ "effect": [
2318
+ {
2319
+ "eff": "BOLT",
2320
+ "type": "MON_DRAIN",
2321
+ "dice": "150"
2322
+ }
2323
+ ],
2324
+ "desc": [
2325
+ "drains up to 150 hit points of life from a target creature. Does not affect undead, demons, golems, elementals or vortices"
2326
+ ]
2327
+ },
2328
+ {
2329
+ "name": "DRAIN_LIFE4",
2330
+ "aim": 1,
2331
+ "level": 75,
2332
+ "power": 12,
2333
+ "effect": [
2334
+ {
2335
+ "eff": "BOLT",
2336
+ "type": "MON_DRAIN",
2337
+ "dice": "250"
2338
+ }
2339
+ ],
2340
+ "desc": [
2341
+ "drains up to 250 hit points of life from a target creature. Does not affect undead, demons, golems, elementals or vortices"
2342
+ ]
2343
+ },
2344
+ {
2345
+ "name": "MISSILE",
2346
+ "aim": 1,
2347
+ "level": 5,
2348
+ "power": 3,
2349
+ "effect": [
2350
+ {
2351
+ "eff": "BOLT_OR_BEAM",
2352
+ "type": "MISSILE",
2353
+ "dice": "3d4"
2354
+ }
2355
+ ],
2356
+ "msg": [
2357
+ "{name} glows very brightly..."
2358
+ ]
2359
+ },
2360
+ {
2361
+ "name": "MANA_BOLT",
2362
+ "aim": 1,
2363
+ "level": 52,
2364
+ "power": 7,
2365
+ "effect": [
2366
+ {
2367
+ "eff": "BOLT",
2368
+ "type": "MANA",
2369
+ "dice": "12d8"
2370
+ }
2371
+ ],
2372
+ "msg": [
2373
+ "Your {kind} glow{s} white..."
2374
+ ]
2375
+ },
2376
+ {
2377
+ "name": "BIZARRE",
2378
+ "aim": 1,
2379
+ "level": 80,
2380
+ "power": 20,
2381
+ "effect": [
2382
+ {
2383
+ "eff": "BIZARRE"
2384
+ }
2385
+ ],
2386
+ "msg": [
2387
+ "{name} glows intensely black..."
2388
+ ],
2389
+ "desc": [
2390
+ "does bizarre things"
2391
+ ]
2392
+ },
2393
+ {
2394
+ "name": "ARROW",
2395
+ "aim": 1,
2396
+ "level": 38,
2397
+ "power": 11,
2398
+ "effect": [
2399
+ {
2400
+ "eff": "BOLT",
2401
+ "type": "ARROW",
2402
+ "dice": "150"
2403
+ }
2404
+ ],
2405
+ "msg": [
2406
+ "Your {kind} form{s} a magical arrow..."
2407
+ ]
2408
+ },
2409
+ {
2410
+ "name": "STINKING_CLOUD",
2411
+ "aim": 1,
2412
+ "level": 3,
2413
+ "power": 3,
2414
+ "effect": [
2415
+ {
2416
+ "eff": "BALL",
2417
+ "type": "POIS",
2418
+ "radius": 3,
2419
+ "dice": "12"
2420
+ }
2421
+ ],
2422
+ "msg": [
2423
+ "{name} throws deep green shadows..."
2424
+ ]
2425
+ },
2426
+ {
2427
+ "name": "STONE_TO_MUD",
2428
+ "aim": 1,
2429
+ "level": 5,
2430
+ "power": 6,
2431
+ "effect": [
2432
+ {
2433
+ "eff": "LINE",
2434
+ "type": "KILL_WALL",
2435
+ "dice": "20+1d30"
2436
+ }
2437
+ ],
2438
+ "msg": [
2439
+ "Your {kind} pulsate{s}..."
2440
+ ]
2441
+ },
2442
+ {
2443
+ "name": "TELE_OTHER",
2444
+ "aim": 1,
2445
+ "level": 25,
2446
+ "power": 11,
2447
+ "effect": [
2448
+ {
2449
+ "eff": "BOLT_STATUS",
2450
+ "type": "AWAY_ALL",
2451
+ "dice": "$B",
2452
+ "expr": [
2453
+ {
2454
+ "name": "B",
2455
+ "base": "MAX_SIGHT",
2456
+ "expr": "* 5"
2457
+ }
2458
+ ]
2459
+ }
2460
+ ],
2461
+ "msg": [
2462
+ "Your {kind} glow{s} deep red..."
2463
+ ],
2464
+ "desc": [
2465
+ "teleports a target monster away"
2466
+ ]
2467
+ },
2468
+ {
2469
+ "name": "CONFUSE2",
2470
+ "aim": 1,
2471
+ "level": 20,
2472
+ "power": 3,
2473
+ "effect": [
2474
+ {
2475
+ "eff": "BOLT_AWARE",
2476
+ "type": "MON_CONF",
2477
+ "dice": "20"
2478
+ }
2479
+ ],
2480
+ "msg": [
2481
+ "{name} glows in scintillating colours..."
2482
+ ],
2483
+ "desc": [
2484
+ "confuses a target monster"
2485
+ ]
2486
+ },
2487
+ {
2488
+ "name": "MON_SLOW",
2489
+ "aim": 1,
2490
+ "level": 25,
2491
+ "power": 3,
2492
+ "effect": [
2493
+ {
2494
+ "eff": "BOLT_AWARE",
2495
+ "type": "MON_SLOW",
2496
+ "dice": "20"
2497
+ }
2498
+ ],
2499
+ "desc": [
2500
+ "attempts to magically slow a single monster"
2501
+ ]
2502
+ },
2503
+ {
2504
+ "name": "MON_CONFUSE",
2505
+ "aim": 1,
2506
+ "level": 15,
2507
+ "power": 3,
2508
+ "effect": [
2509
+ {
2510
+ "eff": "BOLT_AWARE",
2511
+ "type": "MON_CONF",
2512
+ "dice": "10"
2513
+ }
2514
+ ],
2515
+ "desc": [
2516
+ "attempts to magically confuse a single monster"
2517
+ ]
2518
+ },
2519
+ {
2520
+ "name": "SLEEP_ALL",
2521
+ "aim": 1,
2522
+ "level": 8,
2523
+ "power": 3,
2524
+ "effect": [
2525
+ {
2526
+ "eff": "BOLT_AWARE",
2527
+ "type": "SLEEP_ALL",
2528
+ "dice": "$B",
2529
+ "expr": [
2530
+ {
2531
+ "name": "B",
2532
+ "base": "PLAYER_LEVEL",
2533
+ "expr": "* 10 + 500"
2534
+ }
2535
+ ]
2536
+ }
2537
+ ],
2538
+ "desc": [
2539
+ "attempts to induce magical sleep in a single monster"
2540
+ ]
2541
+ },
2542
+ {
2543
+ "name": "MON_SCARE",
2544
+ "aim": 1,
2545
+ "level": 12,
2546
+ "power": 3,
2547
+ "effect": [
2548
+ {
2549
+ "eff": "BOLT_AWARE",
2550
+ "type": "TURN_ALL",
2551
+ "dice": "10"
2552
+ }
2553
+ ],
2554
+ "desc": [
2555
+ "attempts to induce magical fear in a single monster"
2556
+ ]
2557
+ },
2558
+ {
2559
+ "name": "LIGHT_LINE",
2560
+ "aim": 1,
2561
+ "level": 5,
2562
+ "power": 6,
2563
+ "effect": [
2564
+ {
2565
+ "eff": "LINE",
2566
+ "type": "LIGHT_WEAK",
2567
+ "dice": "6d8"
2568
+ }
2569
+ ],
2570
+ "msg": [
2571
+ "A line of shimmering blue light appears."
2572
+ ]
2573
+ },
2574
+ {
2575
+ "name": "DISABLE_TRAPS",
2576
+ "aim": 1,
2577
+ "level": 27,
2578
+ "power": 7,
2579
+ "effect": [
2580
+ {
2581
+ "eff": "ALTER",
2582
+ "type": "KILL_TRAP"
2583
+ }
2584
+ ],
2585
+ "desc": [
2586
+ "disables traps, unlocks doors and reveals all secret doors in a given direction"
2587
+ ]
2588
+ },
2589
+ {
2590
+ "name": "DOOR_DEST",
2591
+ "aim": 1,
2592
+ "level": 1,
2593
+ "power": 5,
2594
+ "effect": [
2595
+ {
2596
+ "eff": "ALTER",
2597
+ "type": "KILL_DOOR"
2598
+ }
2599
+ ],
2600
+ "desc": [
2601
+ "destroys doors"
2602
+ ]
2603
+ },
2604
+ {
2605
+ "name": "POLYMORPH",
2606
+ "aim": 1,
2607
+ "level": 27,
2608
+ "power": 7,
2609
+ "effect": [
2610
+ {
2611
+ "eff": "BOLT_AWARE",
2612
+ "type": "MON_POLY",
2613
+ "dice": "$B",
2614
+ "expr": [
2615
+ {
2616
+ "name": "B",
2617
+ "base": "PLAYER_LEVEL",
2618
+ "expr": "+ 0"
2619
+ }
2620
+ ]
2621
+ }
2622
+ ],
2623
+ "desc": [
2624
+ "polymorphs a monster into another kind of creature"
2625
+ ]
2626
+ },
2627
+ {
2628
+ "name": "STARLIGHT",
2629
+ "aim": 0,
2630
+ "level": 25,
2631
+ "power": 5,
2632
+ "effect": [
2633
+ {
2634
+ "eff": "STAR",
2635
+ "type": "LIGHT_WEAK",
2636
+ "dice": "6d8"
2637
+ }
2638
+ ]
2639
+ },
2640
+ {
2641
+ "name": "STARLIGHT2",
2642
+ "aim": 0,
2643
+ "level": 30,
2644
+ "power": 7,
2645
+ "effect": [
2646
+ {
2647
+ "eff": "STAR",
2648
+ "type": "LIGHT",
2649
+ "dice": "10d8"
2650
+ }
2651
+ ],
2652
+ "msg": [
2653
+ "Your {kind} glow{s} with the light of a thousand stars..."
2654
+ ]
2655
+ },
2656
+ {
2657
+ "name": "BERSERKER",
2658
+ "aim": 0,
2659
+ "level": 20,
2660
+ "power": 10,
2661
+ "effect": [
2662
+ {
2663
+ "eff": "TIMED_INC",
2664
+ "type": "SHERO",
2665
+ "dice": "50+1d50"
2666
+ }
2667
+ ],
2668
+ "msg": [
2669
+ "{name} glows in anger!"
2670
+ ],
2671
+ "desc": [
2672
+ "puts you in a berserker rage for d50+50 turns"
2673
+ ]
2674
+ },
2675
+ {
2676
+ "name": "WONDER",
2677
+ "aim": 1,
2678
+ "level": 10,
2679
+ "power": 9,
2680
+ "effect": [
2681
+ {
2682
+ "eff": "WONDER",
2683
+ "dice": "$B+1d100",
2684
+ "expr": [
2685
+ {
2686
+ "name": "B",
2687
+ "base": "PLAYER_LEVEL",
2688
+ "expr": "/ 5"
2689
+ }
2690
+ ]
2691
+ }
2692
+ ],
2693
+ "desc": [
2694
+ "creates random and unpredictable effects"
2695
+ ]
2696
+ },
2697
+ {
2698
+ "name": "WAND_BREATH",
2699
+ "aim": 1,
2700
+ "level": 35,
2701
+ "power": 12,
2702
+ "effect": [
2703
+ {
2704
+ "eff": "SELECT",
2705
+ "dice": "5"
2706
+ },
2707
+ {
2708
+ "eff": "BREATH",
2709
+ "type": "ACID",
2710
+ "radius": 0,
2711
+ "other": 30,
2712
+ "dice": "160"
2713
+ },
2714
+ {
2715
+ "eff": "BREATH",
2716
+ "type": "ELEC",
2717
+ "radius": 0,
2718
+ "other": 30,
2719
+ "dice": "160"
2720
+ },
2721
+ {
2722
+ "eff": "BREATH",
2723
+ "type": "FIRE",
2724
+ "radius": 0,
2725
+ "other": 30,
2726
+ "dice": "160"
2727
+ },
2728
+ {
2729
+ "eff": "BREATH",
2730
+ "type": "COLD",
2731
+ "radius": 0,
2732
+ "other": 30,
2733
+ "dice": "160"
2734
+ },
2735
+ {
2736
+ "eff": "BREATH",
2737
+ "type": "POIS",
2738
+ "radius": 0,
2739
+ "other": 30,
2740
+ "dice": "160"
2741
+ }
2742
+ ]
2743
+ },
2744
+ {
2745
+ "name": "STAFF_MAGI",
2746
+ "aim": 0,
2747
+ "level": 77,
2748
+ "power": 20,
2749
+ "effect": [
2750
+ {
2751
+ "eff": "RESTORE_STAT",
2752
+ "type": "INT"
2753
+ },
2754
+ {
2755
+ "eff": "RESTORE_MANA"
2756
+ }
2757
+ ],
2758
+ "desc": [
2759
+ "restores both intelligence and manapoints to maximum"
2760
+ ]
2761
+ },
2762
+ {
2763
+ "name": "STAFF_HOLY",
2764
+ "aim": 0,
2765
+ "level": 80,
2766
+ "power": 12,
2767
+ "effect": [
2768
+ {
2769
+ "eff": "PROJECT_LOS",
2770
+ "type": "DISP_EVIL",
2771
+ "radius": 0,
2772
+ "other": 1,
2773
+ "dice": "120"
2774
+ },
2775
+ {
2776
+ "eff": "HEAL_HP",
2777
+ "dice": "50"
2778
+ },
2779
+ {
2780
+ "eff": "TIMED_INC",
2781
+ "type": "PROTEVIL",
2782
+ "dice": "$B+1d25",
2783
+ "expr": [
2784
+ {
2785
+ "name": "B",
2786
+ "base": "PLAYER_LEVEL",
2787
+ "expr": "* 3"
2788
+ }
2789
+ ]
2790
+ },
2791
+ {
2792
+ "eff": "CURE",
2793
+ "type": "POISONED"
2794
+ },
2795
+ {
2796
+ "eff": "CURE",
2797
+ "type": "TERROR"
2798
+ },
2799
+ {
2800
+ "eff": "CURE",
2801
+ "type": "AFRAID"
2802
+ },
2803
+ {
2804
+ "eff": "CURE",
2805
+ "type": "STUN"
2806
+ },
2807
+ {
2808
+ "eff": "CURE",
2809
+ "type": "CUT"
2810
+ },
2811
+ {
2812
+ "eff": "CURE",
2813
+ "type": "SLOW"
2814
+ },
2815
+ {
2816
+ "eff": "CURE",
2817
+ "type": "BLIND"
2818
+ },
2819
+ {
2820
+ "eff": "CURE",
2821
+ "type": "CONFUSED"
2822
+ },
2823
+ {
2824
+ "eff": "CURE",
2825
+ "type": "IMAGE"
2826
+ },
2827
+ {
2828
+ "eff": "CURE",
2829
+ "type": "AMNESIA"
2830
+ }
2831
+ ],
2832
+ "desc": [
2833
+ "inflicts damage on evil creatures you can see, heals 50 hit points, cures all temporary negative effects and grants you protection from evil"
2834
+ ]
2835
+ },
2836
+ {
2837
+ "name": "DRINK_BREATH",
2838
+ "aim": 1,
2839
+ "level": 20,
2840
+ "power": 8,
2841
+ "effect": [
2842
+ {
2843
+ "eff": "SELECT",
2844
+ "dice": "2"
2845
+ },
2846
+ {
2847
+ "eff": "BREATH",
2848
+ "type": "FIRE",
2849
+ "radius": 0,
2850
+ "other": 30,
2851
+ "dice": "80"
2852
+ },
2853
+ {
2854
+ "eff": "BREATH",
2855
+ "type": "COLD",
2856
+ "radius": 0,
2857
+ "other": 30,
2858
+ "dice": "80"
2859
+ }
2860
+ ]
2861
+ },
2862
+ {
2863
+ "name": "FOOD_WAYBREAD",
2864
+ "aim": 0,
2865
+ "level": 15,
2866
+ "power": 4,
2867
+ "effect": [
2868
+ {
2869
+ "eff": "NOURISH",
2870
+ "type": "INC_TO",
2871
+ "dice": "75"
2872
+ },
2873
+ {
2874
+ "eff": "CURE",
2875
+ "type": "POISONED"
2876
+ },
2877
+ {
2878
+ "eff": "HEAL_HP",
2879
+ "dice": "4d8"
2880
+ }
2881
+ ],
2882
+ "desc": [
2883
+ "restores 4d8 hit points, neutralizes poison and leaves you very well fed"
2884
+ ]
2885
+ },
2886
+ {
2887
+ "name": "SHROOM_EMERGENCY",
2888
+ "aim": 0,
2889
+ "level": 20,
2890
+ "power": 7,
2891
+ "effect": [
2892
+ {
2893
+ "eff": "TIMED_INC",
2894
+ "type": "IMAGE",
2895
+ "dice": "249+1d101"
2896
+ },
2897
+ {
2898
+ "eff": "SET_VALUE",
2899
+ "dice": "19+1d21"
2900
+ },
2901
+ {
2902
+ "eff": "TIMED_INC",
2903
+ "type": "OPP_FIRE"
2904
+ },
2905
+ {
2906
+ "eff": "TIMED_INC",
2907
+ "type": "OPP_COLD"
2908
+ },
2909
+ {
2910
+ "eff": "CLEAR_VALUE"
2911
+ },
2912
+ {
2913
+ "eff": "HEAL_HP",
2914
+ "dice": "200"
2915
+ }
2916
+ ],
2917
+ "desc": [
2918
+ "grants temporary resistance to fire and cold, cures 200HP, but also makes you hallucinate wildly"
2919
+ ]
2920
+ },
2921
+ {
2922
+ "name": "SHROOM_TERROR",
2923
+ "aim": 0,
2924
+ "level": 10,
2925
+ "power": 5,
2926
+ "effect": [
2927
+ {
2928
+ "eff": "TIMED_SET",
2929
+ "type": "TERROR",
2930
+ "dice": "79+1d41"
2931
+ }
2932
+ ],
2933
+ "desc": [
2934
+ "speeds up you temporarily but also makes you mortally afraid"
2935
+ ]
2936
+ },
2937
+ {
2938
+ "name": "SHROOM_STONE",
2939
+ "aim": 0,
2940
+ "level": 10,
2941
+ "power": 5,
2942
+ "effect": [
2943
+ {
2944
+ "eff": "TIMED_SET",
2945
+ "type": "STONESKIN",
2946
+ "dice": "79+1d41"
2947
+ }
2948
+ ],
2949
+ "desc": [
2950
+ "turns your skin to stone briefly, which grants an extra 40AC but slows you down"
2951
+ ]
2952
+ },
2953
+ {
2954
+ "name": "SHROOM_DEBILITY",
2955
+ "aim": 0,
2956
+ "level": 20,
2957
+ "power": 5,
2958
+ "effect": [
2959
+ {
2960
+ "eff": "RESTORE_MANA"
2961
+ },
2962
+ {
2963
+ "eff": "RANDOM",
2964
+ "dice": "2"
2965
+ },
2966
+ {
2967
+ "eff": "DRAIN_STAT",
2968
+ "type": "STR"
2969
+ },
2970
+ {
2971
+ "eff": "DRAIN_STAT",
2972
+ "type": "CON"
2973
+ }
2974
+ ],
2975
+ "desc": [
2976
+ "restores some mana but also drains either your strength or constitution"
2977
+ ]
2978
+ },
2979
+ {
2980
+ "name": "SHROOM_SPRINTING",
2981
+ "aim": 0,
2982
+ "level": 25,
2983
+ "power": 5,
2984
+ "effect": [
2985
+ {
2986
+ "eff": "TIMED_INC",
2987
+ "type": "SPRINT",
2988
+ "dice": "100"
2989
+ }
2990
+ ],
2991
+ "desc": [
2992
+ "hastes you for a while, but then makes you slower for a while afterward"
2993
+ ]
2994
+ },
2995
+ {
2996
+ "name": "SHROOM_PURGING",
2997
+ "aim": 0,
2998
+ "level": 25,
2999
+ "power": 5,
3000
+ "effect": [
3001
+ {
3002
+ "eff": "NOURISH",
3003
+ "type": "SET_TO",
3004
+ "dice": "5"
3005
+ },
3006
+ {
3007
+ "eff": "RESTORE_STAT",
3008
+ "type": "STR"
3009
+ },
3010
+ {
3011
+ "eff": "RESTORE_STAT",
3012
+ "type": "CON"
3013
+ },
3014
+ {
3015
+ "eff": "CURE",
3016
+ "type": "POISONED"
3017
+ }
3018
+ ],
3019
+ "desc": [
3020
+ "makes you very hungry but restores constitution and strength"
3021
+ ]
3022
+ },
3023
+ {
3024
+ "name": "RING_ACID",
3025
+ "aim": 1,
3026
+ "level": 25,
3027
+ "power": 11,
3028
+ "effect": [
3029
+ {
3030
+ "eff": "BALL",
3031
+ "type": "ACID",
3032
+ "radius": 2,
3033
+ "dice": "70"
3034
+ },
3035
+ {
3036
+ "eff": "TIMED_INC",
3037
+ "type": "OPP_ACID",
3038
+ "dice": "20+1d20"
3039
+ }
3040
+ ]
3041
+ },
3042
+ {
3043
+ "name": "RING_FLAMES",
3044
+ "aim": 1,
3045
+ "level": 30,
3046
+ "power": 11,
3047
+ "effect": [
3048
+ {
3049
+ "eff": "BALL",
3050
+ "type": "FIRE",
3051
+ "radius": 2,
3052
+ "dice": "80"
3053
+ },
3054
+ {
3055
+ "eff": "TIMED_INC",
3056
+ "type": "OPP_FIRE",
3057
+ "dice": "20+1d20"
3058
+ }
3059
+ ]
3060
+ },
3061
+ {
3062
+ "name": "RING_ICE",
3063
+ "aim": 1,
3064
+ "level": 28,
3065
+ "power": 11,
3066
+ "effect": [
3067
+ {
3068
+ "eff": "BALL",
3069
+ "type": "COLD",
3070
+ "radius": 2,
3071
+ "dice": "75"
3072
+ },
3073
+ {
3074
+ "eff": "TIMED_INC",
3075
+ "type": "OPP_COLD",
3076
+ "dice": "20+1d20"
3077
+ }
3078
+ ]
3079
+ },
3080
+ {
3081
+ "name": "RING_LIGHTNING",
3082
+ "aim": 1,
3083
+ "level": 32,
3084
+ "power": 11,
3085
+ "effect": [
3086
+ {
3087
+ "eff": "BALL",
3088
+ "type": "ELEC",
3089
+ "radius": 2,
3090
+ "dice": "85"
3091
+ },
3092
+ {
3093
+ "eff": "TIMED_INC",
3094
+ "type": "OPP_ELEC",
3095
+ "dice": "20+1d20"
3096
+ }
3097
+ ]
3098
+ },
3099
+ {
3100
+ "name": "DRAGON_BLUE",
3101
+ "aim": 1,
3102
+ "level": 30,
3103
+ "power": 18,
3104
+ "effect": [
3105
+ {
3106
+ "eff": "BREATH",
3107
+ "type": "ELEC",
3108
+ "radius": 0,
3109
+ "other": 20,
3110
+ "dice": "150"
3111
+ }
3112
+ ]
3113
+ },
3114
+ {
3115
+ "name": "DRAGON_GREEN",
3116
+ "aim": 1,
3117
+ "level": 30,
3118
+ "power": 19,
3119
+ "effect": [
3120
+ {
3121
+ "eff": "BREATH",
3122
+ "type": "POIS",
3123
+ "radius": 0,
3124
+ "other": 20,
3125
+ "dice": "150"
3126
+ }
3127
+ ]
3128
+ },
3129
+ {
3130
+ "name": "DRAGON_RED",
3131
+ "aim": 1,
3132
+ "level": 32,
3133
+ "power": 20,
3134
+ "effect": [
3135
+ {
3136
+ "eff": "BREATH",
3137
+ "type": "FIRE",
3138
+ "radius": 0,
3139
+ "other": 20,
3140
+ "dice": "200"
3141
+ }
3142
+ ]
3143
+ },
3144
+ {
3145
+ "name": "DRAGON_MULTIHUED",
3146
+ "aim": 1,
3147
+ "level": 50,
3148
+ "power": 20,
3149
+ "effect": [
3150
+ {
3151
+ "eff": "SELECT",
3152
+ "dice": "5"
3153
+ },
3154
+ {
3155
+ "eff": "BREATH",
3156
+ "type": "ACID",
3157
+ "radius": 0,
3158
+ "other": 20,
3159
+ "dice": "250"
3160
+ },
3161
+ {
3162
+ "eff": "BREATH",
3163
+ "type": "ELEC",
3164
+ "radius": 0,
3165
+ "other": 20,
3166
+ "dice": "250"
3167
+ },
3168
+ {
3169
+ "eff": "BREATH",
3170
+ "type": "FIRE",
3171
+ "radius": 0,
3172
+ "other": 20,
3173
+ "dice": "250"
3174
+ },
3175
+ {
3176
+ "eff": "BREATH",
3177
+ "type": "COLD",
3178
+ "radius": 0,
3179
+ "other": 20,
3180
+ "dice": "250"
3181
+ },
3182
+ {
3183
+ "eff": "BREATH",
3184
+ "type": "POIS",
3185
+ "radius": 0,
3186
+ "other": 20,
3187
+ "dice": "250"
3188
+ }
3189
+ ]
3190
+ },
3191
+ {
3192
+ "name": "DRAGON_GOLD",
3193
+ "aim": 1,
3194
+ "level": 40,
3195
+ "power": 19,
3196
+ "effect": [
3197
+ {
3198
+ "eff": "BREATH",
3199
+ "type": "SOUND",
3200
+ "radius": 0,
3201
+ "other": 20,
3202
+ "dice": "150"
3203
+ }
3204
+ ]
3205
+ },
3206
+ {
3207
+ "name": "DRAGON_CHAOS",
3208
+ "aim": 1,
3209
+ "level": 45,
3210
+ "power": 23,
3211
+ "effect": [
3212
+ {
3213
+ "eff": "SELECT",
3214
+ "dice": "2"
3215
+ },
3216
+ {
3217
+ "eff": "BREATH",
3218
+ "type": "CHAOS",
3219
+ "radius": 0,
3220
+ "other": 20,
3221
+ "dice": "220"
3222
+ },
3223
+ {
3224
+ "eff": "BREATH",
3225
+ "type": "DISEN",
3226
+ "radius": 0,
3227
+ "other": 20,
3228
+ "dice": "220"
3229
+ }
3230
+ ]
3231
+ },
3232
+ {
3233
+ "name": "DRAGON_LAW",
3234
+ "aim": 1,
3235
+ "level": 45,
3236
+ "power": 23,
3237
+ "effect": [
3238
+ {
3239
+ "eff": "SELECT",
3240
+ "dice": "2"
3241
+ },
3242
+ {
3243
+ "eff": "BREATH",
3244
+ "type": "SOUND",
3245
+ "radius": 0,
3246
+ "other": 20,
3247
+ "dice": "230"
3248
+ },
3249
+ {
3250
+ "eff": "BREATH",
3251
+ "type": "SHARD",
3252
+ "radius": 0,
3253
+ "other": 20,
3254
+ "dice": "230"
3255
+ }
3256
+ ]
3257
+ },
3258
+ {
3259
+ "name": "DRAGON_BALANCE",
3260
+ "aim": 1,
3261
+ "level": 52,
3262
+ "power": 24,
3263
+ "effect": [
3264
+ {
3265
+ "eff": "SELECT",
3266
+ "dice": "4"
3267
+ },
3268
+ {
3269
+ "eff": "BREATH",
3270
+ "type": "SOUND",
3271
+ "radius": 0,
3272
+ "other": 20,
3273
+ "dice": "250"
3274
+ },
3275
+ {
3276
+ "eff": "BREATH",
3277
+ "type": "SHARD",
3278
+ "radius": 0,
3279
+ "other": 20,
3280
+ "dice": "250"
3281
+ },
3282
+ {
3283
+ "eff": "BREATH",
3284
+ "type": "CHAOS",
3285
+ "radius": 0,
3286
+ "other": 20,
3287
+ "dice": "250"
3288
+ },
3289
+ {
3290
+ "eff": "BREATH",
3291
+ "type": "DISEN",
3292
+ "radius": 0,
3293
+ "other": 20,
3294
+ "dice": "250"
3295
+ }
3296
+ ]
3297
+ },
3298
+ {
3299
+ "name": "DRAGON_SHINING",
3300
+ "aim": 1,
3301
+ "level": 37,
3302
+ "power": 21,
3303
+ "effect": [
3304
+ {
3305
+ "eff": "SELECT",
3306
+ "dice": "2"
3307
+ },
3308
+ {
3309
+ "eff": "BREATH",
3310
+ "type": "LIGHT",
3311
+ "radius": 0,
3312
+ "other": 20,
3313
+ "dice": "200"
3314
+ },
3315
+ {
3316
+ "eff": "BREATH",
3317
+ "type": "DARK",
3318
+ "radius": 0,
3319
+ "other": 20,
3320
+ "dice": "200"
3321
+ }
3322
+ ]
3323
+ },
3324
+ {
3325
+ "name": "DRAGON_POWER",
3326
+ "aim": 1,
3327
+ "level": 57,
3328
+ "power": 25,
3329
+ "effect": [
3330
+ {
3331
+ "eff": "BREATH",
3332
+ "type": "MISSILE",
3333
+ "radius": 0,
3334
+ "other": 20,
3335
+ "dice": "300"
3336
+ }
3337
+ ]
3338
+ }
3339
+ ]
3340
+ }