@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,4355 @@
1
+ {
2
+ "file": "vault",
3
+ "source": "lib/gamedata/vault.txt",
4
+ "records": [
5
+ {
6
+ "name": "Round",
7
+ "type": "Lesser vault",
8
+ "rating": 5,
9
+ "rows": 12,
10
+ "columns": 20,
11
+ "min-depth": 0,
12
+ "max-depth": 0,
13
+ "D": [
14
+ " %%%%%% ",
15
+ " %%%..##..%%% ",
16
+ " %%....####....%% ",
17
+ " %......#&&#......% ",
18
+ "%...4.##+##+##.4...%",
19
+ "%.4.4.#&#&9#&#.4.4.%",
20
+ "%.4.4.#&#9&#&#.4.4.%",
21
+ "%...4.##+##+##.4...%",
22
+ " %......#&&#......% ",
23
+ " %%....####....%% ",
24
+ " %%%..##..%%% ",
25
+ " %%%%%% "
26
+ ]
27
+ },
28
+ {
29
+ "name": "Octagon1",
30
+ "type": "Lesser vault",
31
+ "rating": 5,
32
+ "rows": 16,
33
+ "columns": 20,
34
+ "min-depth": 0,
35
+ "max-depth": 0,
36
+ "D": [
37
+ " %%%%%%%%%%%%%% ",
38
+ " %............% ",
39
+ " %%.##########.%% ",
40
+ " %%..#..4444..#..%% ",
41
+ "%%4..#.4####4.#..4%%",
42
+ "%....#.4#&&#4.#....%",
43
+ "%.###+4##22##4+###.%",
44
+ "%.#..44#&9&&#44..#.%",
45
+ "%.#..44#&&9&#44..#.%",
46
+ "%.###+4##22##4+###.%",
47
+ "%....#.4#&&#4.#....%",
48
+ "%%4..#.4####4.#..4%%",
49
+ " %%..#..4444..#..%% ",
50
+ " %%.##########.%% ",
51
+ " %............% ",
52
+ " %%%%%%%%%%%%%% "
53
+ ]
54
+ },
55
+ {
56
+ "name": "Octagon2",
57
+ "type": "Lesser vault",
58
+ "rating": 5,
59
+ "rows": 12,
60
+ "columns": 20,
61
+ "min-depth": 0,
62
+ "max-depth": 0,
63
+ "D": [
64
+ " %%%%%%%%%%%% ",
65
+ " %%%%..........%%%% ",
66
+ " %...###+##+###...% ",
67
+ "%%...#44#44#44#...%%",
68
+ "%.###+##+##+##+###.%",
69
+ "%.#44#22#&9#22#44#.%",
70
+ "%.#44#22#9&#22#44#.%",
71
+ "%.###+##+##+##+###.%",
72
+ "%%...#44#44#44#...%%",
73
+ " %...###+##+###...% ",
74
+ " %%%%..........%%%% ",
75
+ " %%%%%%%%%%%% "
76
+ ]
77
+ },
78
+ {
79
+ "name": "Square1",
80
+ "type": "Lesser vault",
81
+ "rating": 5,
82
+ "rows": 12,
83
+ "columns": 20,
84
+ "min-depth": 0,
85
+ "max-depth": 0,
86
+ "D": [
87
+ "%%%%%%%%%%%%%%%%%%%%",
88
+ "%&.......2........&%",
89
+ "%.################.%",
90
+ "%.#4.4.4.4.4.4.4.#.%",
91
+ "%.#.############4#.%",
92
+ "%.#4+422+&9#2&4#.#2%",
93
+ "%2#.#4&2#9&+224+4#.%",
94
+ "%.#4############.#.%",
95
+ "%.#.4.4.4.4.4.4.4#.%",
96
+ "%.################.%",
97
+ "%&........2.......&%",
98
+ "%%%%%%%%%%%%%%%%%%%%"
99
+ ]
100
+ },
101
+ {
102
+ "name": "Square2",
103
+ "type": "Lesser vault",
104
+ "rating": 5,
105
+ "rows": 14,
106
+ "columns": 20,
107
+ "min-depth": 0,
108
+ "max-depth": 0,
109
+ "D": [
110
+ "%%%%%%%%%%%%%%%%%%%%",
111
+ "%^^^^^^^^^^^^^^^^^^%",
112
+ "%4################4%",
113
+ "%^#.&...2..4....4#^%",
114
+ "%^#...4......9...#^%",
115
+ "%^#######++#######^%",
116
+ "%^+.4..2+4&+&....+^%",
117
+ "%^+..&.4+.2+.4.2.+^%",
118
+ "%^#######++#######^%",
119
+ "%^#....4.4.....4.#^%",
120
+ "%^#..9......&....#^%",
121
+ "%4################4%",
122
+ "%^^^^^^^^^^^^^^^^^^%",
123
+ "%%%%%%%%%%%%%%%%%%%%"
124
+ ]
125
+ },
126
+ {
127
+ "name": "Planet X",
128
+ "type": "Lesser vault",
129
+ "rating": 10,
130
+ "rows": 13,
131
+ "columns": 15,
132
+ "min-depth": 0,
133
+ "max-depth": 0,
134
+ "D": [
135
+ "%%%%%%%%%%%%%%%",
136
+ "%.............%",
137
+ "%.@@@@@#@@@@@.%",
138
+ "%.@@@44444@@@.%",
139
+ "%.@4@@444@@4@.%",
140
+ "%.@44@@9@@44@.%",
141
+ "%.#449###944#.%",
142
+ "%.@44@@9@@44@.%",
143
+ "%.@4@@444@@4@.%",
144
+ "%.@@@44444@@@.%",
145
+ "%.@@@@@#@@@@@.%",
146
+ "%.............%",
147
+ "%%%%%%%%%%%%%%%"
148
+ ]
149
+ },
150
+ {
151
+ "name": "Turnabout",
152
+ "type": "Lesser vault",
153
+ "rating": 10,
154
+ "rows": 12,
155
+ "columns": 15,
156
+ "min-depth": 0,
157
+ "max-depth": 0,
158
+ "D": [
159
+ "%%%%%%%%%%%%%%%",
160
+ "%.............%",
161
+ "%.###########.%",
162
+ "%.#9##4444###.%",
163
+ "%.###^^##44##.%",
164
+ "%.##2^^2##44#.%",
165
+ "%.###^^^^#44#.%",
166
+ "%.#4##44##44#.%",
167
+ "%.#94##^#66##.%",
168
+ "%.#####^#####.%",
169
+ "%.............%",
170
+ "%%%%%%%%%%%%%%%"
171
+ ]
172
+ },
173
+ {
174
+ "name": "Cross",
175
+ "type": "Lesser vault",
176
+ "rating": 10,
177
+ "rows": 13,
178
+ "columns": 18,
179
+ "min-depth": 0,
180
+ "max-depth": 0,
181
+ "flags": [
182
+ "FEW_ENTRANCES"
183
+ ],
184
+ "D": [
185
+ " %%%% ",
186
+ "########++########",
187
+ "#&....&#..#&....&#",
188
+ "#....94#^^#49....#",
189
+ "#....4##..##4....#",
190
+ "#+#####&..&#####+#",
191
+ "#^^.....44.....^^#",
192
+ "#+#####&..&#####+#",
193
+ "#....4##..##4....#",
194
+ "#....94#^^#49....#",
195
+ "#&....&#..#&....&#",
196
+ "########++########",
197
+ " %%%% "
198
+ ]
199
+ },
200
+ {
201
+ "name": "Central",
202
+ "type": "Lesser vault",
203
+ "rating": 12,
204
+ "rows": 10,
205
+ "columns": 12,
206
+ "min-depth": 0,
207
+ "max-depth": 0,
208
+ "D": [
209
+ "%%%%%%%%%%%%",
210
+ "%4#^^^^^^#4%",
211
+ "%#+######+#%",
212
+ "%^#^^44^^#^%",
213
+ "%^#^2692^#^%",
214
+ "%^#^2962^#^%",
215
+ "%^#^^44^^#^%",
216
+ "%#+######+#%",
217
+ "%4#^^^^^^#4%",
218
+ "%%%%%%%%%%%%"
219
+ ]
220
+ },
221
+ {
222
+ "name": "Camouflaged",
223
+ "type": "Lesser vault",
224
+ "rating": 10,
225
+ "rows": 7,
226
+ "columns": 12,
227
+ "min-depth": 0,
228
+ "max-depth": 0,
229
+ "flags": [
230
+ "FEW_ENTRANCES"
231
+ ],
232
+ "D": [
233
+ "%@@@@@@@@@@ ",
234
+ "%#44444449@ ",
235
+ "%@@@@@@@@@@%",
236
+ " @94444444#%",
237
+ "%@@@@@@@@@@%",
238
+ "%#44444449@ ",
239
+ "%@@@@@@@@@@ "
240
+ ]
241
+ },
242
+ {
243
+ "name": "X^2",
244
+ "type": "Lesser vault",
245
+ "rating": 8,
246
+ "rows": 13,
247
+ "columns": 15,
248
+ "min-depth": 0,
249
+ "max-depth": 0,
250
+ "D": [
251
+ "%%%%%%%%%%%%%%%",
252
+ "%.............%",
253
+ "%.#####.#####.%",
254
+ "%.#944#.#449#.%",
255
+ "%.##44#+#44##.%",
256
+ "%..###^^^###..%",
257
+ "%....+^&^+....%",
258
+ "%..###^^^###..%",
259
+ "%.##44#+#44##.%",
260
+ "%.#944#.#449#.%",
261
+ "%.#####.#####.%",
262
+ "%.............%",
263
+ "%%%%%%%%%%%%%%%"
264
+ ]
265
+ },
266
+ {
267
+ "name": "Rock-Hard",
268
+ "type": "Lesser vault",
269
+ "rating": 10,
270
+ "rows": 11,
271
+ "columns": 20,
272
+ "min-depth": 0,
273
+ "max-depth": 0,
274
+ "D": [
275
+ "%%%%%%%%%%%%%%%%%%%%",
276
+ "%..................%",
277
+ "%.#^############^#.%",
278
+ "%.#^#4444444444#^#.%",
279
+ "%.#^##44444444##^#.%",
280
+ "%.##^##^^^^^^##^##.%",
281
+ "%.###&##2222##&###.%",
282
+ "%.#9##^##99##^##9#.%",
283
+ "%.#####^####^#####.%",
284
+ "%..................%",
285
+ "%%%%%%%%%%%%%%%%%%%%"
286
+ ]
287
+ },
288
+ {
289
+ "name": "Miniature Cell",
290
+ "type": "Lesser vault",
291
+ "rating": 5,
292
+ "rows": 5,
293
+ "columns": 5,
294
+ "min-depth": 0,
295
+ "max-depth": 0,
296
+ "D": [
297
+ " %%% ",
298
+ "%#9#%",
299
+ "%999%",
300
+ "%#9#%",
301
+ " %%% "
302
+ ]
303
+ },
304
+ {
305
+ "name": "Interlock",
306
+ "type": "Lesser vault",
307
+ "rating": 10,
308
+ "rows": 12,
309
+ "columns": 17,
310
+ "min-depth": 0,
311
+ "max-depth": 0,
312
+ "D": [
313
+ "%%%%%%%%%%%%%%%%%",
314
+ "%......^^^......%",
315
+ "%.######+######.%",
316
+ "%.#4429#^#9244#.%",
317
+ "%.#4442#^#2444#.%",
318
+ "%.#4444#^#4444#.%",
319
+ "%.#^####^####^#.%",
320
+ "%.#^#6442446#^#.%",
321
+ "%.#^#4429244#^#.%",
322
+ "%.#+#########+#.%",
323
+ "%.^^^.......^^^.%",
324
+ "%%%%%%%%%%%%%%%%%"
325
+ ]
326
+ },
327
+ {
328
+ "name": "Rooms",
329
+ "type": "Medium vault",
330
+ "rating": 12,
331
+ "rows": 13,
332
+ "columns": 19,
333
+ "min-depth": 0,
334
+ "max-depth": 0,
335
+ "D": [
336
+ "%%%%%%%%%%%%%%%%%%%",
337
+ "%.................%",
338
+ "%.###############.%",
339
+ "%.#^+429#&4&+222#.%",
340
+ "%.#^#442#464#&&&#.%",
341
+ "%.#^#844+&4&#444+.%",
342
+ "%.#^#############.%",
343
+ "%.#^#844+&4&#444+.%",
344
+ "%.#^#442#464#&&&#.%",
345
+ "%.#^+429#&4&+222#.%",
346
+ "%.###############.%",
347
+ "%.................%",
348
+ "%%%%%%%%%%%%%%%%%%%"
349
+ ]
350
+ },
351
+ {
352
+ "name": "DiagonalLeft",
353
+ "type": "Medium vault",
354
+ "rating": 12,
355
+ "rows": 12,
356
+ "columns": 20,
357
+ "min-depth": 0,
358
+ "max-depth": 0,
359
+ "D": [
360
+ "%%%%%%%%%%%%%%%%% ",
361
+ "%944##9444##....%% ",
362
+ "%4444##4444##....%% ",
363
+ "%#4444##4444##....%%",
364
+ "%##4444##4444##....%",
365
+ "%.##4444494444#+...%",
366
+ "%..#+4444944444##..%",
367
+ "%...##4444##4444##.%",
368
+ "%%...##4444##4444##%",
369
+ " %%...##4444##4444#%",
370
+ " %%...##4449##4449%",
371
+ " %%%%%%%%%%%%%%%%%"
372
+ ]
373
+ },
374
+ {
375
+ "name": "Workaround",
376
+ "type": "Medium vault",
377
+ "rating": 15,
378
+ "rows": 19,
379
+ "columns": 21,
380
+ "min-depth": 0,
381
+ "max-depth": 0,
382
+ "D": [
383
+ "%%%%%%%%%%%%%%%%%%%%%",
384
+ "%...................%",
385
+ "%.@@..@@@@@@@@@..@@.%",
386
+ "%.@..@@&&&&&&&@@..@.%",
387
+ "%...@@446@@@644@@...%",
388
+ "%...@..2@@8@@2..@...%",
389
+ "%..@@..@@444@@..@@..%",
390
+ "%..@..@@94449@@..@..%",
391
+ "%..@.@@@@@2@@@@@.@..%",
392
+ "%..#.^^^+2@2+^^^.#..%",
393
+ "%..@.@@@@@2@@@@@.@..%",
394
+ "%..@..@@94449@@..@..%",
395
+ "%..@@..@@444@@..@@..%",
396
+ "%...@..2@@8@@2..@...%",
397
+ "%...@@446@@@644@@...%",
398
+ "%.@..@@&&&&&&&@@..@.%",
399
+ "%.@@..@@@@@@@@@..@@.%",
400
+ "%...................%",
401
+ "%%%%%%%%%%%%%%%%%%%%%"
402
+ ]
403
+ },
404
+ {
405
+ "name": "Snake Maze",
406
+ "type": "Medium vault",
407
+ "rating": 15,
408
+ "rows": 21,
409
+ "columns": 23,
410
+ "min-depth": 0,
411
+ "max-depth": 0,
412
+ "D": [
413
+ "%%%%%%%%%%%%%%%%%%%%%%%",
414
+ "%.....................%",
415
+ "%.@@@@@@@@@#@@@@@@@@@.%",
416
+ "%.@8@9..@@@..@4449@8@.%",
417
+ "%.@4@@@.^.@@.@4@@@@4@.%",
418
+ "%.@444@@@..@.@4444@4@.%",
419
+ "%.@@@444@@.@.@@&@444@.%",
420
+ "%.@...@&@..@.@@@@@@.@.%",
421
+ "%.@.@@@@@.@@.@.^.@..@.%",
422
+ "%.@...^........@.@.@@.%",
423
+ "%.@#@@@@@@@@@@@@...&@.%",
424
+ "%.@2.........^2@@.@@@.%",
425
+ "%.@.@@@@@@@@@@.@@444@.%",
426
+ "%.@.@......^...&@@@4@.%",
427
+ "%.@.@4@@@@@@@@2@@444@.%",
428
+ "%.@.@4@@84444@29@4@@@.%",
429
+ "%.@^@44@@@@@.@@@@4@&@.%",
430
+ "%.@.@@99@@&&......^.@.%",
431
+ "%.@#@@@@@@@@@@@@@@@@@.%",
432
+ "%.....................%",
433
+ "%%%%%%%%%%%%%%%%%%%%%%%"
434
+ ]
435
+ },
436
+ {
437
+ "name": "Crown",
438
+ "type": "Medium vault",
439
+ "rating": 20,
440
+ "rows": 19,
441
+ "columns": 28,
442
+ "min-depth": 0,
443
+ "max-depth": 0,
444
+ "D": [
445
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
446
+ "%..........................%",
447
+ "%.....@@@@@@@@@@@@@@@@.....%",
448
+ "%..@@@@^^^^+@@@@+^^^^@@@@..%",
449
+ "%.@@^^^^@+@@4@@4@@+@^^^^@@.%",
450
+ "%.@9@+@@@.@44@@44@.@@@+@9@.%",
451
+ "%.@@@9@66.@44@@44@.66@9@@@.%",
452
+ "%..@89@66.@44@@44@.66@98@..%",
453
+ "%..@@@@@@@@@+@@+@@@@@@@@@..%",
454
+ "%..........................%",
455
+ "%..@@@@@@@@@+@@+@@@@@@@@@..%",
456
+ "%..@89@66.@44@@44@.66@98@..%",
457
+ "%.@@@9@66.@44@@44@.66@9@@@.%",
458
+ "%.@9@+@@@.@44@@44@.@@@+@9@.%",
459
+ "%.@@^^^^@+@@4@@4@@+@^^^^@@.%",
460
+ "%..@@@@^^^^+@@@@+^^^^@@@@..%",
461
+ "%.....@@@@@@@@@@@@@@@@.....%",
462
+ "%..........................%",
463
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
464
+ ]
465
+ },
466
+ {
467
+ "name": "Funnel",
468
+ "type": "Medium vault",
469
+ "rating": 15,
470
+ "rows": 19,
471
+ "columns": 22,
472
+ "min-depth": 0,
473
+ "max-depth": 0,
474
+ "flags": [
475
+ "FEW_ENTRANCES"
476
+ ],
477
+ "D": [
478
+ "@@@@@@@@@@@@@@@@@@@@@%",
479
+ "@222...........&&&@.#%",
480
+ "@2@@@@@@@@@@@@@@@&@.@%",
481
+ "@2@222.......&&&@&@.@ ",
482
+ "@.@2@@@@@@@@@@.&@.@.@ ",
483
+ "@.@2@8@@44444@@&@.@.@ ",
484
+ "@.@.@@&4444444@.@.@.@ ",
485
+ "@.@.@@626262626.@.@.@ ",
486
+ "@.@.@8944444444.@.@.@ ",
487
+ "@.@.@8944444444.@.@.@ ",
488
+ "@.@.@8944444444.@.@.@ ",
489
+ "@.@.@@626262626@@.@.@ ",
490
+ "@.@.@@&4444444&@@.@.@ ",
491
+ "@.@&@8@@44444@@8@2@.@ ",
492
+ "@.@&@@@@@@@@@@@@@2@.@ ",
493
+ "@&@&&&.........222@2@ ",
494
+ "@&@@@@@@@@@@@@@@@@@2@ ",
495
+ "@&&&.............222@ ",
496
+ "@@@@@@@@@@@@@@@@@@@@@ "
497
+ ]
498
+ },
499
+ {
500
+ "name": "Pigeonholed",
501
+ "type": "Medium vault",
502
+ "rating": 15,
503
+ "rows": 17,
504
+ "columns": 27,
505
+ "min-depth": 0,
506
+ "max-depth": 0,
507
+ "D": [
508
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%",
509
+ "%.......4....4....4.......%",
510
+ "%.#######################.%",
511
+ "%.#.....2...444...2.....#.%",
512
+ "%.#.&.&.&.&.&.&.&.&.&.&.#.%",
513
+ "%.#.@@@@^@@@@^@@@@^@@@@.#.%",
514
+ "%.#4@9#&^@8#&^&#8@^&#9@4#.%",
515
+ "%.#.@@@@^@@@@^@@@@^@@@@.#.%",
516
+ "%.+.....2....6....2.....+.%",
517
+ "%.#.@@@@^@@@@^@@@@^@@@@.#.%",
518
+ "%.#4@9#&^@8#&^&#8@^&#9@4#.%",
519
+ "%.#.@@@@^@@@@^@@@@^@@@@.#.%",
520
+ "%.#.&.&.&.&.&.&.&.&.&.&.#.%",
521
+ "%.#.....2...444...2.....#.%",
522
+ "%.#######################.%",
523
+ "%.......4....4....4.......%",
524
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%"
525
+ ]
526
+ },
527
+ {
528
+ "name": "Skull",
529
+ "type": "Medium vault",
530
+ "rating": 12,
531
+ "rows": 17,
532
+ "columns": 19,
533
+ "min-depth": 0,
534
+ "max-depth": 0,
535
+ "D": [
536
+ "%%%%%%%%%%%%%%%%%%%",
537
+ "%.................%",
538
+ "%..4..@@@@@@@..4..%",
539
+ "%...@@@@@@@@@@@...%",
540
+ "%...@@649@946@@...%",
541
+ "%....@@8@#@8@@....%",
542
+ "%..4..@@@9@@@..4..%",
543
+ "%.....@^#9#^@.....%",
544
+ "%..@..^@@@@@^..@..%",
545
+ "%.@@@@4&4&4&4@@@@.%",
546
+ "%..4..@@@4@@@..4..%",
547
+ "%.4.4..2@@@2..4.4.%",
548
+ "%..4..@@@4@@@..4..%",
549
+ "%.@@@@4444444@@@@.%",
550
+ "%..@..4..4..4..@..%",
551
+ "%.................%",
552
+ "%%%%%%%%%%%%%%%%%%%"
553
+ ]
554
+ },
555
+ {
556
+ "name": "Hallway",
557
+ "type": "Medium vault",
558
+ "rating": 15,
559
+ "rows": 11,
560
+ "columns": 31,
561
+ "min-depth": 0,
562
+ "max-depth": 0,
563
+ "D": [
564
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
565
+ "%.............................%",
566
+ "%.@@@@@@@@@@@@@@@@@@@@@@@@@@@.%",
567
+ "%.@2#2#4#94#448#949#49#4#2#2@.%",
568
+ "%.@+#+#+##+##+###+##+##+#+#+@.%",
569
+ "%.+^&^&^&.^&.^494^.&^.&^&^&^+.%",
570
+ "%.@+#+#+##+##+###+##+##+#+#+@.%",
571
+ "%.@2#2#4#94#948#944#49#4#2#2@.%",
572
+ "%.@@@@@@@@@@@@@@@@@@@@@@@@@@@.%",
573
+ "%.............................%",
574
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
575
+ ]
576
+ },
577
+ {
578
+ "name": "Lair",
579
+ "type": "Medium vault",
580
+ "rating": 15,
581
+ "rows": 15,
582
+ "columns": 23,
583
+ "min-depth": 0,
584
+ "max-depth": 0,
585
+ "D": [
586
+ " %%%%%%%%% ",
587
+ " %%%.........%%% ",
588
+ " %%...@@@@@@@@@...%% ",
589
+ " %..@@@@&&&&&&&@@@@..% ",
590
+ "%.@@@^^^###+###^^^@@@.%",
591
+ "%.@4^####4^^^4####^4@.%",
592
+ "%.@4##2444#9#4442##4@.%",
593
+ "%.+4#86.4.999.4.68#4+.%",
594
+ "%.@4##2444#9#4442##4@.%",
595
+ "%.@4^####4^^^4####.4@.%",
596
+ "%.@@@^^^###+###^^^@@@.%",
597
+ " %..@@@@&&&&&&&@@@@..% ",
598
+ " %%...@@@@@@@@@...%% ",
599
+ " %%%.........%%% ",
600
+ " %%%%%%%%% "
601
+ ]
602
+ },
603
+ {
604
+ "name": "Disguised 2x2",
605
+ "type": "Medium vault",
606
+ "rating": 15,
607
+ "rows": 11,
608
+ "columns": 25,
609
+ "min-depth": 0,
610
+ "max-depth": 0,
611
+ "D": [
612
+ "%%%%%%%%%%%%%%%%%%%%%%%%%",
613
+ "%.......................%",
614
+ "%.#+#################+#.%",
615
+ "%.#444444296#692444444#.%",
616
+ "%.#444442968#869244444#.%",
617
+ "%.#####################.%",
618
+ "%.#444442968#869244444#.%",
619
+ "%.#444444296#692444444#.%",
620
+ "%.#+#################+#.%",
621
+ "%.......................%",
622
+ "%%%%%%%%%%%%%%%%%%%%%%%%%"
623
+ ]
624
+ },
625
+ {
626
+ "name": "Disguised Checkerboard",
627
+ "type": "Medium vault",
628
+ "rating": 15,
629
+ "rows": 11,
630
+ "columns": 25,
631
+ "min-depth": 0,
632
+ "max-depth": 0,
633
+ "D": [
634
+ "%%%%%%%%%%%%%%%%%%%%%%%%%",
635
+ "%.......................%",
636
+ "%.#####################.%",
637
+ "%.#4#9#.#4#&#9#.#&#.#6#.%",
638
+ "%.##.#&#9#.#4#&#8#.#&##.%",
639
+ "%.+.#2#.#.#.#2#.#4#.#8#.%",
640
+ "%.##.#&#9#.#4#&#8#.#&##.%",
641
+ "%.#4#9#.#4#&#9#.#&#.#6#.%",
642
+ "%.#####################.%",
643
+ "%.......................%",
644
+ "%%%%%%%%%%%%%%%%%%%%%%%%%"
645
+ ]
646
+ },
647
+ {
648
+ "name": "Infinity",
649
+ "type": "Medium vault",
650
+ "rating": 15,
651
+ "rows": 9,
652
+ "columns": 31,
653
+ "min-depth": 0,
654
+ "max-depth": 0,
655
+ "D": [
656
+ " %%%%%%%%% %%%%%%%%% ",
657
+ " %%%.........%%%.........%%% ",
658
+ " %...@@@@@@@@@...@@@@@@@@@...% ",
659
+ "%.@@@@44494^^@@#@@^^49444@@@@.%",
660
+ "%.@88622444^^^^@^^^^44422688@.%",
661
+ "%.@@@@44494^^@@#@@^^49444@@@@.%",
662
+ " %...@@@@@@@@@...@@@@@@@@@...% ",
663
+ " %%%.........%%%.........%%% ",
664
+ " %%%%%%%%% %%%%%%%%% "
665
+ ]
666
+ },
667
+ {
668
+ "name": "Pac-Man",
669
+ "type": "Medium vault",
670
+ "rating": 5,
671
+ "rows": 21,
672
+ "columns": 21,
673
+ "min-depth": 0,
674
+ "max-depth": 0,
675
+ "flags": [
676
+ "FEW_ENTRANCES"
677
+ ],
678
+ "D": [
679
+ "#@@@@@@@@@@@@@@@@@@@#",
680
+ "#@..2224..@..4222..@#",
681
+ "#@9@@^@@@^@^@@@^@@9@#",
682
+ "#@^....^2...2^....^@#",
683
+ "#@.@@.@.@@@@@.@.@@.@#",
684
+ "#@2..^@...@...@^..2@#",
685
+ "#@@@@.@@@.@.@@@.@@@@#",
686
+ "####@.@^&^6^&^@.@####",
687
+ "%@@@@2@^@@+@@^@2@@@@%",
688
+ "%^^^^22^@888@^22^^^^%",
689
+ "%@@@@2@.@@@@@.@2@@@@%",
690
+ "####@.@.&&&&&.@.@####",
691
+ "#@@@@.@.@@@@@.@.@@@@#",
692
+ "#@&..^@...@...@^..&@#",
693
+ "#@.@@.@@@.@.@@@.@@.@#",
694
+ "#@9.@.^..292..^.@.9@#",
695
+ "#@@.@.@.@@@@@.@.@.@@#",
696
+ "#@....@...@...@....@#",
697
+ "#@^@@@@@@^@^@@@@@@^@#",
698
+ "#@.42424.&^&.42424.@#",
699
+ "#@@@@@@@@@@@@@@@@@@@#"
700
+ ]
701
+ },
702
+ {
703
+ "name": "Huge",
704
+ "type": "Greater vault",
705
+ "rating": 45,
706
+ "rows": 15,
707
+ "columns": 39,
708
+ "min-depth": 0,
709
+ "max-depth": 0,
710
+ "flags": [
711
+ "FEW_ENTRANCES"
712
+ ],
713
+ "D": [
714
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
715
+ "%+2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8@ ",
716
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@ ",
717
+ " @8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2@ ",
718
+ " @#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
719
+ " @2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8@ ",
720
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@ ",
721
+ " @2#8#2#8#2#8#88888888888#8#2#8#2#8#2@ ",
722
+ " @#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
723
+ " @8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2@ ",
724
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@ ",
725
+ " @2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8@ ",
726
+ " @#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%",
727
+ " @8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2+%",
728
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%"
729
+ ]
730
+ },
731
+ {
732
+ "name": "Large",
733
+ "type": "Greater vault",
734
+ "rating": 35,
735
+ "rows": 16,
736
+ "columns": 40,
737
+ "min-depth": 0,
738
+ "max-depth": 0,
739
+ "flags": [
740
+ "FEW_ENTRANCES"
741
+ ],
742
+ "D": [
743
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
744
+ " @4#4#4#4#4#4#4#4#&99&#4#4#4#4#4#4#4#4@ ",
745
+ " @+@@@@@@@@@@@@@@@@##@@@@@@@@@@@@@@@@+@%",
746
+ " @.4..4.@9.2.4&@@&&&&&&@@&4.2.9@.4...4#%",
747
+ " @..4.^^@....4@@&&&66&&&@@4....@^^..4.#%",
748
+ " @@@@@@+@^2.2@@&&&6##6&&&@@2.2^@+@@@@@@%",
749
+ " @4.2.^^@+@@@@&&&6#@@#6&&&@@@@+@^^.4..@ ",
750
+ " @..424.@^^^6@&&6#@88@#6&&#6^^^@.4..24@ ",
751
+ " @.4....@^^^6#&&6#@88@#6&&@6^^^@.2.4..@ ",
752
+ " @...4^^@+@@@@&&&6#@@#6&&&@@@@+@^^..4.@ ",
753
+ "%@@@@@@+@^2.2@@&&&6##6&&&@@2.2^@+@@@@@@ ",
754
+ "%#.4..^^@.....@@&&&66&&&@@4....@^^.4..@ ",
755
+ "%#...4..@9.2.4&@@&&&&&&@@&4.2.9@..4..4@ ",
756
+ "%@+@@@@@@@@@@@@@@@@##@@@@@@@@@@@@@@@@+@ ",
757
+ " @4#4#4#4#4#4#4#4#&99&#4#4#4#4#4#4#4#4@ ",
758
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ "
759
+ ]
760
+ },
761
+ {
762
+ "name": "Butterfly",
763
+ "type": "Greater vault",
764
+ "rating": 25,
765
+ "rows": 16,
766
+ "columns": 40,
767
+ "min-depth": 0,
768
+ "max-depth": 0,
769
+ "flags": [
770
+ "FEW_ENTRANCES"
771
+ ],
772
+ "D": [
773
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
774
+ " @&9..2@@&&&++^^^^^^^^^^^^++&&&@@2..&9@ ",
775
+ " @9..2@@44444@@^^^^^^^^^^@@44444#@2..&@ ",
776
+ " @..2#@.....4.@@^^^^^^^^@@..2....@@2..@ ",
777
+ " @.2@@..4.2....@@^^^^^^@@..4...2..@@2.@ ",
778
+ " @2@@..&...2.^.8@@^^^^@@9.&....4..4@@2@ ",
779
+ "%@@@@+@@@@@@@@@@@@@++@@@@@@@@@@@@@+@@@@%",
780
+ "%+....4.4.@2222&&&+88+&&&2222@4.4.4...+%",
781
+ "%+...4.4.4@2222&&&+88+&&&2222@.4.4....+%",
782
+ "%@@@@+@@@@@@@@@@@@@++@@@@@@@@@@@@@+@@@@%",
783
+ " @2@@..&....2..9@@^^^^@@8..&...24..#@2@ ",
784
+ " @.2@@..2.^....@@^^^^^^@@....2....@@2.@ ",
785
+ " @..2@@....2..@@^^^^^^^^@@..4..&.@@2..@ ",
786
+ " @&..2#@44444@@^^^^^^^^^^@@44444@@2..9@ ",
787
+ " @9&..2@@&&&++^^^^^^^^^^^^++&&&@@2..&9@ ",
788
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ "
789
+ ]
790
+ },
791
+ {
792
+ "name": "Chambers",
793
+ "type": "Greater vault",
794
+ "rating": 25,
795
+ "rows": 15,
796
+ "columns": 40,
797
+ "min-depth": 0,
798
+ "max-depth": 0,
799
+ "D": [
800
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
801
+ "%2+.^..^..^..^..^..^..^..^..^..^..^..+2%",
802
+ "%+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+%",
803
+ "%.@.2.^4@2^2^@&&&&+^&^6^@.&.2..@..&.4@.%",
804
+ "%^@.4.2^+^2^6@^^^^@6^&^&@....&^+.^...@^%",
805
+ "%.@&..4.@@@+@@@@+@@@@+@@@.2.^..@..24.@.%",
806
+ "%^@..^.&@&..^2266&@49994@@@@+@@@4....@^%",
807
+ "%.@@+@@@@@@@@@@@@@@48884@444444@@@+@@@.%",
808
+ "%^@&2@.24&.@4&2^&^@49994@444444@....4@^%",
809
+ "%.@24+....&+4&2^&^@@@@@@@@@@+@@@.4...+.%",
810
+ "%^@.4@.&.2.@4&2^&^+.4.2.^&.2^2^@.....@^%",
811
+ "%.@^&@.4..4@4&2^&^@&.^&.4..222^@4..4.@.%",
812
+ "%+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+%",
813
+ "%2+..^..^..^..^..^..^..^..^..^..^..^.+2%",
814
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
815
+ ]
816
+ },
817
+ {
818
+ "name": "The I in the Storm",
819
+ "type": "Greater vault",
820
+ "rating": 40,
821
+ "rows": 25,
822
+ "columns": 39,
823
+ "min-depth": 0,
824
+ "max-depth": 0,
825
+ "flags": [
826
+ "FEW_ENTRANCES"
827
+ ],
828
+ "D": [
829
+ " %%% ",
830
+ "@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@",
831
+ "@22..^..#9@..^^^^^^^^^^^^^..@9#..^..22@",
832
+ "@2...#....@..@@@@@@^@@@@@@..@....#...2@",
833
+ "@...2#..#.@9@@.68@@^@@86.@@9@.#..#2...@",
834
+ "@..29#....@@@...6@444@6...@@@....#92..@",
835
+ "@^####..#...@@..@@4.4@@..@@...#..####^@",
836
+ "@........4#..@@^@44.44@^@@..#4........@",
837
+ "@.......#.....^@@4...4@@^.....#.......@",
838
+ "@........4#....@44...44@....#4........@",
839
+ "@.......#.....@@.......@@.....#.......@",
840
+ "@.#......4#..@@^...9...^@@..#4......#.@",
841
+ "@.9#....#....#^^..989..^^#....#....#9.@",
842
+ "@.#......4#..@@^...9...^@@..#4......#.@",
843
+ "@.......#.....@@.......@@.....#.......@",
844
+ "@........4#....@44...44@....#4........@",
845
+ "@.......#.....^@@4...4@@^.....#.......@",
846
+ "@........4#..@@^@44.44@^@@..#4........@",
847
+ "@^####..#...@@..@@4.4@@..@@...#..####^@",
848
+ "@..29#....@@@...6@444@6...@@@....#92..@",
849
+ "@...2#..#.@9@@.68@@^@@86.@@9@.#..#2...@",
850
+ "@2...#....@22@@@@@@^@@@@@@22@....#...2@",
851
+ "@22..^..#9@..^^^^^^^^^^^^^..@9#..^..22@",
852
+ "@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@",
853
+ " %%% "
854
+ ]
855
+ },
856
+ {
857
+ "name": "The Bank From Hell",
858
+ "type": "Greater vault",
859
+ "rating": 30,
860
+ "rows": 19,
861
+ "columns": 29,
862
+ "min-depth": 0,
863
+ "max-depth": 0,
864
+ "flags": [
865
+ "FEW_ENTRANCES"
866
+ ],
867
+ "D": [
868
+ " %%% ",
869
+ "@@@@@@@@@@@@@@+@@@@@@@@@@@@@@",
870
+ "@.2.2.2.2.2.#...#.2.2.2.2.2.@",
871
+ "@.#.#.#.#.#.#...#.#.#.#.#.#.@",
872
+ "@...........#...#...........@",
873
+ "@##########+##+##+##########@",
874
+ "@6........^^^^^^^^^........6@",
875
+ "@6^^^.....^^^...^^^.....^^^6@",
876
+ "@##+#######+#####+#######+##@",
877
+ "@.^^^.#6..^^^...^^^..6#.^^^.@",
878
+ "@#...##...............#.###.@",
879
+ "@6...6#.2.2.2.2.2.2.2.#..6..@",
880
+ "@@@@@@@@@@@@@@@@@@@@@@@@@@@+@",
881
+ "@.+^&&&&&@&&&&&&&^+^&&&&88@.@",
882
+ "@6@^....^@^......^@^....88@6@",
883
+ "@.@&&&&&^+^&&&&&&&@&&&&&88@.@",
884
+ "@6@@@@@@@@@@@@@@@@@@@@@@@@@6@",
885
+ "@.9.9.9.9.9.9.9.9.9.9.9.9.9.@",
886
+ "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
887
+ ]
888
+ },
889
+ {
890
+ "name": "Roundabouts One",
891
+ "type": "Greater vault",
892
+ "rating": 15,
893
+ "rows": 21,
894
+ "columns": 43,
895
+ "min-depth": 0,
896
+ "max-depth": 0,
897
+ "flags": [
898
+ "FEW_ENTRANCES"
899
+ ],
900
+ "D": [
901
+ "%%% ",
902
+ "%#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
903
+ "%@^^^^^^^^^^^^^^^^#2^^^2^^^^^^^^^^^^^2^44@ ",
904
+ " @^^^@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2.4@ ",
905
+ " @^.@+^2^..^^44444#2^^^2444444^^....4@@2.@ ",
906
+ " @.^@^2^@@@@@@@@@@@@@@@@@@@@@@@@@@@^44@.^@ ",
907
+ " @^.@2^@@4.^^......2^^^2#4.4.4^^2^+@^^@^.@ ",
908
+ " @.^@^^@44.^^......2^^^2#.4.4.^^.2^@^^@.^@ ",
909
+ " @^.@^^@&^^@@@@@@@@@@@@@@@@@@@@@^^2@^^@^.@ ",
910
+ " @.^@^^@&^@+^4444996#8@699444&2@@^&@^^@.^@ ",
911
+ " @^^@^^@^^@^2&^^^^^6@@@6^^^^^&2^@^^@^^@^^@ ",
912
+ " @^.@^^@&^@@2&444996@8#6994444^+@^&@^^@^.@ ",
913
+ " @.^@^^@2^^@@@@@@@@@@@@@@@@@@@@@^^&@^^@.^@ ",
914
+ " @^.@^^@^2.^^4.4.4#2^^^2......^^.44@^^@^.@ ",
915
+ " @.^@^^@+^2^^.4.4.#2^^^2......^^.4@@^2@.^@ ",
916
+ " @^.@44^@@@@@@@@@@@@@@@@@@@@@@@@@@@^2^@^.@ ",
917
+ " @.2@@4....^^4444442^^^2#44444^^..^2^+@.^@ ",
918
+ " @4.2@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@^^^@ ",
919
+ " @44^2^^^^^^^^^^^^^2^^^2#^^^^^^^^^^^^^^^^@%",
920
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#%",
921
+ " %%%"
922
+ ]
923
+ },
924
+ {
925
+ "name": "Roundabout Two",
926
+ "type": "Greater vault",
927
+ "rating": 25,
928
+ "rows": 23,
929
+ "columns": 39,
930
+ "min-depth": 0,
931
+ "max-depth": 0,
932
+ "flags": [
933
+ "FEW_ENTRANCES"
934
+ ],
935
+ "D": [
936
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
937
+ "%#^@.^^+@6@@.+@^^^^^+.@...@8#62&@&&&&&@",
938
+ "%@^@.^@@6@@.@@^^^^^^@.@.@^@@@6.2+9....@",
939
+ " @^@.@@2@@.@@^^^^^^^@.@.@^@8#62&@99...@",
940
+ " @^@.@^^@2.@@@@@@@@@@.@.@^@@@@@@@@@@++@",
941
+ " @^@.@.&@2.@.......2..@.@^@........@^^@",
942
+ " @^@2@.&@^^@.@@@@@@@@@@.@2@#@@@@@@.@^.@",
943
+ " @^@.@..@^^@...6........@.@......@.@^^@",
944
+ " @^@.@..@^^@@@@@@@@@@@@@@.@@@@@@.@.@.^@",
945
+ " @^@.@..@^^@..4.....4....2@8#9&@.@.@^^@",
946
+ " @^@2@44@^^@^@@@@@@@@@@@@@@##99@.@.@^.@",
947
+ " @^+2@..+^^@^^^^^^^^^^^^^^^9...#.@.#^^@",
948
+ " @^@2@44@^^@^@@@@@@@@@@@@@@##9&@.@.@.^@",
949
+ " @^@.@..@^^@..4.....4....2@8#99@.@.@^^@",
950
+ " @^@.@..@^^@@@@@@@@@@@@@@.@@@@@@.@.@^.@",
951
+ " @^@.@..@^^@...6........@.@......@.@^^@",
952
+ " @^@2@.&@^^@.@@@@@@@@@@.@2@#@@@@@@.@.^@",
953
+ " @^@.@.&@2.@.......2..@.@^@........@^^@",
954
+ " @^@.@^^@2.@@@@@@@@@@.@.@^@@@@@@@@@@++@",
955
+ " @^@.@@2@@.@@^^^^^^^@.@.@^@8#62&@99...@",
956
+ "%@^@.^@@6@@.@@^^^^^^@.@.@^@@@6.2+9....@",
957
+ "%#^@.^^+@6@@.+@^^^^^+.@...@8#62&@&&&&&@",
958
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
959
+ ]
960
+ },
961
+ {
962
+ "name": "Huge - Modified",
963
+ "type": "Greater vault",
964
+ "rating": 45,
965
+ "rows": 15,
966
+ "columns": 39,
967
+ "min-depth": 0,
968
+ "max-depth": 0,
969
+ "flags": [
970
+ "FEW_ENTRANCES"
971
+ ],
972
+ "D": [
973
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
974
+ "%#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8@ ",
975
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@ ",
976
+ " @2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2@2@ ",
977
+ " @#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@#@ ",
978
+ " @8@8#2#8#2#8#2#8#2#8#2#8#2#8#2#8@8@8@ ",
979
+ " @#@#@@@@@@@@@@@@@@@@@@@@@@@@@@@#@#@#@ ",
980
+ " @2@2@2#8#2#8#2#8#8#8#8#2#8#2#8#2@2@2@ ",
981
+ " @#@#@#@@@@@@@@@@@@@@@@@@@@@@@@@@@#@#@ ",
982
+ " @8@8@8#2#8#2#8#2#8#2#8#2#8#2#8#2#8@8@ ",
983
+ " @#@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@ ",
984
+ " @2@2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2@ ",
985
+ " @#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%",
986
+ " @8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#8#2#%",
987
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%"
988
+ ]
989
+ },
990
+ {
991
+ "name": "Mirrored Quartet",
992
+ "type": "Greater vault",
993
+ "rating": 20,
994
+ "rows": 19,
995
+ "columns": 49,
996
+ "min-depth": 0,
997
+ "max-depth": 0,
998
+ "flags": [
999
+ "FEW_ENTRANCES"
1000
+ ],
1001
+ "D": [
1002
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
1003
+ " @89666@@@4444@@@....^^^^^^^....@@@4444@@@66698@ ",
1004
+ " @966#@@....@@@&&....@@@#@@@....&&@@@....@@#669@ ",
1005
+ " @6@@@2222@@@&&....6@@22622@@6....&&@@@2222@@@6@ ",
1006
+ " @@@....@@@&&......6@&&...&&@6......&&@@@....@@@ ",
1007
+ " @6...@@@&&.......@@@@@...@@@@@.......&&@@@...6@ ",
1008
+ " @6.#@@&&.......9@@888@@^@@888@@9.......&&@@#.6@ ",
1009
+ " @@@@222222222229#44444@^@44444#922222222222@@@@ ",
1010
+ "%@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@%",
1011
+ "%#444444444444444444444#8#444444444444444444444#%",
1012
+ "%@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@%",
1013
+ " @@@@222222222229#44444@^@44444#922222222222@@@@ ",
1014
+ " @6.#@@&&.......9@@888@@^@@888@@9.......&&@@#.6@ ",
1015
+ " @6...@@@&&.......@@@@@...@@@@@.......&&@@@...6@ ",
1016
+ " @@@....@@@&&......6@&&...&&@6......&&@@@....@@@ ",
1017
+ " @6@@@2222@@@&&....6@@22622@@6....&&@@@2222@@@6@ ",
1018
+ " @966#@@....@@@&&....@@@#@@@....&&@@@....@@#669@ ",
1019
+ " @89666@@@4444@@@&&..^^^^^^^..&&@@@4444@@@66698@ ",
1020
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ "
1021
+ ]
1022
+ },
1023
+ {
1024
+ "name": "False Wall",
1025
+ "type": "Greater vault",
1026
+ "rating": 20,
1027
+ "rows": 14,
1028
+ "columns": 62,
1029
+ "min-depth": 0,
1030
+ "max-depth": 0,
1031
+ "flags": [
1032
+ "FEW_ENTRANCES"
1033
+ ],
1034
+ "D": [
1035
+ "%%% %%%",
1036
+ "@+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+@",
1037
+ "@^+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^+^@",
1038
+ "@^@@@@@@@@@@@@@@@@@@@@@@@@@@+@##@+@@@@@@@@@@@@@@@@@@@@@@@@@@^@",
1039
+ "@^+6&2&6&2&6&2&6&2&6&2&6&2&6&@66@&6&2&6&2&6&2&6&2&6&2&6&2&6+^@",
1040
+ "@^@@@@@@@@@@@@@@@@@@@@@@@@@+@@44@@+@@@@@@@@@@@@@@@@@@@@@@@@@^@",
1041
+ "@^+2.6.2.6.2.6.2.6.2.6.2.6.2@&..&@2.6.2.6.2.6.2.6.2.6.2.6.2+^@",
1042
+ "@^@@@@@@@@@@@@@@@@@@@@@@@@+@@&..&@@+@@@@@@@@@@@@@@@@@@@@@@@@^@",
1043
+ "@^+444444444444444444444444@44..44@444444444444444444444444+^@",
1044
+ "@^@@@@@@@@@@@@@@@@@@@@@@@+@@##99##@@+@@@@@@@@@@@@@@@@@@@@@@@^@",
1045
+ "@^+2.6.2.6.2.6.2.6.2.6.2.6@.6####6.@6.2.6.2.6.2.6.2.6.2.6.2+^@",
1046
+ "@^@@@@@@@@@@@@@@@@@@@@@@+@@..6##6..@@+@@@@@@@@@@@@@@@@@@@@@@^@",
1047
+ "@^+&2&6&2&6&2&6&2&6&2&6&2@2688888826@2&6&2&6&2&6&2&6&2&6&2&+^@",
1048
+ "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
1049
+ ]
1050
+ },
1051
+ {
1052
+ "name": "Divisi",
1053
+ "type": "Greater vault",
1054
+ "rating": 35,
1055
+ "rows": 31,
1056
+ "columns": 55,
1057
+ "min-depth": 0,
1058
+ "max-depth": 0,
1059
+ "D": [
1060
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1061
+ "%.....................................................%",
1062
+ "%.#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#.%",
1063
+ "%.@4@@66622444444444444444@8@44444444444444422666@@4@.%",
1064
+ "%.@44@@@622@@@@@@@@@@@@@@^@9@^@@@@@@@@@@@@@@226@@@44@.%",
1065
+ "%.@@444@@@^^^@@@#8#8#8#8@^@6@^@8#8#8#8#@@@^^^@@@444@@.%",
1066
+ "%.@@@@444@@@^^^@@@######@^@2@^@######@@@^^^@@@444@@@@.%",
1067
+ "%.@66@@@444@@@^^^@@@#8#8@^@4@^@8#8#@@@^^^@@@444@@@66@.%",
1068
+ "%.@2222@@@444@@@^^^@@###@^@4@^@###@@^^^@@@444@@@2222@.%",
1069
+ "%.@^@@..#@@@444@@@^^^@@@@^@4@^@@@@^^^@@@444@@@#..@@^@.%",
1070
+ "%.@^.@@@#66@@@444@@@^^^@@^@4@^@@^^^@@@444@@@66#@@@.^@.%",
1071
+ "%.@^222@@@222@@@444@@@^^^^@4@^^^^@@@444@@@222@@@222^@.%",
1072
+ "%.@^@@222@@@^^^@@@444@@@^^@4@^^@@@444@@@^^^@@@222@@^@.%",
1073
+ "%.@44@@@266@@@^^^@@@444@@@#4#@@@444@@@^^^@@@662@@@44@.%",
1074
+ "%.@44##@@@6##@@@^^^@@@444@@#@@444@@@^^^@@@##6@@@##44@.%",
1075
+ "%.@@@@888@@@999@@@^^^###4#888#4###^^^@@@999@@@888@@@@.%",
1076
+ "%.@44##@@@6##@@@^^^@@@444@@#@@444@@@^^^@@@##6@@@##44@.%",
1077
+ "%.@44@@@266@@@^^^@@@444@@@#4#@@@444@@@^^^@@@662@@@44@.%",
1078
+ "%.@^@@222@@@^^^@@@444@@@^^@4@^^@@@444@@@^^^@@@222@@^@.%",
1079
+ "%.@^222@@@222@@@444@@@^^^^@4@^^^^@@@444@@@222@@@222^@.%",
1080
+ "%.@^.@@@#66@@@444@@@^^^@@^@4@^@@^^^@@@444@@@66#@@@.^@.%",
1081
+ "%.@^@@..#@@@444@@@^^^@@@@^@4@^@@@@^^^@@@444@@@#..@@^@.%",
1082
+ "%.@2222@@@444@@@^^^@@###@^@4@^@###@@^^^@@@444@@@2222@.%",
1083
+ "%.@66@@@444@@@^^^@@@#8#8@^@4@^@8#8#@@@^^^@@@444@@@66@.%",
1084
+ "%.@@@@444@@@^^^@@@######@^@2@^@######@@@^^^@@@444@@@@.%",
1085
+ "%.@@444@@@^^^@@@#8#8#8#8@^@6@^@8#8#8#8#@@@^^^@@@444@@.%",
1086
+ "%.@44@@@622@@@@@@@@@@@@@@^@9@^@@@@@@@@@@@@@@226@@@44@.%",
1087
+ "%.@4@@66622444444444444444@8@44444444444444422666@@4@.%",
1088
+ "%.#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#.%",
1089
+ "%.....................................................%",
1090
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1091
+ ]
1092
+ },
1093
+ {
1094
+ "name": "Curlicues One",
1095
+ "type": "Greater vault",
1096
+ "rating": 15,
1097
+ "rows": 21,
1098
+ "columns": 43,
1099
+ "min-depth": 0,
1100
+ "max-depth": 0,
1101
+ "flags": [
1102
+ "FEW_ENTRANCES"
1103
+ ],
1104
+ "D": [
1105
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
1106
+ " @^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#8@^^^^^^^^@",
1107
+ " @.............@@@@@@@@@@@@^^^^@@@...&&@@+@",
1108
+ " @..@@@@@@@^^^@@..........@@^^^^@...&&@@26@",
1109
+ " @.@@&^4..@@^^@..@@@@@@@...@^^^^@...&@@...@",
1110
+ " @.@89^4...@^^@.@@^^^^^@@..@^^^^@...&@4444@",
1111
+ " @.@@9666..@^^@.@89644^^@..@^^^^@...&@4444@",
1112
+ " @..@@@@@..@^^@.@@96444444@@...@@242@@4...@",
1113
+ " @^^^^^^^^@@^^@..@@@@@@@@@@....@^^^^@2..22@",
1114
+ "%@@@@@@@@@@^^^@2&2&2&242424242@@^^^^@9..@@@",
1115
+ "%#^^^^^^^^^^@@@@@@@@@@@@@@@@@@#^^^^^@9..#8@",
1116
+ "%@@@@@@@@@@^^^@2&2&2&242424242@@^^^^@9..@@@",
1117
+ " @^^^^^^^^@@^^@..@@@@@@@@@@....@^^^^@2..22@",
1118
+ " @..@@@@@..@^^@.@@96444444@@...@@242@@4...@",
1119
+ " @.@@9666..@^^@.@89644^^@..@^^^^@...&@4444@",
1120
+ " @.@89^4...@^^@.@@^^^^^@@..@^^^^@...&@4444@",
1121
+ " @.@@&^4..@@^^@..@@@@@@@...@^^^^@...&@@...@",
1122
+ " @..@@@@@@@^^^@@..........@@^^^^@...&&@@26@",
1123
+ " @.............@@@@@@@@@@@@^^^^@@@...&&@@+@",
1124
+ " @^^^^^^^^^^^^^^^^^^^^^^^^^^^^^#8@^^^^^^^^@",
1125
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
1126
+ ]
1127
+ },
1128
+ {
1129
+ "name": "Bubbles",
1130
+ "type": "Greater vault",
1131
+ "rating": 35,
1132
+ "rows": 24,
1133
+ "columns": 40,
1134
+ "min-depth": 0,
1135
+ "max-depth": 0,
1136
+ "flags": [
1137
+ "FEW_ENTRANCES"
1138
+ ],
1139
+ "D": [
1140
+ " %%% ",
1141
+ " @@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
1142
+ " @8@#@8@@@8@@@8@@@8@@@8@@@8@@@8@@@8@@@8@",
1143
+ " @@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.#@@",
1144
+ " @@.9.#.9.@.9.#.9.@.9.#.9.@.9.#.9.#.9.@@",
1145
+ " @@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@",
1146
+ " @8@@@8@#@8@#@8@#@8@#@8@#@8@#@8@#@8@#@8@",
1147
+ " @@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.#@@",
1148
+ " @@.9.#.9.@.9.@.9.#.9.@.9.#.9.@.9.@.9..@",
1149
+ " @@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@",
1150
+ " @8@#@8@@@8@#@8@@@8@@@8@@@8@@@8@@@8@#@8@",
1151
+ " @@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.#@@",
1152
+ " @@.9.@.9.#.9.@.9.#.9.#.9.#.9.#.9.@.9.@@",
1153
+ " @@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@",
1154
+ " @8@#@8@#@8@#@8@@@8@@@8@@@8@@@8@#@8@#@8@",
1155
+ " @@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.#@@",
1156
+ " @@.9.#.9.@.9.#.9.#.9.#.9.#.9.#.9.@.9.@@",
1157
+ " @@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@.@@@",
1158
+ " @8@@@8@@@8@@@8@@@8@@@8@@@8@@@8@@@8@@@8@",
1159
+ "%@@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.#@@",
1160
+ "%##.9.#.9.#.9.#.9.#.9.#.9.#.9.#.9.#.9.@@",
1161
+ "%@@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.@@#.#@@",
1162
+ " @8@@@8@@@8@@@8@@@8@@@8@@@8@@@8@@@8@@@8@",
1163
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
1164
+ ]
1165
+ },
1166
+ {
1167
+ "name": "Symmet",
1168
+ "type": "Greater vault",
1169
+ "rating": 20,
1170
+ "rows": 23,
1171
+ "columns": 29,
1172
+ "min-depth": 0,
1173
+ "max-depth": 0,
1174
+ "D": [
1175
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1176
+ "%...........................%",
1177
+ "%....@@@@@@@@@+@@@@@@@@@....%",
1178
+ "%...@@44.....^^^.....44@@...%",
1179
+ "%..@@44.@@@@@@+@@@@@@.44@@..%",
1180
+ "%.@@44.@@9222@6@2229@@.44@@.%",
1181
+ "%.@44.@@84...@.@...48@@.44@.%",
1182
+ "%.@..@@844...@2@...448@@..@.%",
1183
+ "%.@.@@8444.^^@^@^^.4448@@.@.%",
1184
+ "%.@.@94444.^.@^@.^.44449@.@.%",
1185
+ "%.@^@@@@@@@@@+^+@@@@@@@@@^@.%",
1186
+ "%.+^+644442^^^^^^^244446+^+.%",
1187
+ "%.@^@@@@@@@@@+^+@@@@@@@@@^@.%",
1188
+ "%.@.@94444.^.@^@.^.44449@.@.%",
1189
+ "%.@.@@8444.^^@^@^^.4448@@.@.%",
1190
+ "%.@..@@844...@2@...448@@..@.%",
1191
+ "%.@44.@@84...@.@...48@@.44@.%",
1192
+ "%.@@44.@@9222@6@2229@@.44@@.%",
1193
+ "%..@@44.@@@@@@+@@@@@@.44@@..%",
1194
+ "%...@@44.....^^^.....44@@...%",
1195
+ "%....@@@@@@@@@+@@@@@@@@@....%",
1196
+ "%...........................%",
1197
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1198
+ ]
1199
+ },
1200
+ {
1201
+ "name": "V-vault",
1202
+ "type": "Greater vault",
1203
+ "rating": 25,
1204
+ "rows": 22,
1205
+ "columns": 46,
1206
+ "min-depth": 0,
1207
+ "max-depth": 0,
1208
+ "flags": [
1209
+ "FEW_ENTRANCES"
1210
+ ],
1211
+ "D": [
1212
+ "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
1213
+ "@9&&&@...........2...@@@@..4.......4....@&&&9@",
1214
+ "@@@&&@....4..&......@....@..............@&&@@@",
1215
+ "@^^@&&@@...........@@....@@....6......@@&&@^^@",
1216
+ "@..@@&&@@..6......@@...&..@@......2..@@&&@@..@",
1217
+ "@...@@&&@@.....4.@@........@@.......@@&&@@...@",
1218
+ "@2...@@..@@.....@@..6.......@@4....@@..@@....@",
1219
+ "@.....@@..@@2..@@......&......@@..@@..@@.....@",
1220
+ "@.^....@@..@@@@@..2.........2..@@@@..@@....6.@",
1221
+ "@.......@@..@@..............&...@@..@@..2....@",
1222
+ "@........@@^^@@...2...@@...6...@@^^@@........@",
1223
+ "@@@..2...^@@..@@4444@@22@@4444@@..@@^......@@@",
1224
+ "@8@@....^^.@@..@@99@@....@@99@@..@@.^^....@@8@",
1225
+ "@99@@..^^...@@..@@@@.4....@@@@..@@...^^..@@99@",
1226
+ "@...@@^^.....@@..@@...42.4.@@..@@.....^^@@.2.@",
1227
+ "@....@@...6...@@..@@6....6@@..@@.&...2.@@....@",
1228
+ "@6..2.@@.......@@..@@9999@@..@@.......@@...6.@",
1229
+ "@......@@.....&.@@..@@88@@..@@...6...@@......@",
1230
+ "@44..6..@@^.6....@@..@@@@..@@......^@@.6...44@",
1231
+ "@44......^@&&&&&&&@@......@@&&&&&&&@^......44@",
1232
+ "@@@@@@@@@@@@@@@@@@@@@@##@@@@@@@@@@@@@@@@@@@@@@",
1233
+ " %%%% "
1234
+ ]
1235
+ },
1236
+ {
1237
+ "name": "Twisted Cube",
1238
+ "type": "Greater vault",
1239
+ "rating": 20,
1240
+ "rows": 24,
1241
+ "columns": 41,
1242
+ "min-depth": 0,
1243
+ "max-depth": 0,
1244
+ "D": [
1245
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1246
+ "%.......................................%",
1247
+ "%.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.....%",
1248
+ "%.@...............................@@....%",
1249
+ "%.@..@^^@@@@@@@@@@@@@@@@@@@@@.@@@..#@...%",
1250
+ "%.@..@@^^@@94444444444444444@.@2@+..@@..%",
1251
+ "%.@..@+@^^@@9444444444444444+.@92@@..@@.%",
1252
+ "%.@..@4@@^^@@@@@@@@@@@@@@@@@@.@@@@@@..@.%",
1253
+ "%.@..@44@@..................@.@.......@.%",
1254
+ "%.@..@444@@.@@@@@@@@#@@@@@@@@.@@@@@@..@.%",
1255
+ "%.@..@^^^^@.@892&&&244442&&&@.@9&&&@..@.%",
1256
+ "%.@..@2222@.@92&&&248442&&&2@.@^^^^@..@.%",
1257
+ "%.@..@^^^^@.@2&&&244842&&&29@.@2222@..@.%",
1258
+ "%.@..@&&&9@.@&&&244442&&&298@.@^^^^@..@.%",
1259
+ "%.@..@@@@@@.@@@@@@@@#@@@@@@@@.@@444@..@.%",
1260
+ "%.@.......@.@..................@@44@..@.%",
1261
+ "%.@..@@@@@@.@@@@@@@@@@@@@@@@@@^^@@4@..@.%",
1262
+ "%.@@..@@29@.+4444444444444449@@^^@+@..@.%",
1263
+ "%..@@..+@2@.@44444444444444449@@^^@@..@.%",
1264
+ "%...@#..@@@.@@@@@@@@@@@@@@@@@@@@@^^@..@.%",
1265
+ "%....@@...............................@.%",
1266
+ "%.....@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.%",
1267
+ "%.......................................%",
1268
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1269
+ ]
1270
+ },
1271
+ {
1272
+ "name": "Jigsaw",
1273
+ "type": "Greater vault",
1274
+ "rating": 25,
1275
+ "rows": 16,
1276
+ "columns": 49,
1277
+ "min-depth": 0,
1278
+ "max-depth": 0,
1279
+ "D": [
1280
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1281
+ "%...............................................%",
1282
+ "%.@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@.%",
1283
+ "%.@222222222222###99999999###2222222###2&2&2&2@.%",
1284
+ "%.@29999999999222##444444##44444444##&2&2&2&2&@.%",
1285
+ "%.@29999922222222##444444##44444444##2&2&2&2&2@.%",
1286
+ "%.@2999922###22###444###44###6846846###&2###2&@.%",
1287
+ "%.@229922##&##2#4444##9##988##66666666#2##9##2@.%",
1288
+ "%.@#2222##&&&########999#######9999######969##@.%",
1289
+ "%.@##22##&&&&&&&##444444444##8##66##88##646464@.%",
1290
+ "%.@8####2222222##444444444##999####9999##64646@.%",
1291
+ "%.@962626262626##444444444##44444444444##46464@.%",
1292
+ "%.@&&&&&&&&&&&&&##444444444##222222222##464646@.%",
1293
+ "%.@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@.%",
1294
+ "%...............................................%",
1295
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1296
+ ]
1297
+ },
1298
+ {
1299
+ "name": "Hourglass",
1300
+ "type": "Greater vault",
1301
+ "rating": 24,
1302
+ "rows": 37,
1303
+ "columns": 27,
1304
+ "min-depth": 0,
1305
+ "max-depth": 0,
1306
+ "D": [
1307
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1308
+ "%.........................%",
1309
+ "%.......@@@@@+@@@@@.......%",
1310
+ "%...@@@@@...^^^...@@@@@...%",
1311
+ "%..@@4442.@@@+@@@.2444@@..%",
1312
+ "%...@@@@@@@.^^^.@@@@@@@...%",
1313
+ "%...@@&&...6@^@6...&&@@...%",
1314
+ "%....@&&@@@@@^@@@@@&&@....%",
1315
+ "%...@@@4@.........@4@@@...%",
1316
+ "%...@9@9@..&@+@&..@9@9@...%",
1317
+ "%...@9@@@.&@@^@@&.@@@9@...%",
1318
+ "%..@@.&@96@@...@@69@&.@@..%",
1319
+ "%..@..&@@6@@@^@@@6@@&..@..%",
1320
+ "%..@..&&@8@9@+@9@8@&&..@..%",
1321
+ "%..@..&&@@@.^^^.@@@&&..@..%",
1322
+ "%.@@.@@@9@9.@@@.9@9@@@.@@.%",
1323
+ "%.@..@9@8@@.^@^.@@8@9@..@.%",
1324
+ "%.@+@@9@@@@@@^@@@@@@9@@+@.%",
1325
+ "%.@.^^@^^.........^^@^^.@.%",
1326
+ "%.@+@@9@@@@@@^@@@@@@9@@+@.%",
1327
+ "%.@..@9@8@@.^@^.@@8@9@..@.%",
1328
+ "%.@@.@@@9@9.@@@.9@9@@@.@@.%",
1329
+ "%..@..&&@@@.^^^.@@@&&..@..%",
1330
+ "%..@..&&@8@9@+@9@8@&&..@..%",
1331
+ "%..@..&@@6@@@^@@@6@@&..@..%",
1332
+ "%..@@.&@96@@2.2@@69@&.@@..%",
1333
+ "%...@9@@@.&@@^@@&.@@@9@...%",
1334
+ "%...@9@9@..&@+@&..@9@9@...%",
1335
+ "%...@@@4@.........@4@@@...%",
1336
+ "%....@&&@@@@@^@@@@@&&@....%",
1337
+ "%...@@&&...6@^@6...&&@@...%",
1338
+ "%...@@@@@@@.^^^.@@@@@@@...%",
1339
+ "%..@@4442.@@@+@@@.2444@@..%",
1340
+ "%...@@@@@...^^^...@@@@@...%",
1341
+ "%.......@@@@@+@@@@@.......%",
1342
+ "%.........................%",
1343
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1344
+ ]
1345
+ },
1346
+ {
1347
+ "name": "Mazer",
1348
+ "type": "Greater vault",
1349
+ "rating": 26,
1350
+ "rows": 35,
1351
+ "columns": 31,
1352
+ "min-depth": 0,
1353
+ "max-depth": 0,
1354
+ "D": [
1355
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1356
+ "%.............................%",
1357
+ "%........@@@@@@+@@@@@@........%",
1358
+ "%.........@@6.@.@.6@@.........%",
1359
+ "%.......@@@@+@...@+@@@@.......%",
1360
+ "%......@@8#..@@@@@..#8@@......%",
1361
+ "%.....@@@@@.@.@6@.@.@@@@@.....%",
1362
+ "%....@@@8#.@@@^^^@@@.#8@@@....%",
1363
+ "%...@@@@@@@.@.@@@.@.@@@@@@@...%",
1364
+ "%..@@8@@9@@@^^@6@^^@@@9@@8@@..%",
1365
+ "%.@@@#@@@..@@@...@@@..@@@#@@@.%",
1366
+ "%.@4@4@.@@@.@^@@@^@.@@@.@4@4@.%",
1367
+ "%.@@4@.@@@.@@^@6@^@@.@@@.@4@@.%",
1368
+ "%.@4@.@2@@@22@@6@@22@@@2@.@4@.%",
1369
+ "%.@@.@2@.@@@@44@44@@@@.@2@.@@.%",
1370
+ "%.@.@2@.@@@@@2@4@2@@@@@.@2@.@.%",
1371
+ "%.@9@@.@.@@2@@@9@@@2@@.@.@@9@.%",
1372
+ "%.@98@@6@..@449@944@..@6@@89@.%",
1373
+ "%.@9@@.@.@@2@@@9@@@2@@.@.@@9@.%",
1374
+ "%.@.@2@.@@@@@2@4@2@@@@@.@2@.@.%",
1375
+ "%.@@.@2@.@@@@44@44@@@@.@2@.@@.%",
1376
+ "%.@4@.@2@@@22@@6@@22@@@2@.@4@.%",
1377
+ "%.@@4@.@@@.@@^@6@^@@.@@@.@4@@.%",
1378
+ "%.@4@4@.@@@.@^@@@^@.@@@.@4@4@.%",
1379
+ "%.@@@#@@@..@@@...@@@..@@@#@@@.%",
1380
+ "%..@@8@@9@@@^^@6@^^@@@9@@8@@..%",
1381
+ "%...@@@@@@@.@.@@@.@.@@@@@@@...%",
1382
+ "%....@@@8#.@@@^^^@@@.#8@@@....%",
1383
+ "%.....@@@@@.@.@6@.@.@@@@@.....%",
1384
+ "%......@@8#..@@@@@..#8@@......%",
1385
+ "%.......@@@@+@...@+@@@@.......%",
1386
+ "%.........@@6.@.@.6@@.........%",
1387
+ "%........@@@@@@+@@@@@@........%",
1388
+ "%.............................%",
1389
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1390
+ ]
1391
+ },
1392
+ {
1393
+ "name": "Orb",
1394
+ "type": "Greater vault",
1395
+ "rating": 16,
1396
+ "rows": 27,
1397
+ "columns": 27,
1398
+ "min-depth": 0,
1399
+ "max-depth": 0,
1400
+ "D": [
1401
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1402
+ "%.........................%",
1403
+ "%.........#@@@@@#.........%",
1404
+ "%.......@@@44444@@@.......%",
1405
+ "%......@@@@44444@@@@......%",
1406
+ "%.....@@@@@@444@@@@@@.....%",
1407
+ "%....@@@@@@@+@+@@@@@@@....%",
1408
+ "%...@9@@@@^^^^^^^@@@@9@...%",
1409
+ "%..@@@@8@6@+@@@+@6@8@@@@..%",
1410
+ "%..@22@9@@@^@^@^@@@9@22@..%",
1411
+ "%..@22@@+@@@^@^@@@+@@22@..%",
1412
+ "%.@@.@@@@.@.@6@.@.@@@@.@@.%",
1413
+ "%.@@+@@9@@^@@9@@^@@9@@+@@.%",
1414
+ "%.+^^+^^^^^@888@^^^^^+^^+.%",
1415
+ "%.@@+@@9@@^@@9@@^@@9@@+@@.%",
1416
+ "%.@@.@@@@.@.@6@.@.@@@@.@@.%",
1417
+ "%..@22@@+@@@^@^@@@+@@22@..%",
1418
+ "%..@22@9@@@^@^@^@@@9@22@..%",
1419
+ "%..@@@@8@6@+@@@+@6@8@@@@..%",
1420
+ "%...@9@@@@^^^^^^^@@@@9@...%",
1421
+ "%....@@@@@@@+@+@@@@@@@....%",
1422
+ "%.....@@@@@@444@@@@@@.....%",
1423
+ "%......@@@@44444@@@@......%",
1424
+ "%.......@@@44444@@@.......%",
1425
+ "%.........#@@@@@#.........%",
1426
+ "%.........................%",
1427
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1428
+ ]
1429
+ },
1430
+ {
1431
+ "name": "Interstices",
1432
+ "type": "Greater vault",
1433
+ "rating": 22,
1434
+ "rows": 19,
1435
+ "columns": 45,
1436
+ "min-depth": 0,
1437
+ "max-depth": 0,
1438
+ "D": [
1439
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1440
+ "%...........................................%",
1441
+ "%.......@@@@@@@@@@@@^^^^^@@@@@@@@@@@@.......%",
1442
+ "%......@@@@9@9@2@6@@^^^^^@@6@2@9@9@@@@......%",
1443
+ "%.....@@@@&@&@@2@6@.@.@.@..6@2@@&@&@@@@.....%",
1444
+ "%...@@@@9@@@@&@+@@4@@.@.@@4@@+@&@@@@9@@@@...%",
1445
+ "%..@@894@@9@&&@.@44@2@6@2@44@.@&&@9@@498@@..%",
1446
+ "%.@@@@@#@^@@&@@.@@@@.@.@.@@@@.@@&@@^@#@@@@@.%",
1447
+ "%.@@8@@6@@^@@.@@^@@.@^^^@.@@^@@6@@^@@6@@8@@.%",
1448
+ "%.@89#92+2.+..+^^+..@^@^@..+^^+.2+.2+29#98@.%",
1449
+ "%.@@8@@6@@^@@.@@^@@.@^^^@.@@^@@6@@^@@6@@8@@.%",
1450
+ "%.@@@@@#@^@@&@@.@@@@.@.@.@@@@.@@&@@^@#@@@@@.%",
1451
+ "%..@@894@@9@&&@.@44@2@6@2@44@.@&&@9@@498@@..%",
1452
+ "%...@@@@9@@@@&@+@@4@@.@.@@4@@+@&@@@@9@@@@...%",
1453
+ "%.....@@@@&@&@@2@6@.@.@.@.@6@2@@&@&@@@@.....%",
1454
+ "%......@@@@9@9@2@6@@^^^^^@@6@2@9@9@@@@......%",
1455
+ "%.......@@@@@@@@@@@@^^^^^@@@@@@@@@@@@.......%",
1456
+ "%...........................................%",
1457
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1458
+ ]
1459
+ },
1460
+ {
1461
+ "name": "Sphere",
1462
+ "type": "Greater vault",
1463
+ "rating": 25,
1464
+ "rows": 25,
1465
+ "columns": 47,
1466
+ "min-depth": 0,
1467
+ "max-depth": 0,
1468
+ "D": [
1469
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1470
+ "%.............................................%",
1471
+ "%......@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@......%",
1472
+ "%.....@@844@@@998@@@@98889@@@@899@@@448@@.....%",
1473
+ "%....@@844@@44449@99@@@#@@@99@94444@@448@@....%",
1474
+ "%....@8444@444449@.@@9#8#9@@.@944444@4448@....%",
1475
+ "%....@4444@..2@@@@#@@9@@@9@@#@@@@2..@4444@....%",
1476
+ "%....@4@@@#.2@@44@66#@@9@@#66@44@@2.#@@@4@....%",
1477
+ "%....@@@.^^2@@44@@#@@@&&&@@@#@@44@@2^^.@@@....%",
1478
+ "%....@@..@@@@44@@@22@@&&&@@22@@@44@@@@..@@....%",
1479
+ "%....@@+@@22@@+@9@2@@^@.@^@@2@9@+@@22@@+@@....%",
1480
+ "%....@@^^^^^@@.2.@#@^^@9@^^@#@.2.@@^^^^^@@....%",
1481
+ "%....+^^^^^^+^262+^^^^9@9^^^^+262^+^^^^^^+....%",
1482
+ "%....@@^^^^^@@.2.@#@^^@9@^^@#@.2.@@^^^^^@@....%",
1483
+ "%....@@+@@22@@+@9@2@@^@.@^@@2@9@+@@22@@+@@....%",
1484
+ "%....@@..@@@@44@@@22@@&&&@@22@@@44@@@@..@@....%",
1485
+ "%....@@@.^^2@@44@@#@@@&&&@@@#@@44@@2^^.@@@....%",
1486
+ "%....@4@@@#.2@@44@66#@@9@@#66@44@@2.#@@@4@....%",
1487
+ "%....@4444@..2@@@@#@@9@@@9@@#@@@@2..@4444@....%",
1488
+ "%....@8444@444449@.@@9#8#9@@.@944444@4448@....%",
1489
+ "%....@@844@@44449@99@@@#@@@99@94444@@448@@....%",
1490
+ "%.....@@844@@@998@@@@98889@@@@899@@@448@@.....%",
1491
+ "%......@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@......%",
1492
+ "%.............................................%",
1493
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1494
+ ]
1495
+ },
1496
+ {
1497
+ "name": "Hellpit",
1498
+ "type": "Greater vault",
1499
+ "rating": 20,
1500
+ "rows": 19,
1501
+ "columns": 60,
1502
+ "min-depth": 0,
1503
+ "max-depth": 0,
1504
+ "D": [
1505
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
1506
+ "%..........................................................%",
1507
+ "%.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.%",
1508
+ "%.@662....#8.#9....^^222222222222###.^^44......+8&9+44444@.%",
1509
+ "%.@626.............^^................^^44......+9&9+44444@.%",
1510
+ "%.@266.............^^66666666666###..^^44......+9&9+44844@.%",
1511
+ "%.@.....#8....#9...^^................^^44......+9&9+44444@.%",
1512
+ "%.@................^^222222222222###.^^44.22222+9&9+44444@.%",
1513
+ "%.@.......6666.....^^................^^44.26662+9&9+44444@.%",
1514
+ "%.#....#8.6666.#9..^^66666666666###..^^44.26962+8&9+44844@.%",
1515
+ "%.@.......6666.....^^................^^44.26662+9&9+44444@.%",
1516
+ "%.@................^^222222222222###.^^44.22222+9&9+44444@.%",
1517
+ "%.@.....#8....#9...^^................^^44......+9&9+44444@.%",
1518
+ "%.@266.............^^66666666666###..^^44......+9&9+44844@.%",
1519
+ "%.@626.............^^................^^44......+9&9+44444@.%",
1520
+ "%.@662....#8.#9....^^222222222222###.^^44......+8&9+44444@.%",
1521
+ "%.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.%",
1522
+ "%..........................................................%",
1523
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
1524
+ ]
1525
+ },
1526
+ {
1527
+ "name": "Target Practice",
1528
+ "type": "Greater vault",
1529
+ "rating": 20,
1530
+ "rows": 18,
1531
+ "columns": 60,
1532
+ "min-depth": 0,
1533
+ "max-depth": 0,
1534
+ "flags": [
1535
+ "FEW_ENTRANCES"
1536
+ ],
1537
+ "D": [
1538
+ "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%",
1539
+ "@6..&..&..&..&..&..&..&..&..&..&..&.......................#%",
1540
+ "@6@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.#%",
1541
+ "@6#89@@@@@...92..6.9....2....##..........#....#644444444@.#%",
1542
+ "@6@9@@444@@......6..........@@..........@@....@6....@@@.@.#%",
1543
+ "@6@@@4@@@4@@....&.4.2....&.@@&&&&&&&&&&&@.....@6..@@@2+.@.#%",
1544
+ "@9@@4@@6@@4@.........49...@@222222222229@66666@6@@@&&2+.@.#%",
1545
+ "@9@@4@999@4@2.6..4.......@@@@@@@@@@@@@@@@@@+@@@@@@&@@@@.@.#%",
1546
+ "@8@@4#989@4#.....9......@@899444444444#4444444@@@2&266@.#.#%",
1547
+ "@9@@4#989@4#.......2..6.@@899444444444#4444444@@@2&266@.#.#%",
1548
+ "@9@@4@999@4@...2.2.......@@@@@@@@@@@@@@@@@@+@@@@@@&@@@@.@.#%",
1549
+ "@6@@4@@6@@4@..4...........@@222222222229@66666@6@@@&&2+.@.#%",
1550
+ "@6@@@4@@@4@@......6..6.....@@&&&&&&&&&&&@.....@6..@@@2+.@.#%",
1551
+ "@6@9@@444@@.....9...........@@..........@@....@6....@@@.@.#%",
1552
+ "@6#89@@@@@..2..........9.4...##..........#....#644444444@.#%",
1553
+ "@6@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.#%",
1554
+ "@6..&..&..&..&..&..&..&..&..&..&..&.......................#%",
1555
+ "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%"
1556
+ ]
1557
+ },
1558
+ {
1559
+ "name": "Castle Death",
1560
+ "type": "Greater vault",
1561
+ "rating": 35,
1562
+ "rows": 18,
1563
+ "columns": 59,
1564
+ "min-depth": 0,
1565
+ "max-depth": 0,
1566
+ "flags": [
1567
+ "FEW_ENTRANCES"
1568
+ ],
1569
+ "D": [
1570
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
1571
+ " @84444444444444444444444444444444444444+@@....+@@...@&88&@",
1572
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@....@@@....6@&&&&@",
1573
+ " @.........................................@@@....2.6@&&&&@",
1574
+ " @+@@@@@+@@@@@+@@@@@+@@@@@+@@@@@+@@@@@+@@@@@....6.2.6@&&&&@",
1575
+ " @999@..9..@22222@44444@66666@..2..@666@@@....2.6.2.6@&99&@",
1576
+ " @668@.2.2.@92229@44444@96969@99.99@9@@@.@..6.2.6.2.6@&&&&@",
1577
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...@..6.2.6.2.6@@##@@",
1578
+ "%+^...2.2.2+...6.6.6+...66666+.....99+...+..6.2.6.2.8+^^^^@",
1579
+ "%+^...2.2.2+...6.6.6+...66666+.....99+...+..6.2.6.2.8+^^^^@",
1580
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...@..6.2.6.2.6@@##@@",
1581
+ " @668@.2.2.@92229@44444@96969@99.99@9@@@.@..6.2.6.2.6@&&&&@",
1582
+ " @999@..9..@22222@44444@66666@..2..@666@@@....2.6.2.6@&99&@",
1583
+ " @+@@@@@+@@@@@+@@@@@+@@@@@+@@@@@+@@@@@+@@@@@....6.2.6@&&&&@",
1584
+ " @.........................................@@@....2.6@&&&&@",
1585
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@....@@@....6@&&&&@",
1586
+ " @44444444444444444444444444444444444444+@@....+@@...@&88&@",
1587
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
1588
+ ]
1589
+ },
1590
+ {
1591
+ "name": "The Reward is Worth It",
1592
+ "type": "Greater vault",
1593
+ "rating": 20,
1594
+ "rows": 15,
1595
+ "columns": 61,
1596
+ "min-depth": 0,
1597
+ "max-depth": 0,
1598
+ "flags": [
1599
+ "FEW_ENTRANCES"
1600
+ ],
1601
+ "D": [
1602
+ " %%%% %%% %%%% ",
1603
+ "@@@@@@@@@@@@@@@##@@@@@@@@@@@@@#@@@@@@@@@@@@@##@@@@@@@@@@@@@@@",
1604
+ "@66666666666.@@99@@.......444@^@444.......@@99@@.66666666666@",
1605
+ "@6@@@@@@@@@@..@@@@...@@@@.444@^@444.@@@@...@@@@..@@@@@@@@@@6@",
1606
+ "@6@8888888@@@..@@...@@@6@@444@^@444@@6@@@...@@..@@@8888888@6@",
1607
+ "@6@88899999@@@.....@@@666@..2@^@2..@666@@@.....@@@99999888@6@",
1608
+ "@6@8899.....@@@...@@@66666..2@^@2..66666@@@...@@@.....9988@6@",
1609
+ "@6@899.......@@@...@@@......2@^@2......@@@...@@@.......998@6@",
1610
+ "@+@@@...@@@222@@@^^^@@@.....2@^@2.....@@@^^^@@@222@@@...@@@+@",
1611
+ "@66@@@.@@@@2222@@@^^^@@@....2@^@2....@@@^^^@@@2222@@@@.@@@66@",
1612
+ "@^^^^@@@88@^^^^^^@@@^^^@@@..2@^@2..@@@^^^@@@^^^^^^@88@@@^^^^@",
1613
+ "@22222222@@^^^^^^^^@@@...@@@2@^@2@@@...@@@^^^^^^^^@@22222222@",
1614
+ "@4444444@@44444444444@@@222@@@^@@@222@@@44444444444@@4444444@",
1615
+ "@444444@#66666666666666@@@222222222@@@66666666666666#@444444@",
1616
+ "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"
1617
+ ]
1618
+ },
1619
+ {
1620
+ "name": "Round",
1621
+ "type": "Interesting room",
1622
+ "rating": 0,
1623
+ "rows": 9,
1624
+ "columns": 11,
1625
+ "min-depth": 0,
1626
+ "max-depth": 0,
1627
+ "D": [
1628
+ " %%%%%%% ",
1629
+ " %%.....%% ",
1630
+ "%%.......%%",
1631
+ "%.1.......%",
1632
+ "%....1....%",
1633
+ "%.........%",
1634
+ "%%.......%%",
1635
+ " %%...1.%% ",
1636
+ " %%%%%%% "
1637
+ ]
1638
+ },
1639
+ {
1640
+ "name": "House 1",
1641
+ "type": "Interesting room",
1642
+ "rating": 0,
1643
+ "rows": 9,
1644
+ "columns": 12,
1645
+ "min-depth": 0,
1646
+ "max-depth": 0,
1647
+ "D": [
1648
+ "%%%%%%%%%%%%",
1649
+ "%.1.#......%",
1650
+ "%...#..1...%",
1651
+ "%##+#......%",
1652
+ "%...####+##%",
1653
+ "%##+#.1+...%",
1654
+ "%......#...%",
1655
+ "%......#...%",
1656
+ "%%%%%%%%%%%%"
1657
+ ]
1658
+ },
1659
+ {
1660
+ "name": "House 2",
1661
+ "type": "Interesting room",
1662
+ "rating": 0,
1663
+ "rows": 9,
1664
+ "columns": 13,
1665
+ "min-depth": 0,
1666
+ "max-depth": 0,
1667
+ "D": [
1668
+ "%%%%%%%%%%%%%",
1669
+ "%..##...##1.%",
1670
+ "%..+.....#+#%",
1671
+ "%..#.###.+..%",
1672
+ "%###...1.#..%",
1673
+ "%..+.#.#.###%",
1674
+ "%1.#.#.#.+..%",
1675
+ "%..#.....#..%",
1676
+ "%%%%%%%%%%%%%"
1677
+ ]
1678
+ },
1679
+ {
1680
+ "name": "House 3",
1681
+ "type": "Interesting room",
1682
+ "rating": 0,
1683
+ "rows": 8,
1684
+ "columns": 10,
1685
+ "min-depth": 0,
1686
+ "max-depth": 0,
1687
+ "D": [
1688
+ "%%%%%%%%%%",
1689
+ "%1#.##.#.%",
1690
+ "%#+####+#%",
1691
+ "%.#....#.%",
1692
+ "%.#1.1.#.%",
1693
+ "%#+####+#%",
1694
+ "%.#....#.%",
1695
+ "%%%%%%%%%%"
1696
+ ]
1697
+ },
1698
+ {
1699
+ "name": "House 4",
1700
+ "type": "Interesting room",
1701
+ "rating": 0,
1702
+ "rows": 11,
1703
+ "columns": 12,
1704
+ "min-depth": 0,
1705
+ "max-depth": 0,
1706
+ "D": [
1707
+ "%%%%%%%%%%%%",
1708
+ "%...#.#....%",
1709
+ "%.1.#.#....%",
1710
+ "%...+.+.1..%",
1711
+ "%...#.#....%",
1712
+ "%.#.#.#+###%",
1713
+ "%...+.+..1.%",
1714
+ "%####.#....%",
1715
+ "%...#.#+###%",
1716
+ "%.1........%",
1717
+ "%%%%%%%%%%%%"
1718
+ ]
1719
+ },
1720
+ {
1721
+ "name": "Crescent",
1722
+ "type": "Interesting room",
1723
+ "rating": 0,
1724
+ "rows": 10,
1725
+ "columns": 12,
1726
+ "min-depth": 0,
1727
+ "max-depth": 0,
1728
+ "D": [
1729
+ " %%%%%% ",
1730
+ " %%%%.1..%%",
1731
+ " %%....###.%",
1732
+ "%%...#####.%",
1733
+ "%...#######%",
1734
+ "%.1.#######%",
1735
+ "%%...#####.%",
1736
+ " %%....###1%",
1737
+ " %%%%....%%",
1738
+ " %%%%%% "
1739
+ ]
1740
+ },
1741
+ {
1742
+ "name": "Moot hall",
1743
+ "type": "Interesting room",
1744
+ "rating": 0,
1745
+ "rows": 11,
1746
+ "columns": 12,
1747
+ "min-depth": 0,
1748
+ "max-depth": 0,
1749
+ "D": [
1750
+ "%%%%%%%%%%%%",
1751
+ "%1#......#1%",
1752
+ "%#+.####.+#%",
1753
+ "%#.#....#.#%",
1754
+ "%....##....%",
1755
+ "%#.#.##.#.#%",
1756
+ "%..#.##.#..%",
1757
+ "%#.#1##.#.#%",
1758
+ "%....##....%",
1759
+ "%#.#....#.#%",
1760
+ "%%%%%%%%%%%%"
1761
+ ]
1762
+ },
1763
+ {
1764
+ "name": "Small atrium -ES-",
1765
+ "type": "Interesting room",
1766
+ "rating": 0,
1767
+ "rows": 11,
1768
+ "columns": 12,
1769
+ "min-depth": 0,
1770
+ "max-depth": 0,
1771
+ "D": [
1772
+ "%%%%%%%%%%% ",
1773
+ "%.........% ",
1774
+ "%.p.......% ",
1775
+ "%../////..%%",
1776
+ "%../.../.p.%",
1777
+ "%../.;./...%",
1778
+ "%../.../...%",
1779
+ "%../////.S.%",
1780
+ "%...h......%",
1781
+ "%%%........%",
1782
+ " %%%%%%%%%%"
1783
+ ]
1784
+ },
1785
+ {
1786
+ "name": "Hourglass",
1787
+ "type": "Interesting room",
1788
+ "rating": 0,
1789
+ "rows": 11,
1790
+ "columns": 9,
1791
+ "min-depth": 0,
1792
+ "max-depth": 0,
1793
+ "D": [
1794
+ "%%%%%%%%%",
1795
+ "%.......%",
1796
+ "%..1....%",
1797
+ "%#.....#%",
1798
+ " %#...#% ",
1799
+ " %#.#% ",
1800
+ " %#...#% ",
1801
+ "%#.1...#%",
1802
+ "%....1..%",
1803
+ "%.......%",
1804
+ "%%%%%%%%%"
1805
+ ]
1806
+ },
1807
+ {
1808
+ "name": "Birds of a feather",
1809
+ "type": "Interesting room",
1810
+ "rating": 0,
1811
+ "rows": 5,
1812
+ "columns": 5,
1813
+ "min-depth": 0,
1814
+ "max-depth": 0,
1815
+ "D": [
1816
+ "%%%%%",
1817
+ "%BBB%",
1818
+ "%BBB%",
1819
+ "%BBB%",
1820
+ "%%%%%"
1821
+ ]
1822
+ },
1823
+ {
1824
+ "name": "Catacomb",
1825
+ "type": "Interesting room",
1826
+ "rating": 0,
1827
+ "rows": 11,
1828
+ "columns": 13,
1829
+ "min-depth": 0,
1830
+ "max-depth": 0,
1831
+ "D": [
1832
+ "%%%%%%%%%%%%%",
1833
+ "%...........%",
1834
+ "%#.###.###.#%",
1835
+ "%..#1#.#1#..%",
1836
+ "%#.##^.^##.#%",
1837
+ "%...........%",
1838
+ "%#.##^.^##.#%",
1839
+ "%..#1#.#1#..%",
1840
+ "%#.###.###.#%",
1841
+ "%...........%",
1842
+ "%%%%%%%%%%%%%"
1843
+ ]
1844
+ },
1845
+ {
1846
+ "name": "Pillars",
1847
+ "type": "Interesting room",
1848
+ "rating": 0,
1849
+ "rows": 11,
1850
+ "columns": 18,
1851
+ "min-depth": 0,
1852
+ "max-depth": 0,
1853
+ "D": [
1854
+ "%%%%%%%%%%%%%%%%%%",
1855
+ "%................%",
1856
+ "%.#....#.......#.%",
1857
+ "%..........#..1..%",
1858
+ "%...1............%",
1859
+ "%.#......#.......%",
1860
+ "%..........1.....%",
1861
+ "%...#.........#..%",
1862
+ "%.#.....#........%",
1863
+ "%..........#.....%",
1864
+ "%%%%%%%%%%%%%%%%%%"
1865
+ ]
1866
+ },
1867
+ {
1868
+ "name": "Cross",
1869
+ "type": "Interesting room",
1870
+ "rating": 0,
1871
+ "rows": 11,
1872
+ "columns": 15,
1873
+ "min-depth": 0,
1874
+ "max-depth": 0,
1875
+ "D": [
1876
+ " %%%%%%%%% ",
1877
+ " %.......% ",
1878
+ "%%%%...#...%%%%",
1879
+ "%......#.1....%",
1880
+ "%.....###.....%",
1881
+ "%..#########..%",
1882
+ "%.1...###.1...%",
1883
+ "%......#1.....%",
1884
+ "%%%%...#...%%%%",
1885
+ " %.......% ",
1886
+ " %%%%%%%%% "
1887
+ ]
1888
+ },
1889
+ {
1890
+ "name": "Cross/diamond",
1891
+ "type": "Interesting room",
1892
+ "rating": 0,
1893
+ "rows": 11,
1894
+ "columns": 17,
1895
+ "min-depth": 0,
1896
+ "max-depth": 0,
1897
+ "D": [
1898
+ " %%%% ",
1899
+ " %%..%% ",
1900
+ " %%#....#%% ",
1901
+ " %1#....#1% ",
1902
+ "%%%##+....+##%%%%",
1903
+ "%...............%",
1904
+ "%%%##+....+##%%%%",
1905
+ " %1#....#1% ",
1906
+ " %%#....#%% ",
1907
+ " %%..%% ",
1908
+ " %%%% "
1909
+ ]
1910
+ },
1911
+ {
1912
+ "name": "Rayed sun",
1913
+ "type": "Interesting room",
1914
+ "rating": 0,
1915
+ "rows": 11,
1916
+ "columns": 11,
1917
+ "min-depth": 0,
1918
+ "max-depth": 0,
1919
+ "D": [
1920
+ "%%%%%%%%%%%",
1921
+ "%.........%",
1922
+ "%.#..#..#.%",
1923
+ "%..#.#.#.1%",
1924
+ "%...#+#...%",
1925
+ "%.##+4+##.%",
1926
+ "%...#+#...%",
1927
+ "%..#.#.#..%",
1928
+ "%.#..#..#.%",
1929
+ "%...1.....%",
1930
+ "%%%%%%%%%%%"
1931
+ ]
1932
+ },
1933
+ {
1934
+ "name": "Thrown-together squares",
1935
+ "type": "Interesting room",
1936
+ "rating": 0,
1937
+ "rows": 11,
1938
+ "columns": 18,
1939
+ "min-depth": 0,
1940
+ "max-depth": 0,
1941
+ "D": [
1942
+ " %%%%%%% ",
1943
+ " %%%%%%%.....% ",
1944
+ " %...........% ",
1945
+ " %......1....% ",
1946
+ "%%%...........%%%%",
1947
+ "%.............1..%",
1948
+ "%%...............%",
1949
+ " %..1.%%%%%%+%%%%%",
1950
+ " %....% %4% ",
1951
+ " %....% %%% ",
1952
+ " %%%%%% "
1953
+ ]
1954
+ },
1955
+ {
1956
+ "name": "Diagonal 1",
1957
+ "type": "Interesting room",
1958
+ "rating": 0,
1959
+ "rows": 11,
1960
+ "columns": 12,
1961
+ "min-depth": 0,
1962
+ "max-depth": 0,
1963
+ "D": [
1964
+ " %%%%%%%%",
1965
+ " %......%",
1966
+ " %%......%",
1967
+ " %.1....%%",
1968
+ " %%......% ",
1969
+ " %......%% ",
1970
+ " %%......% ",
1971
+ " %1.1...%% ",
1972
+ "%%......% ",
1973
+ "%......%% ",
1974
+ "%%%%%%%% "
1975
+ ]
1976
+ },
1977
+ {
1978
+ "name": "Diagonal 2",
1979
+ "type": "Interesting room",
1980
+ "rating": 0,
1981
+ "rows": 11,
1982
+ "columns": 12,
1983
+ "min-depth": 0,
1984
+ "max-depth": 0,
1985
+ "D": [
1986
+ "%%%%%%%% ",
1987
+ "%......%% ",
1988
+ "%%......% ",
1989
+ " %......%% ",
1990
+ " %%..1...% ",
1991
+ " %......%% ",
1992
+ " %%..1...% ",
1993
+ " %......%%",
1994
+ " %%....1.%",
1995
+ " %......%",
1996
+ " %%%%%%%%"
1997
+ ]
1998
+ },
1999
+ {
2000
+ "name": "Triple diamond",
2001
+ "type": "Interesting room",
2002
+ "rating": 0,
2003
+ "rows": 10,
2004
+ "columns": 20,
2005
+ "min-depth": 0,
2006
+ "max-depth": 0,
2007
+ "D": [
2008
+ " %%% %%% %%% ",
2009
+ " %%.%% %%.%% %%.%%% ",
2010
+ " %...% %...% %....%%",
2011
+ "%%...%%%...%%%+@+@.%",
2012
+ "%...1..........@1@.%",
2013
+ "%..............@1@.%",
2014
+ "%%...%%%...%%%+@+@.%",
2015
+ " %...% %...% %....%%",
2016
+ " %%.%% %%.%% %%.%%% ",
2017
+ " %%% %%% %%% "
2018
+ ]
2019
+ },
2020
+ {
2021
+ "name": "Baby dragon hatchery -ES-",
2022
+ "type": "Interesting room",
2023
+ "rating": 0,
2024
+ "rows": 11,
2025
+ "columns": 12,
2026
+ "min-depth": 8,
2027
+ "max-depth": 16,
2028
+ "D": [
2029
+ "%%%%%%%%%%%%",
2030
+ "%.........1%",
2031
+ "%..:.......%",
2032
+ "%...:dd:...%",
2033
+ "%...:`d#...%",
2034
+ "%...dd`d...%",
2035
+ "%...#...:.:%",
2036
+ "%..........%",
2037
+ "%.....=....%",
2038
+ "%..........%",
2039
+ "%%%%%%%%%%%%"
2040
+ ]
2041
+ },
2042
+ {
2043
+ "name": "Four pointed star",
2044
+ "type": "Interesting room",
2045
+ "rating": 0,
2046
+ "rows": 11,
2047
+ "columns": 17,
2048
+ "min-depth": 0,
2049
+ "max-depth": 0,
2050
+ "D": [
2051
+ "%%%% %%%%",
2052
+ "%..%%% %%%..%",
2053
+ "%%...%%% %%%...%%",
2054
+ " %%....%%%..1.%% ",
2055
+ " %%.1.......%% ",
2056
+ " %.........% ",
2057
+ " %%.........%% ",
2058
+ " %%....%%%....%% ",
2059
+ "%%...%%% %%%.1.%%",
2060
+ "%..%%% %%%..%",
2061
+ "%%%% %%%%"
2062
+ ]
2063
+ },
2064
+ {
2065
+ "name": "Oblong",
2066
+ "type": "Interesting room",
2067
+ "rating": 0,
2068
+ "rows": 9,
2069
+ "columns": 24,
2070
+ "min-depth": 0,
2071
+ "max-depth": 0,
2072
+ "D": [
2073
+ " %%%%%%%%%%%%%% ",
2074
+ " %%%%............%%%% ",
2075
+ "%%%..................%%%",
2076
+ "%.....1............1...%",
2077
+ "%............1.........%",
2078
+ "%......................%",
2079
+ "%%%..................%%%",
2080
+ " %%%%............%%%% ",
2081
+ " %%%%%%%%%%%%%% "
2082
+ ]
2083
+ },
2084
+ {
2085
+ "name": "Easy maze",
2086
+ "type": "Interesting room",
2087
+ "rating": 0,
2088
+ "rows": 12,
2089
+ "columns": 15,
2090
+ "min-depth": 0,
2091
+ "max-depth": 0,
2092
+ "D": [
2093
+ "%%%%%%%%%%%%%%%",
2094
+ "%.............%",
2095
+ "%...@@@@@@@@@.%",
2096
+ "%.@@@.......+.%",
2097
+ "%.@.@.@@@@..@.%",
2098
+ "%.@.@.@11@..@.%",
2099
+ "%.@.@.@^@@@.@.%",
2100
+ "%.+.@.@...1.@.%",
2101
+ "%.@@.@@@@@@@@.%",
2102
+ "%..@@@........%",
2103
+ "%%.....%%%%%%%%",
2104
+ " %%%%%%% "
2105
+ ]
2106
+ },
2107
+ {
2108
+ "name": "Chambered diamond",
2109
+ "type": "Interesting room",
2110
+ "rating": 0,
2111
+ "rows": 10,
2112
+ "columns": 12,
2113
+ "min-depth": 0,
2114
+ "max-depth": 0,
2115
+ "D": [
2116
+ " %%%%%% ",
2117
+ " %....% ",
2118
+ " %.1..% ",
2119
+ "%%%%#+##%%%%",
2120
+ "%...#^.....%",
2121
+ "%.1.+.1....%",
2122
+ "%%%%#+##%%%%",
2123
+ " %....% ",
2124
+ " %....% ",
2125
+ " %%%%%% "
2126
+ ]
2127
+ },
2128
+ {
2129
+ "name": "Poor village",
2130
+ "type": "Interesting room",
2131
+ "rating": 0,
2132
+ "rows": 11,
2133
+ "columns": 26,
2134
+ "min-depth": 0,
2135
+ "max-depth": 0,
2136
+ "D": [
2137
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%",
2138
+ "%........................%",
2139
+ "%.###......#####..######.%",
2140
+ "%.#.+......#p..#..#..#1#.%",
2141
+ "%.#1#......##+##..#..+##.%",
2142
+ "%.####+......^....+^...#.%",
2143
+ "%.#h..#..##+##....#....#.%",
2144
+ "%.#..&#..#..1#....######.%",
2145
+ "%.#####..#####...........%",
2146
+ "%........................%",
2147
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%"
2148
+ ]
2149
+ },
2150
+ {
2151
+ "name": "Tree, crown, and seven stars",
2152
+ "type": "Interesting room",
2153
+ "rating": 0,
2154
+ "rows": 11,
2155
+ "columns": 26,
2156
+ "min-depth": 0,
2157
+ "max-depth": 0,
2158
+ "D": [
2159
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%",
2160
+ "%.........@1@1@...@......%",
2161
+ "%....@.....@@@...........%",
2162
+ "%.....................@..%",
2163
+ "%.......@@@@@@@@@........%",
2164
+ "%.@...@@@@@@@@@@@@@......%",
2165
+ "%.....@@@@@@@@@@@@@......%",
2166
+ "%......@@@.@@@.@@@....@..%",
2167
+ "%...@......@@@...........%",
2168
+ "%...........@.....@......%",
2169
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%"
2170
+ ]
2171
+ },
2172
+ {
2173
+ "name": "Just plain big",
2174
+ "type": "Interesting room",
2175
+ "rating": 0,
2176
+ "rows": 11,
2177
+ "columns": 33,
2178
+ "min-depth": 0,
2179
+ "max-depth": 0,
2180
+ "D": [
2181
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
2182
+ "%...............................%",
2183
+ "%...........1...................%",
2184
+ "%...............................%",
2185
+ "%...............................%",
2186
+ "%...............................%",
2187
+ "%.....................1.........%",
2188
+ "%...............................%",
2189
+ "%......1........................%",
2190
+ "%...............................%",
2191
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
2192
+ ]
2193
+ },
2194
+ {
2195
+ "name": "Eye",
2196
+ "type": "Interesting room",
2197
+ "rating": 0,
2198
+ "rows": 11,
2199
+ "columns": 26,
2200
+ "min-depth": 0,
2201
+ "max-depth": 0,
2202
+ "D": [
2203
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%",
2204
+ "%........................%",
2205
+ "%........@@@@@@@@........%",
2206
+ "%....@@@@........@@@@....%",
2207
+ "%..@@.....@@+@@@.....@@..%",
2208
+ "%.@......@@@11@@@......@.%",
2209
+ "%..@@.....@@@@@@.....@@..%",
2210
+ "%....@@@@........@@@@....%",
2211
+ "%........@@@@@@@@........%",
2212
+ "%........................%",
2213
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%"
2214
+ ]
2215
+ },
2216
+ {
2217
+ "name": "Sectioned off",
2218
+ "type": "Interesting room",
2219
+ "rating": 0,
2220
+ "rows": 11,
2221
+ "columns": 20,
2222
+ "min-depth": 0,
2223
+ "max-depth": 0,
2224
+ "D": [
2225
+ "%%%%%%% %%%%%%%",
2226
+ "%.....% %.....%",
2227
+ "%.1...% %..1..%",
2228
+ "%....#%%%%%%%%.....%",
2229
+ "%%%%%+.......+%%%%%%",
2230
+ " %..1%%%%.%% ",
2231
+ " %...% %.% ",
2232
+ "%%%%%#+#% %.%%%%%%%",
2233
+ "%.......% %..+....%",
2234
+ "%.1.....% %%%%....%",
2235
+ "%%%%%%%%% %%%%%%"
2236
+ ]
2237
+ },
2238
+ {
2239
+ "name": "Twisted",
2240
+ "type": "Interesting room",
2241
+ "rating": 0,
2242
+ "rows": 10,
2243
+ "columns": 28,
2244
+ "min-depth": 0,
2245
+ "max-depth": 0,
2246
+ "D": [
2247
+ " %%%%%%% %%%%%%%%%% ",
2248
+ " %.....%%%%%........%%%% ",
2249
+ " %%%.1..##.............%% ",
2250
+ " %............1.......%% ",
2251
+ " %###.............#+##..%%",
2252
+ " %#.......%%%%%..@++@...%",
2253
+ "%%%%%......%%% %%.@11@...%",
2254
+ "%.........%% %.@@@@..%%",
2255
+ "%.......%%% %......%% ",
2256
+ "%%%%%%%%%% %%%%%%%% "
2257
+ ]
2258
+ },
2259
+ {
2260
+ "name": "Little eruption",
2261
+ "type": "Interesting room",
2262
+ "rating": 0,
2263
+ "rows": 10,
2264
+ "columns": 18,
2265
+ "min-depth": 6,
2266
+ "max-depth": 35,
2267
+ "D": [
2268
+ " %%%%%%%%%%%%%%%%",
2269
+ "%%%:*.:..u:.#...:%",
2270
+ "%:##.u.:.#.uu```.%",
2271
+ "%#`#:.u:```:`u..:%",
2272
+ "%`##.#*`````:u#:.%",
2273
+ "%%````````:`*..::%",
2274
+ " %u.:`u.*:#.`.:##%",
2275
+ " %%#.`..#:uu`...:%",
2276
+ " %:`:::.#:..:%%%%",
2277
+ " %%%%%%%%%%%%% "
2278
+ ]
2279
+ },
2280
+ {
2281
+ "name": "Little eruption+",
2282
+ "type": "Interesting room",
2283
+ "rating": 0,
2284
+ "rows": 10,
2285
+ "columns": 18,
2286
+ "min-depth": 45,
2287
+ "max-depth": 0,
2288
+ "D": [
2289
+ " %%%%%%%%%%%%%%%%",
2290
+ "%%%:*.:..U:.#...:%",
2291
+ "%:##...:.#..U```.%",
2292
+ "%#`#:.U:```:`U..:%",
2293
+ "%`##.#*`````:.#:.%",
2294
+ "%%````````:`*.U::%",
2295
+ " %U.:`U.*:#.`.:##%",
2296
+ " %%#.`..#:U.`U..:%",
2297
+ " %:`:::.#:..:%%%%",
2298
+ " %%%%%%%%%%%%% "
2299
+ ]
2300
+ },
2301
+ {
2302
+ "name": "Flies around the honeypot",
2303
+ "type": "Interesting room",
2304
+ "rating": 0,
2305
+ "rows": 7,
2306
+ "columns": 10,
2307
+ "min-depth": 10,
2308
+ "max-depth": 25,
2309
+ "D": [
2310
+ "%%%%%%%%%%",
2311
+ "%...F..F.%",
2312
+ "%.F.,,F..%",
2313
+ "%.F,,F...%",
2314
+ "%...F.F..%",
2315
+ "%.F......%",
2316
+ "%%%%%%%%%%"
2317
+ ]
2318
+ },
2319
+ {
2320
+ "name": "Akela's Pack",
2321
+ "type": "Interesting room",
2322
+ "rating": 0,
2323
+ "rows": 11,
2324
+ "columns": 20,
2325
+ "min-depth": 3,
2326
+ "max-depth": 40,
2327
+ "D": [
2328
+ "%%%%%%%%%%%%%%%%%%%%",
2329
+ "%;;.;;;;.;.;;.;.;;;%",
2330
+ "%.;;;........;..;;.%",
2331
+ "%;;...;.C.........;%",
2332
+ "%.;.C..C...C...C.;.%",
2333
+ "%;..C..C.CC.CC.;..;%",
2334
+ "%.;..CCCC.CCCC.C..;%",
2335
+ "%;..CCC.....CC.C...%",
2336
+ "%;..CC.:#C#:..C.C.;%",
2337
+ "%;;;..:%%%%%:...;.;%",
2338
+ "%%%%%%%% %%%%%%%%%"
2339
+ ]
2340
+ },
2341
+ {
2342
+ "name": "Pride Rock",
2343
+ "type": "Interesting room",
2344
+ "rating": 0,
2345
+ "rows": 11,
2346
+ "columns": 24,
2347
+ "min-depth": 5,
2348
+ "max-depth": 40,
2349
+ "D": [
2350
+ "%%%%%%%%%%%%%%%%%%%%%%%%",
2351
+ "%..............f.......%",
2352
+ "%.f......f.............%",
2353
+ "%...........f.....f....%",
2354
+ "%.....f...f**f..f......%",
2355
+ "%.......f.***......f...%",
2356
+ "%...f....f**....f.f....%",
2357
+ "%.....f.......f........%",
2358
+ "%.......f...........f..%",
2359
+ "%.f.........f..........%",
2360
+ "%%%%%%%%%%%%%%%%%%%%%%%%"
2361
+ ]
2362
+ },
2363
+ {
2364
+ "name": "Party of adventurers",
2365
+ "type": "Interesting room",
2366
+ "rating": 0,
2367
+ "rows": 6,
2368
+ "columns": 16,
2369
+ "min-depth": 3,
2370
+ "max-depth": 0,
2371
+ "D": [
2372
+ "%%%%%%%%%%%%%%%%",
2373
+ "%....p.........%",
2374
+ "%..p..p.h...h..%",
2375
+ "%.........p....%",
2376
+ "%......h....p..%",
2377
+ "%%%%%%%%%%%%%%%%"
2378
+ ]
2379
+ },
2380
+ {
2381
+ "name": "Hermitage - DRL",
2382
+ "type": "Interesting room",
2383
+ "rating": 0,
2384
+ "rows": 11,
2385
+ "columns": 13,
2386
+ "min-depth": 0,
2387
+ "max-depth": 0,
2388
+ "D": [
2389
+ " %%%%%%%%% ",
2390
+ "%%%.......%%%",
2391
+ "%...........%",
2392
+ "%...;..;....%",
2393
+ "%.//.;;;....%",
2394
+ "%.//.;2;;...%",
2395
+ "%./..;;;....%",
2396
+ "%...;.......%",
2397
+ "%.......;...%",
2398
+ "%%%.......%%%",
2399
+ " %%%%%%%%% "
2400
+ ]
2401
+ },
2402
+ {
2403
+ "name": "Interesting Roon (Lesser Forge) - DRL",
2404
+ "type": "Interesting room",
2405
+ "rating": 0,
2406
+ "rows": 11,
2407
+ "columns": 22,
2408
+ "min-depth": 50,
2409
+ "max-depth": 0,
2410
+ "D": [
2411
+ " %%%%%%%%%% ",
2412
+ " %%%%........%%%% ",
2413
+ " %%%......``..1...%%% ",
2414
+ "%%........``........%%",
2415
+ "%...1.....&..........%",
2416
+ "%.........##.........%",
2417
+ "%..........&.....1...%",
2418
+ "%%........``........%%",
2419
+ " %%%......``......%%% ",
2420
+ " %%%%........%%%% ",
2421
+ " %%%%%%%%%% "
2422
+ ]
2423
+ },
2424
+ {
2425
+ "name": "Ruined Lesser Forge - DRL",
2426
+ "type": "Interesting room",
2427
+ "rating": 0,
2428
+ "rows": 11,
2429
+ "columns": 22,
2430
+ "min-depth": 50,
2431
+ "max-depth": 0,
2432
+ "D": [
2433
+ " %%%%%%%%%% ",
2434
+ " %%%%........%%%% ",
2435
+ " %%%......:`.1....%%% ",
2436
+ "%%...//...``..:..:..%%",
2437
+ "%..:/:/...1........#.%",
2438
+ "%.........#:......:..%",
2439
+ "%..1...:...&.........%",
2440
+ "%%........``...:.//.%%",
2441
+ " %%%.:...#``....::%%% ",
2442
+ " %%%%.:......%%%% ",
2443
+ " %%%%%%%%%% "
2444
+ ]
2445
+ },
2446
+ {
2447
+ "name": "Small Fountain - DRL",
2448
+ "type": "Interesting room",
2449
+ "rating": 0,
2450
+ "rows": 9,
2451
+ "columns": 16,
2452
+ "min-depth": 0,
2453
+ "max-depth": 0,
2454
+ "D": [
2455
+ " %%%%%%%%%% ",
2456
+ " %%.;....;.%% ",
2457
+ " %%.;/1.../;.%% ",
2458
+ "%%.;/..//../;.%%",
2459
+ "%.;/..////.1/;.%",
2460
+ "%%.;/..//../;.%%",
2461
+ " %%.;/..1./;.%% ",
2462
+ " %%.;....;.%% ",
2463
+ " %%%%%%%%%% "
2464
+ ]
2465
+ },
2466
+ {
2467
+ "name": "Not-So-Small Fountain - DRL ",
2468
+ "type": "Interesting room",
2469
+ "rating": 0,
2470
+ "rows": 11,
2471
+ "columns": 33,
2472
+ "min-depth": 0,
2473
+ "max-depth": 0,
2474
+ "D": [
2475
+ " %%%%%%%% %%%%%%%% ",
2476
+ " %%....;.%% %%.;....%% ",
2477
+ " %%./;.//;.%%%%%%%%%%%.;//.;/.%% ",
2478
+ "%%./;//../;...;...;.1.;/.1//;/.%%",
2479
+ "%./;////../;.///////.;/..////;/.%",
2480
+ "%%./;//./..//.1.....//.././/;/.%%",
2481
+ " %%./;1..///...///...///...;/.%% ",
2482
+ " %%.......;/......./;.......%% ",
2483
+ " %%%%%%%%.;///////;.%%%%%%%% ",
2484
+ " %%.........%% ",
2485
+ " %%%%%%%%%%% "
2486
+ ]
2487
+ },
2488
+ {
2489
+ "name": "E-W Library - DRL",
2490
+ "type": "Interesting room",
2491
+ "rating": 0,
2492
+ "rows": 11,
2493
+ "columns": 20,
2494
+ "min-depth": 0,
2495
+ "max-depth": 0,
2496
+ "D": [
2497
+ "%%%%%%%%%%%%%%%%%%%%",
2498
+ "%....1.............%",
2499
+ "%.################.%",
2500
+ "%.......1....?.....%",
2501
+ "%.################.%",
2502
+ "%....?.............%",
2503
+ "%.################.%",
2504
+ "%.........?1.......%",
2505
+ "%.################.%",
2506
+ "%..1...............%",
2507
+ "%%%%%%%%%%%%%%%%%%%%"
2508
+ ]
2509
+ },
2510
+ {
2511
+ "name": "N-S Library - DRL",
2512
+ "type": "Interesting room",
2513
+ "rating": 0,
2514
+ "rows": 10,
2515
+ "columns": 17,
2516
+ "min-depth": 0,
2517
+ "max-depth": 0,
2518
+ "D": [
2519
+ "%%%%%%%%%%%%%%%%%",
2520
+ "%....1..........%",
2521
+ "%.#.#.#.#.#.#.#.%",
2522
+ "%.#.#.#.#.#.#?#.%",
2523
+ "%.#.#.#?#.#.#.#.%",
2524
+ "%.#.#1#.#.#.#.#.%",
2525
+ "%.#?#.#.#.#.#.#.%",
2526
+ "%.#.#.#.#.#.#.#.%",
2527
+ "%.........1.....%",
2528
+ "%%%%%%%%%%%%%%%%%"
2529
+ ]
2530
+ },
2531
+ {
2532
+ "name": "Mad Alchemist's Lab",
2533
+ "type": "Interesting room",
2534
+ "rating": 5,
2535
+ "rows": 9,
2536
+ "columns": 30,
2537
+ "min-depth": 30,
2538
+ "max-depth": 55,
2539
+ "D": [
2540
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
2541
+ "%................:...#.....:.%",
2542
+ "%.##############...:.+...:.#.%",
2543
+ "%.@..!..@..q.#.+.....#.:+#..#%",
2544
+ "%.@.!p!.+.##...#.+.#:.H.:#.:.%",
2545
+ "%.@H..!.@####p##.:..#..+:#.+.%",
2546
+ "%.##############..+..#:...#.:%",
2547
+ "%..................::...+....%",
2548
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
2549
+ ]
2550
+ },
2551
+ {
2552
+ "name": "Spider Wood",
2553
+ "type": "Interesting room",
2554
+ "rating": 0,
2555
+ "rows": 11,
2556
+ "columns": 31,
2557
+ "min-depth": 5,
2558
+ "max-depth": 40,
2559
+ "D": [
2560
+ " %%%%%%%%%%%%%%%%%%%",
2561
+ " %%%;;;;;;;;;;;;;;;;;%",
2562
+ " %%;;;SS;;;;;;;;;;;;;%%",
2563
+ " %%%;;;SSSSSSS;;;;;;;%%% ",
2564
+ " %%;;;;;;SSSSSS;:;;;;%% ",
2565
+ " %%%;;;;;;SSSSS;;;;;;%%% ",
2566
+ " %%;;;;;;SSSSS;;;;;;;%% ",
2567
+ " %%;;;;;;;;;SS;;;;;;;%%% ",
2568
+ "%%;;;;;;;;;;;;;;;;;;%% ",
2569
+ "%;;;;;;;;;;;;;;;;;%%% ",
2570
+ "%%%%%%%%%%%%%%%%%%% "
2571
+ ]
2572
+ },
2573
+ {
2574
+ "name": "Crevasse",
2575
+ "type": "Interesting room",
2576
+ "rating": 0,
2577
+ "rows": 7,
2578
+ "columns": 13,
2579
+ "min-depth": 20,
2580
+ "max-depth": 70,
2581
+ "D": [
2582
+ " %%%%%",
2583
+ " %%%%%u``%",
2584
+ " %%uu````u%",
2585
+ "%%%%``````%%%",
2586
+ "%`````U%%%% ",
2587
+ "%`%%%%%% ",
2588
+ "%%% "
2589
+ ]
2590
+ },
2591
+ {
2592
+ "name": "Ant nest",
2593
+ "type": "Interesting room",
2594
+ "rating": 0,
2595
+ "rows": 11,
2596
+ "columns": 15,
2597
+ "min-depth": 3,
2598
+ "max-depth": 50,
2599
+ "D": [
2600
+ "%%%%%%%%%%%%%%%",
2601
+ "%.............%",
2602
+ "%.....:::...a.%",
2603
+ "%.a..:::::....%",
2604
+ "%...::aaa::...%",
2605
+ "%...::aaa::...%",
2606
+ "%...::aaa::...%",
2607
+ "%...a:::::....%",
2608
+ "%.....:::..a..%",
2609
+ "%.............%",
2610
+ "%%%%%%%%%%%%%%%"
2611
+ ]
2612
+ },
2613
+ {
2614
+ "name": "Tavern - DRL",
2615
+ "type": "Interesting room",
2616
+ "rating": 0,
2617
+ "rows": 11,
2618
+ "columns": 13,
2619
+ "min-depth": 0,
2620
+ "max-depth": 0,
2621
+ "D": [
2622
+ " %%%%%%%%% ",
2623
+ " %%..,.,..%% ",
2624
+ "%%.#######.%%",
2625
+ "%.p.........%",
2626
+ "%..::...::p.%",
2627
+ "%..::...::..%",
2628
+ "%...........%",
2629
+ "%..::.h.::..%",
2630
+ "%..::...::..%",
2631
+ "%%.........%%",
2632
+ " %%%%%%%%%%% "
2633
+ ]
2634
+ },
2635
+ {
2636
+ "name": "Reservoir - DRL",
2637
+ "type": "Interesting room",
2638
+ "rating": 0,
2639
+ "rows": 11,
2640
+ "columns": 25,
2641
+ "min-depth": 0,
2642
+ "max-depth": 0,
2643
+ "D": [
2644
+ "%%%%%%%%%%%%%%%%%%%%%%%%%",
2645
+ "%.......1...............%",
2646
+ "%./////////////////////.%",
2647
+ "%./////////////////////1%",
2648
+ "%./////////////////////.%",
2649
+ "%./////////////////////.%",
2650
+ "%./////////////////////.%",
2651
+ "%./////////////////////.%",
2652
+ "%./////////////////////.%",
2653
+ "%............1...1......%",
2654
+ "%%%%%%%%%%%%%%%%%%%%%%%%%"
2655
+ ]
2656
+ },
2657
+ {
2658
+ "name": "Orchard - DRL",
2659
+ "type": "Interesting room",
2660
+ "rating": 0,
2661
+ "rows": 11,
2662
+ "columns": 33,
2663
+ "min-depth": 0,
2664
+ "max-depth": 0,
2665
+ "D": [
2666
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
2667
+ "%...................1...........%",
2668
+ "%.;...;...;...;...;...;...;...;.%",
2669
+ "%...;...;...;...;...;...;...;...%",
2670
+ "%.;...;...;...;...;...;...;...;.%",
2671
+ "%...;...;1..;...;...;...;...;...%",
2672
+ "%.;...;...;...;...;...;...;...;.%",
2673
+ "%...;&..;...;...;...;.1.;...;...%",
2674
+ "%.;...;...;...;...;...;...;...;.%",
2675
+ "%...............................%",
2676
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
2677
+ ]
2678
+ },
2679
+ {
2680
+ "name": "Spider Nest - DRL",
2681
+ "type": "Interesting room",
2682
+ "rating": 0,
2683
+ "rows": 10,
2684
+ "columns": 25,
2685
+ "min-depth": 10,
2686
+ "max-depth": 20,
2687
+ "D": [
2688
+ "%%%%%%%%%%%%%%%%%%%%%%%%%",
2689
+ "%...;...:........;..S...%",
2690
+ "%.:.S...;..;.&:..:....;.%",
2691
+ "%.....:......S.....S....%",
2692
+ "%..:..........;..&:;.:..%",
2693
+ "%...S...;&:.............%",
2694
+ "%..;.:.S.......:..;.....%",
2695
+ "%.;....;......&....S...:%",
2696
+ "%...:......S......;.....%",
2697
+ "%%%%%%%%%%%%%%%%%%%%%%%%%"
2698
+ ]
2699
+ },
2700
+ {
2701
+ "name": "Gauntlet 1 - DRL",
2702
+ "type": "Interesting room",
2703
+ "rating": 3,
2704
+ "rows": 3,
2705
+ "columns": 33,
2706
+ "min-depth": 20,
2707
+ "max-depth": 40,
2708
+ "D": [
2709
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
2710
+ "%...+.1.+.1.+.1.+.1.+.1.+.1.+...%",
2711
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
2712
+ ]
2713
+ },
2714
+ {
2715
+ "name": "Gauntlet 2 - DRL",
2716
+ "type": "Interesting room",
2717
+ "rating": 3,
2718
+ "rows": 7,
2719
+ "columns": 31,
2720
+ "min-depth": 40,
2721
+ "max-depth": 60,
2722
+ "D": [
2723
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
2724
+ "%.#.+.#.+.#.+.#.+.#.+.#.+.#.+.%",
2725
+ "%.#.#.#.#.#.#.#.#.#.#.#.#.#.#.%",
2726
+ "%.#.#1#.#.#.#1#.#1#.#.#.#1#.#.%",
2727
+ "%.#.#.#.#.#.#.#.#.#.#.#.#.#.#.%",
2728
+ "%.+.#.+.#.+.#.+.#.+.#.+.#.+.#.%",
2729
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
2730
+ ]
2731
+ },
2732
+ {
2733
+ "name": "Semicircular 1 - DRL",
2734
+ "type": "Interesting room",
2735
+ "rating": 0,
2736
+ "rows": 8,
2737
+ "columns": 24,
2738
+ "min-depth": 0,
2739
+ "max-depth": 0,
2740
+ "D": [
2741
+ "%%%%%%%%%% %%%%%%%%%%",
2742
+ "%.../....%%%%%%.1../...%",
2743
+ "%%.../..1..##...../...%%",
2744
+ " %....//........//....% ",
2745
+ " %%...&.///..///..1..%% ",
2746
+ " %%%.....////.....%%% ",
2747
+ " %%%%........%%%% ",
2748
+ " %%%%%%%%%% "
2749
+ ]
2750
+ },
2751
+ {
2752
+ "name": "Semicircular 2 - DRL",
2753
+ "type": "Interesting room",
2754
+ "rating": 0,
2755
+ "rows": 8,
2756
+ "columns": 24,
2757
+ "min-depth": 0,
2758
+ "max-depth": 0,
2759
+ "D": [
2760
+ " %%%%%%%%%% ",
2761
+ " %%%%........%%%% ",
2762
+ " %%%.....////..1..%%% ",
2763
+ " %%.....///..///.....%% ",
2764
+ " %.1..//........//....% ",
2765
+ "%%.../.....##...../...%%",
2766
+ "%.../..&.%%%%%%.1../...%",
2767
+ "%%%%%%%%%% %%%%%%%%%%"
2768
+ ]
2769
+ },
2770
+ {
2771
+ "name": "Plague Pit - DRL",
2772
+ "type": "Interesting room",
2773
+ "rating": 0,
2774
+ "rows": 8,
2775
+ "columns": 23,
2776
+ "min-depth": 3,
2777
+ "max-depth": 50,
2778
+ "D": [
2779
+ " %%%%%%%%%% ",
2780
+ " %%...r..r.%%% ",
2781
+ "%%.r.z.#.&...%%%%%%%% ",
2782
+ "%...:&..r..z...##.&.%% ",
2783
+ "%%%..r#..:....:...r.s%%",
2784
+ " %%%%..s...r.&.#:....%",
2785
+ " %%%%%%%.#.z...%%%%",
2786
+ " %%%%%%%%% "
2787
+ ]
2788
+ },
2789
+ {
2790
+ "name": "Lesser Altar - DRL",
2791
+ "type": "Interesting room",
2792
+ "rating": 0,
2793
+ "rows": 11,
2794
+ "columns": 15,
2795
+ "min-depth": 0,
2796
+ "max-depth": 0,
2797
+ "D": [
2798
+ " %%%%%%% ",
2799
+ " %%%.....%%% ",
2800
+ " %%..#.#.#..%% ",
2801
+ "%%..#..1..#..%%",
2802
+ "%..#.......#..%",
2803
+ "%....1.`.1....%",
2804
+ "%..#.......#..%",
2805
+ "%%..#..1..#..%%",
2806
+ " %%..#.#.#..%% ",
2807
+ " %%%.....%%% ",
2808
+ " %%%%%%% "
2809
+ ]
2810
+ },
2811
+ {
2812
+ "name": "Barracks - DRL",
2813
+ "type": "Interesting room",
2814
+ "rating": 0,
2815
+ "rows": 10,
2816
+ "columns": 15,
2817
+ "min-depth": 0,
2818
+ "max-depth": 0,
2819
+ "D": [
2820
+ "%%%% %%%%",
2821
+ "%p.%%%%%%%%%.p%",
2822
+ "%.&+.......+&.%",
2823
+ "%###.......###%",
2824
+ "%.&+.......#.p%",
2825
+ "%p.#.......+&.%",
2826
+ "%###.......###%",
2827
+ "%.&+.......+&.%",
2828
+ "%p.%%%%%%%%%.p%",
2829
+ "%%%% %%%%"
2830
+ ]
2831
+ },
2832
+ {
2833
+ "name": "Deep Crypt",
2834
+ "type": "Interesting room",
2835
+ "rating": 0,
2836
+ "rows": 11,
2837
+ "columns": 15,
2838
+ "min-depth": 60,
2839
+ "max-depth": 0,
2840
+ "D": [
2841
+ "%%%%%%%%%%%%%%%",
2842
+ "%W#W#W#L#G#W#L%",
2843
+ "%#...........#%",
2844
+ "%G..#..#..#..G%",
2845
+ "%#...s.......#%",
2846
+ "%L..#..#..#..W%",
2847
+ "%#........s..#%",
2848
+ "%W..#..#..#..G%",
2849
+ "%#...s.......#%",
2850
+ "%W#W#W#L#G#G#W%",
2851
+ "%%%%%%%%%%%%%%%"
2852
+ ]
2853
+ },
2854
+ {
2855
+ "name": "Zoo",
2856
+ "type": "Interesting room",
2857
+ "rating": 0,
2858
+ "rows": 11,
2859
+ "columns": 18,
2860
+ "min-depth": 15,
2861
+ "max-depth": 40,
2862
+ "D": [
2863
+ "%%%%%%%%%%%%%%%%%%",
2864
+ "%qq#qq#...#..;H.;%",
2865
+ "%#.##.#...#;q.;;.%",
2866
+ "%.......C.#.;;.q.%",
2867
+ "%#######..###+;..%",
2868
+ "%rr#;qq#.;...#H.;%",
2869
+ "%rr#.//#...;.####%",
2870
+ "%#.////..####+f..%",
2871
+ "%S#.///./C..#;..f%",
2872
+ "%S#.....#.C.#.;f.%",
2873
+ "%%%%%%%%%%%%%%%%%%"
2874
+ ]
2875
+ },
2876
+ {
2877
+ "name": "Yeek Warren",
2878
+ "type": "Interesting room",
2879
+ "rating": 0,
2880
+ "rows": 11,
2881
+ "columns": 22,
2882
+ "min-depth": 4,
2883
+ "max-depth": 14,
2884
+ "D": [
2885
+ "%%%%%%%%%%%%%%%%%%%%%%",
2886
+ "%....y##.##y#........%",
2887
+ "%.#####y.#y#y.#y#y##.%",
2888
+ "%.#y#y##.##y#.#####y.%",
2889
+ "%..............#yy##.%",
2890
+ "%.#y##.##+#y##.#yy#y.%",
2891
+ "%.###y.y#yy##y.+####.%",
2892
+ "%.#y##.##yy###...y#y.%",
2893
+ "%//....y###y#..#.###.%",
2894
+ "%//;#y.##.....##.....%",
2895
+ "%%%%%%%%%%%%%%%%%%%%%%"
2896
+ ]
2897
+ },
2898
+ {
2899
+ "name": "Centipedes Galore",
2900
+ "type": "Interesting room",
2901
+ "rating": 0,
2902
+ "rows": 11,
2903
+ "columns": 29,
2904
+ "min-depth": 2,
2905
+ "max-depth": 10,
2906
+ "D": [
2907
+ " %%%%%%% %%%%%% ",
2908
+ " %c....% %....%%% ",
2909
+ "%....%%% %%.c....%% ",
2910
+ "%....% %%%%%%%%........%%%%",
2911
+ "%....% %%..................%",
2912
+ "%%%.c%%%%..c...c%%%%%%.....%%",
2913
+ " %%.c...c%%%...% %%%..c% ",
2914
+ " %%%....% %%..%%%% %%c.%%",
2915
+ " %....% %...c.% %%..%",
2916
+ " %%%.%% %%...%% %..%",
2917
+ " %%% %%%%% %%%%"
2918
+ ]
2919
+ },
2920
+ {
2921
+ "name": "Room of doors -ES-",
2922
+ "type": "Interesting room",
2923
+ "rating": 0,
2924
+ "rows": 8,
2925
+ "columns": 11,
2926
+ "min-depth": 40,
2927
+ "max-depth": 50,
2928
+ "D": [
2929
+ "%%%%%%%%%%%",
2930
+ "%+++++++++%",
2931
+ "%+1+++++1+%",
2932
+ "%+++++++++%",
2933
+ "%+++++++++%",
2934
+ "%+1+++++1+%",
2935
+ "%+++++++++%",
2936
+ "%%%%%%%%%%%"
2937
+ ]
2938
+ },
2939
+ {
2940
+ "name": "Kobold den",
2941
+ "type": "Interesting room",
2942
+ "rating": 5,
2943
+ "rows": 18,
2944
+ "columns": 39,
2945
+ "min-depth": 4,
2946
+ "max-depth": 14,
2947
+ "D": [
2948
+ " %%%%%%%%%% %%%%%%%%%%%%%%%%%%%% ",
2949
+ " %%........%%%..................%%% ",
2950
+ " %%...#####.....################...%% ",
2951
+ "%%..###############....j..########..%% ",
2952
+ "%..####.k..########.##.k.k.,#######..%%",
2953
+ "%.####..k.k.#####m..###...k#########..%",
2954
+ "%.#####...k....,..#####.##+####3####..%",
2955
+ "%.#.,#+##.##m######j....##^####+#####.%",
2956
+ "%.#..m#####..##&.&#.######.###...####.%",
2957
+ "%.######....###&....##3###..k..k..###.%",
2958
+ "%.####...#.#####.k####+#..k...k...###.%",
2959
+ "%.####.k.##############....kk..k.m###.%",
2960
+ "%.###....j.#############..k..k...####.%",
2961
+ "%..####...k################..m.######.%",
2962
+ "%%..######^^######....#############...%",
2963
+ " %%..######+#####.......##########..%%%",
2964
+ " %..............%%%%.............%% ",
2965
+ " %%%%%%%%%%%%%%%% %%%%%%%%%%%%%%% "
2966
+ ]
2967
+ },
2968
+ {
2969
+ "name": "Giant's Armoury",
2970
+ "type": "Interesting room",
2971
+ "rating": 5,
2972
+ "rows": 13,
2973
+ "columns": 17,
2974
+ "min-depth": 20,
2975
+ "max-depth": 45,
2976
+ "D": [
2977
+ " %%%%%%%%% ",
2978
+ " %%...#...%% ",
2979
+ " %%....#....%% ",
2980
+ " %%.....#.....%% ",
2981
+ "%%....+###+.P..%%",
2982
+ "%...P.#P#|#.....%",
2983
+ "%#######+#######%",
2984
+ "%.....#]#P#.....%",
2985
+ "%%....+###+....%%",
2986
+ " %%.....#.....%% ",
2987
+ " %%....#....%% ",
2988
+ " %%...#P..%% ",
2989
+ " %%%%%%%%% "
2990
+ ]
2991
+ },
2992
+ {
2993
+ "name": "A little on the wild side",
2994
+ "type": "Interesting room",
2995
+ "rating": 10,
2996
+ "rows": 40,
2997
+ "columns": 50,
2998
+ "min-depth": 17,
2999
+ "max-depth": 25,
3000
+ "D": [
3001
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ",
3002
+ "%...;;.//;.;.................::::::#::::#:#% %### ",
3003
+ "%;;J...//;;........;.............:::::#::#:###|T# ",
3004
+ "%..;..;///;..;........o....oo.........:::::#::###%",
3005
+ "%..,...;/////;..;.............o........:::::::#::%",
3006
+ "%....;...;;///...........o...............C.::::#:%",
3007
+ "%.;........;///;.I..................::::....:::::%",
3008
+ "%.;..S.;..;.://..;...............;..::#::........%",
3009
+ "%....;...,..://;....................:::#::.......%",
3010
+ "%.........////;.........C.............:::....I:::%",
3011
+ "%...;.;.;///:;.J;...........f....::........::::::%",
3012
+ "%.......//:;;...................::::......::#::..%",
3013
+ "%;...;.;//:;..;.....CC..C........::::.....::#:...%",
3014
+ "%......;///:;.........CC.......:::::.......::....%",
3015
+ "%..;...;;//:;;....;..CC..;......;::..............%",
3016
+ "%....;....///;J.;......C.........................%",
3017
+ "%;;;;..;.;;////;...;.........C.............::....%",
3018
+ "%;..;;...;.;;////.................;.....f.:::.K..%",
3019
+ "%....;.;.....;/////////;;....;...;;;.......::....%",
3020
+ "%.;;q.;;.;S...;./////////...................K....%",
3021
+ "%;.;...;;..;..;..;.;;;////....................K..%",
3022
+ "%;;..;....;;;;.;;..;;;;:///.;.......C;...........%",
3023
+ "%....;.;;..;;.;.;.;;;;.;;////;;;...;;..#+#.......%",
3024
+ "%.;.......;...;..;....;.;;:///;..;.....+p+...;;..%",
3025
+ "%;;,..;;;...........;;.,.;;;//;;;;.....#+#...;...%",
3026
+ "%...;.;;.;..;;;.;;;...;.;..;//;...........;;;;..;%",
3027
+ "%S;...;;..;.;;...;..;;.;..;///J..;;......;.;;;;..%",
3028
+ "%..;;;;;;...;..;;...;;;.;//////;.;.....;;...;..;.%",
3029
+ "%.;;;.;;.;.;;....S.;.;.;//////////;.;;..........;%",
3030
+ "%.;;;...;;,.;;...;;;.;///////////////;..;.////..;%",
3031
+ "%;.;;;;.;...J..;;...;;;J/////////;..;/.../.;..///%",
3032
+ "%.;;.S;;.;;;;;....;..;;/////////.;....///........%",
3033
+ "%;.;;...;..;...;..;;;;/////////.;......;.........%",
3034
+ "%.;:;;;..;.;;;;.;.;;;////;;J;;.;.;;..............%",
3035
+ "%.;:.;;;##+##.;.;q;.;;;..;;..;.........aa....;...%",
3036
+ "%;.;:.S;#n$n#;;.;;.....;.;;...........a::a.......%",
3037
+ "%;;.q;;.#$n$#;.;;.;;;;......;;........a::a.......%",
3038
+ "%;;;;;;;#####;....;;..;.;........;;....aa...;....%",
3039
+ "%;;;;;;;;;;;...;;...;;;......;...................%",
3040
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
3041
+ ]
3042
+ },
3043
+ {
3044
+ "name": "Orc-hold",
3045
+ "type": "Lesser vault (new)",
3046
+ "rating": 10,
3047
+ "rows": 15,
3048
+ "columns": 20,
3049
+ "min-depth": 10,
3050
+ "max-depth": 30,
3051
+ "D": [
3052
+ "%%%%%%%%%%%%%%%%%%%%",
3053
+ "%..........C.......%",
3054
+ "%C::::::::::::::::.%",
3055
+ "%.:##############:.%",
3056
+ "%.:#,#ooooooo#||#:.%",
3057
+ "%.:#,+ooooooo#T|#:.%",
3058
+ "%o:###ooooooo+###:.%",
3059
+ "%.:+++oooooooooo#:.%",
3060
+ "%o:###ooooooo+###:.%",
3061
+ "%.:#,+ooooooo#T]#:.%",
3062
+ "%.:#,#ooooooo#]]#:C%",
3063
+ "%.:##############:.%",
3064
+ "%.::::::::::::::::.%",
3065
+ "%.C................%",
3066
+ "%%%%%%%%%%%%%%%%%%%%"
3067
+ ]
3068
+ },
3069
+ {
3070
+ "name": "Dragon's Den",
3071
+ "type": "Lesser vault (new)",
3072
+ "rating": 5,
3073
+ "rows": 11,
3074
+ "columns": 15,
3075
+ "min-depth": 30,
3076
+ "max-depth": 50,
3077
+ "flags": [
3078
+ "FEW_ENTRANCES"
3079
+ ],
3080
+ "D": [
3081
+ "%%% %%% %%%",
3082
+ "%.@@@@@.@@@@@.%",
3083
+ "%@.@@@...@@@.@%",
3084
+ " @@.@d....@d@@ ",
3085
+ "%@@@..$$$..@@@%",
3086
+ "%.....$D$.....%",
3087
+ "%@@@.d$$$..@@@%",
3088
+ " @@.@...d.@.@@ ",
3089
+ "%@.@@@...@@@.@%",
3090
+ "%.@@@@@.@@@@@.%",
3091
+ "%%% %%% %%%"
3092
+ ]
3093
+ },
3094
+ {
3095
+ "name": "Castellated",
3096
+ "type": "Lesser vault (new)",
3097
+ "rating": 5,
3098
+ "rows": 12,
3099
+ "columns": 20,
3100
+ "min-depth": 0,
3101
+ "max-depth": 0,
3102
+ "D": [
3103
+ "%%%%% %%%%%%%% %%%%%",
3104
+ "%...%%%..##^.%%%...%",
3105
+ "%%^.....##+#....^.%%",
3106
+ "%%.....^#.6#.^....%%",
3107
+ "%...###+####+###...%",
3108
+ "%...#4.4#.8#4.4#...%",
3109
+ "%...#44.#00#.44#...%",
3110
+ "%...###+####+###...%",
3111
+ "%%....^^#.6#^^..#.%%",
3112
+ "%%^.....#+##......%%",
3113
+ "%...%%%..##..%%%...%",
3114
+ "%%%%% %%%%%%%% %%%%%"
3115
+ ]
3116
+ },
3117
+ {
3118
+ "name": "Stars",
3119
+ "type": "Lesser vault (new)",
3120
+ "rating": 4,
3121
+ "rows": 14,
3122
+ "columns": 21,
3123
+ "min-depth": 0,
3124
+ "max-depth": 0,
3125
+ "D": [
3126
+ "%%%%%%%%%%%%%%%%%%%%%",
3127
+ "%.........#.........%",
3128
+ "%.......##9##.....4.%",
3129
+ "%...4....###..4.....%",
3130
+ "%.......#...#.......%",
3131
+ "%.4.#..4........#...%",
3132
+ "%.##9##...4...##9##.%",
3133
+ "%..###....4....###.4%",
3134
+ "%.#.4.#.......#...#.%",
3135
+ "%.........#.........%",
3136
+ "%.4.....##9##...4...%",
3137
+ "%....4...###........%",
3138
+ "%.......#...#.......%",
3139
+ "%%%%%%%%%%%%%%%%%%%%%"
3140
+ ]
3141
+ },
3142
+ {
3143
+ "name": "Maze",
3144
+ "type": "Lesser vault (new)",
3145
+ "rating": 6,
3146
+ "rows": 10,
3147
+ "columns": 19,
3148
+ "min-depth": 0,
3149
+ "max-depth": 0,
3150
+ "flags": [
3151
+ "FEW_ENTRANCES"
3152
+ ],
3153
+ "D": [
3154
+ " @@@@@@@@@@ ",
3155
+ " @@@@.@@@@4..@@@@ ",
3156
+ " @0..^&4&@.@..4.@ ",
3157
+ "@@.@@@494@.@@@^@@@%",
3158
+ "@@@.@@&4&@.^4@.4.+%",
3159
+ "@.@0.@@@@@@@.@@@@@%",
3160
+ "@@^@@@@..6.@..@4@@ ",
3161
+ " @.^6.@.@@.@@.44@ ",
3162
+ " @@@@..44@.^.@@@@ ",
3163
+ " @@@@@@@@@@ "
3164
+ ]
3165
+ },
3166
+ {
3167
+ "name": "Tower",
3168
+ "type": "Lesser vault (new)",
3169
+ "rating": 6,
3170
+ "rows": 11,
3171
+ "columns": 18,
3172
+ "min-depth": 0,
3173
+ "max-depth": 0,
3174
+ "flags": [
3175
+ "FEW_ENTRANCES"
3176
+ ],
3177
+ "D": [
3178
+ "@@@@@@@@@@@@@@@@@@",
3179
+ "@4.....4.@9@4@4..@",
3180
+ "@..4.^...@4#@@...@",
3181
+ "@@@@@+@@.@@@.@.4.@",
3182
+ "@.4....@6644@@+@@@",
3183
+ "@..^...@004@@4...@",
3184
+ "@.....^@@@@@+..4^@",
3185
+ "@.4..4.+...4@....@",
3186
+ "@......@^...@..4.@",
3187
+ "@@@@@@@@+@@@@@@@@@",
3188
+ " %%% "
3189
+ ]
3190
+ },
3191
+ {
3192
+ "name": "Celtic",
3193
+ "type": "Lesser vault (new)",
3194
+ "rating": 6,
3195
+ "rows": 17,
3196
+ "columns": 21,
3197
+ "min-depth": 0,
3198
+ "max-depth": 0,
3199
+ "D": [
3200
+ "%%%%%%%%%%%%%%%%%%%%%",
3201
+ "%...................%",
3202
+ "%.#####..#+#..#####.%",
3203
+ "%.#64##.##4##.##46#.%",
3204
+ "%.#+##..#&^&#..##+#.%",
3205
+ "%.#....###.###....#.%",
3206
+ "%...####..6..####...%",
3207
+ "%.###&##.#+#.##&###.%",
3208
+ "%.+4.^..6+8+6..^.4+.%",
3209
+ "%.###&##.#+#.##&###.%",
3210
+ "%...####..6..####...%",
3211
+ "%.#....###.###....#.%",
3212
+ "%.#+##..#&^&#..##+#.%",
3213
+ "%.#64##.##4##.##46#.%",
3214
+ "%.#####..#+#..#####.%",
3215
+ "%...................%",
3216
+ "%%%%%%%%%%%%%%%%%%%%%"
3217
+ ]
3218
+ },
3219
+ {
3220
+ "name": "Treasure trove",
3221
+ "type": "Lesser vault (new)",
3222
+ "rating": 8,
3223
+ "rows": 9,
3224
+ "columns": 9,
3225
+ "min-depth": 0,
3226
+ "max-depth": 0,
3227
+ "flags": [
3228
+ "FEW_ENTRANCES"
3229
+ ],
3230
+ "D": [
3231
+ "%%% %%%",
3232
+ "%#@@@@@#%",
3233
+ "%@#&#&#@%",
3234
+ " @&#9#&@ ",
3235
+ " @#9#9#@ ",
3236
+ " @&#9#&@ ",
3237
+ "%@#&#&#@%",
3238
+ "%#@@@@@#%",
3239
+ "%%% %%%"
3240
+ ]
3241
+ },
3242
+ {
3243
+ "name": "Script 'L'",
3244
+ "type": "Lesser vault (new)",
3245
+ "rating": 8,
3246
+ "rows": 20,
3247
+ "columns": 20,
3248
+ "min-depth": 0,
3249
+ "max-depth": 0,
3250
+ "D": [
3251
+ "%%%%%%%%%%%%%%%%%%%%",
3252
+ "%............##....%",
3253
+ "%.#.....&...#00#...%",
3254
+ "%..##.^.....#00#.&.%",
3255
+ "%....##########....%",
3256
+ "%.4......4.#.4..44.%",
3257
+ "%...&.6..&.#....44.%",
3258
+ "%.....4...#........%",
3259
+ "%.44..#&6##.#..&...%",
3260
+ "%.44.&#.9#4.#......%",
3261
+ "%.....#..#94#&...4.%",
3262
+ "%.....#4##.6#..6...%",
3263
+ "%.4&....#^.4.......%",
3264
+ "%....4.#.....44..&.%",
3265
+ "%...##.#.....44....%",
3266
+ "%.6#00##4..&....#..%",
3267
+ "%..#00#.##....##...%",
3268
+ "%.&.##.&..####..&..%",
3269
+ "%......4...........%",
3270
+ "%%%%%%%%%%%%%%%%%%%%"
3271
+ ]
3272
+ },
3273
+ {
3274
+ "name": "Diamond",
3275
+ "type": "Lesser vault (new)",
3276
+ "rating": 4,
3277
+ "rows": 13,
3278
+ "columns": 13,
3279
+ "min-depth": 0,
3280
+ "max-depth": 0,
3281
+ "D": [
3282
+ " % ",
3283
+ " %.%% ",
3284
+ " %%.4..% ",
3285
+ " %.#4.4#.% ",
3286
+ " %.##.4.##% ",
3287
+ " %.46#&#64.% ",
3288
+ "%.4.4&8&4.4.%",
3289
+ " %.46#&#64.% ",
3290
+ " %##.4.##.% ",
3291
+ " %.#4.4#.% ",
3292
+ " %..4.%% ",
3293
+ " %%.% ",
3294
+ " % "
3295
+ ]
3296
+ },
3297
+ {
3298
+ "name": "Baba Yaga's Rookery -ES-",
3299
+ "type": "Lesser vault (new)",
3300
+ "rating": 0,
3301
+ "rows": 15,
3302
+ "columns": 12,
3303
+ "min-depth": 25,
3304
+ "max-depth": 40,
3305
+ "flags": [
3306
+ "FEW_ENTRANCES"
3307
+ ],
3308
+ "D": [
3309
+ " %%% ",
3310
+ " ######+####",
3311
+ " #BB###.+p?#",
3312
+ " #B:+...####",
3313
+ " ####+###P.#",
3314
+ " #BB+...P..#",
3315
+ " #BB####+#+#",
3316
+ " ####B:+.#6#",
3317
+ " #RS####+#.#",
3318
+ " #rrRb.R.#.#",
3319
+ " #brrSRSb#.#",
3320
+ " #########0#",
3321
+ "%##-~?7pP#.#",
3322
+ "%6#p7?=pp..#",
3323
+ "%###########"
3324
+ ]
3325
+ },
3326
+ {
3327
+ "name": "Maltese cross",
3328
+ "type": "Lesser vault (new)",
3329
+ "rating": 5,
3330
+ "rows": 16,
3331
+ "columns": 20,
3332
+ "min-depth": 0,
3333
+ "max-depth": 0,
3334
+ "D": [
3335
+ " %%% %%% ",
3336
+ " %.#%%%%#.% ",
3337
+ " %6#....#.% ",
3338
+ " %...&.6..% ",
3339
+ "%%%%%%&#....#&%%%%%%",
3340
+ "%...6.##6&&.##...6.%",
3341
+ "%##..##.@@@@.##..##%",
3342
+ " %&...&@@99@@&.&..% ",
3343
+ " %..&.&@#99@@&..6&% ",
3344
+ "%##&.##.@@@@6##..##%",
3345
+ "%.6...##.&&.##6..&.%",
3346
+ "%%%%%%&#6...#.%%%%%%",
3347
+ " %....&..&% ",
3348
+ " %.#&.6.#.% ",
3349
+ " %.#%%%%#.% ",
3350
+ " %%% %%% "
3351
+ ]
3352
+ },
3353
+ {
3354
+ "name": "Eagle",
3355
+ "type": "Medium vault (new)",
3356
+ "rating": 5,
3357
+ "rows": 12,
3358
+ "columns": 27,
3359
+ "min-depth": 0,
3360
+ "max-depth": 0,
3361
+ "D": [
3362
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%",
3363
+ "%....4......4......4.....4%",
3364
+ "%........6.......#####....%",
3365
+ "%..4...####....#####...4..%",
3366
+ "%.....##############......%",
3367
+ "%..6...4###########.4...6.%",
3368
+ "%.4####..########4........%",
3369
+ "%###8##################.4.%",
3370
+ "%....####################.%",
3371
+ "%.....4.#######....####...%",
3372
+ "%...4.....4.....6..4......%",
3373
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%"
3374
+ ]
3375
+ },
3376
+ {
3377
+ "name": "...and let slip the dogs of war",
3378
+ "type": "Medium vault (new)",
3379
+ "rating": 5,
3380
+ "rows": 20,
3381
+ "columns": 29,
3382
+ "min-depth": 20,
3383
+ "max-depth": 0,
3384
+ "D": [
3385
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
3386
+ "%...........................%",
3387
+ "%..///////////////////////..%",
3388
+ "%..///////////////////////..%",
3389
+ "%..///////@@@@#@@@@///////..%",
3390
+ "%..//////@@ZZZZZZZ@@//////..%",
3391
+ "%../////@@ZZZZZZZZZ@@/////..%",
3392
+ "%..////@@ZZZZZZZZZZZ@@////..%",
3393
+ "%..////@ZZZZ#####ZZZZ@////..%",
3394
+ "%..////@ZZZZ#575#ZZZZ#////..%",
3395
+ "%..////#ZZZZ#575#ZZZZ@////..%",
3396
+ "%..////@ZZZZ#####ZZZZ@////..%",
3397
+ "%..////@@ZZZZZZZZZZZ@@////..%",
3398
+ "%../////@@ZZZZZZZZZ@@/////..%",
3399
+ "%..//////@@ZZZZZZZ@@//////..%",
3400
+ "%..///////@@@@#@@@@///////..%",
3401
+ "%..///////////////////////..%",
3402
+ "%..///////////////////////..%",
3403
+ "%...........................%",
3404
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
3405
+ ]
3406
+ },
3407
+ {
3408
+ "name": "Graveyard - DRL",
3409
+ "type": "Medium vault (new)",
3410
+ "rating": 15,
3411
+ "rows": 22,
3412
+ "columns": 33,
3413
+ "min-depth": 20,
3414
+ "max-depth": 60,
3415
+ "D": [
3416
+ " %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ",
3417
+ " %%..............#.:.:.:.:.:.:% ",
3418
+ " %%....^..z:W......z.s.....Ws..% ",
3419
+ " %...........z....#.:.:s:.:.:.:% ",
3420
+ " %..G###..z.:.M....^.z...z...z.%%",
3421
+ "%%...#$#....s:....#.#.#G#.#z#.#.%",
3422
+ "%....#+#...:..............M.....%",
3423
+ "%........s..........#..z...###..%",
3424
+ "%.......................#..+W#..%",
3425
+ "%.#.#.#.#.#....###....s....###..%",
3426
+ "%......^.z.....#7#..............%",
3427
+ "%.:M:.:.:.#M...#W#...#.^..#.....%",
3428
+ "%....z...z.....#+#..z...........%",
3429
+ "%.:.:.:.:.#............G.::..M..%",
3430
+ "%.......G.........#####..z.:.:..%",
3431
+ "%.:.:.:.:.#..z....+sss#..:^.s...%",
3432
+ "%..z.s............#####..s.:.:..%",
3433
+ "%.:.:.:.:.#...^.........z.......%",
3434
+ "%..W....z..M..........z....s....%",
3435
+ "%.:.:.:s:.#......^......#+#..^.%%",
3436
+ "%%%%....................#W#..%%% ",
3437
+ " %%%%%%%%%%%%%%%%%%%%%%%%%%% "
3438
+ ]
3439
+ },
3440
+ {
3441
+ "name": "Human Town - DRL",
3442
+ "type": "Medium vault (new)",
3443
+ "rating": 10,
3444
+ "rows": 22,
3445
+ "columns": 33,
3446
+ "min-depth": 0,
3447
+ "max-depth": 0,
3448
+ "D": [
3449
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
3450
+ "%:::..............#p#.......;#$$%",
3451
+ "%....###..:::####.#p#.......;#p$%",
3452
+ "%.####.#.:::##.p#.+##;;;;;;.;#.p%",
3453
+ "%.#3#..#..###..p#....;....;.;+pp%",
3454
+ "%.#^+.p#..#^^p.p+.####.2..;.;###%",
3455
+ "%.#5#.p+.##+#####.#pp##..2;.;;;;%",
3456
+ "%.######.#5^#.....+p^$#.6.;.;;;;%",
3457
+ "%........####;;...#####...;.;;;;%",
3458
+ "%;;..#+#........//....;;;;;..;;;%",
3459
+ "%#;2.#p#######.///###..........;%",
3460
+ "%#...#pp^+p^p+.///#p#.#+###.....%",
3461
+ "%..;.#3#+#####.///#p#.#^pp#.#+##%",
3462
+ "%.2..###5#......###^#.#pp##.#p..%",
3463
+ "%..;/..###.####.#7+p#.####..#ppp%",
3464
+ "%.;/.......#$3#.#####......###^,%",
3465
+ "%../##+##.##5p#.......###.##5#p^%",
3466
+ "%///#ppp#.#3$.#######+#3#.#pp#^p%",
3467
+ "%//.#p$3#.#$pp+^^+^^+p+p#.#$^#p^%",
3468
+ "%/..#####.###############.#$^+^,%",
3469
+ "%/........................#$^#,,%",
3470
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
3471
+ ]
3472
+ },
3473
+ {
3474
+ "name": "Keep - DRL",
3475
+ "type": "Medium vault (new)",
3476
+ "rating": 15,
3477
+ "rows": 22,
3478
+ "columns": 33,
3479
+ "min-depth": 30,
3480
+ "max-depth": 80,
3481
+ "D": [
3482
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
3483
+ "%4.............................4%",
3484
+ "%./////////////////////////////.%",
3485
+ "%./@@@@@@@@///////////@@@@@@@@/.%",
3486
+ "%./@||h,,,@@@@@@@@@@@@@^hh5||@/.%",
3487
+ "%./@^^^...+^.^.^5^h^h^+^hh5^|@/.%",
3488
+ "%./@@+######################@@/.%",
3489
+ "%.//@^#^^h+h^^^h#h^^^h+h^^5h@//.%",
3490
+ "%.//@^#h^^#^^h^^+^^h^^#^^h^7@//.%",
3491
+ "%.//@h#+####################@//.%",
3492
+ "%.//@^+^h^^h^^h^^.......h^^h+^^.%",
3493
+ "%.//@^+^h^^h^^h^^.......h^^h+^^.%",
3494
+ "%.//@h#+####################@//.%",
3495
+ "%.//@^#^^h#^^h^^+^^h^^#^^h^~@//.%",
3496
+ "%.//@^#h^^+h^^^h#h^^^h+h^^5h@//.%",
3497
+ "%./@@+######################@@/.%",
3498
+ "%./@^^^...+^.^.^5^h^h^+^hh5^]@/.%",
3499
+ "%./@,,,h]]@@@@@@@@@@@@@^hh5]]@/.%",
3500
+ "%./@@@@@@@@///////////@@@@@@@@/.%",
3501
+ "%./////////////////////////////.%",
3502
+ "%4.............................4%",
3503
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
3504
+ ]
3505
+ },
3506
+ {
3507
+ "name": "Greater Forge - DRL",
3508
+ "type": "Medium vault (new)",
3509
+ "rating": 18,
3510
+ "rows": 22,
3511
+ "columns": 20,
3512
+ "min-depth": 40,
3513
+ "max-depth": 0,
3514
+ "D": [
3515
+ "%%%%%%%%%%%%%%%%%%%%",
3516
+ "%.6................%",
3517
+ "%.``##.......6##``.%",
3518
+ "%.``#|h##//##h]#``.%",
3519
+ "%.``##h]#//#|h##``.%",
3520
+ "%.``...##//##...``.%",
3521
+ "%.``............``.%",
3522
+ "%.``##........##``.%",
3523
+ "%.``#]h##..##h|#``.%",
3524
+ "%.``##.#````#.##``.%",
3525
+ "%...66..`h]`..66...%",
3526
+ "%...66..`|h`..66...%",
3527
+ "%.``##.#`..`#.##``.%",
3528
+ "%.``#]h##..##h|#``.%",
3529
+ "%.``##........##``.%",
3530
+ "%.``............``.%",
3531
+ "%.``...##//##...``.%",
3532
+ "%.``##h|#//#]h##``.%",
3533
+ "%.``#]h##//##h|#``.%",
3534
+ "%.``##..6.....##``.%",
3535
+ "%...........6......%",
3536
+ "%%%%%%%%%%%%%%%%%%%%"
3537
+ ]
3538
+ },
3539
+ {
3540
+ "name": "Mage's Workshop - DRL",
3541
+ "type": "Medium vault (new)",
3542
+ "rating": 15,
3543
+ "rows": 15,
3544
+ "columns": 22,
3545
+ "min-depth": 20,
3546
+ "max-depth": 40,
3547
+ "D": [
3548
+ "%%%%%%%%%%%%%%%%%%%%%%",
3549
+ "%?#?#?#...#-#-#-#....%",
3550
+ "%.^.^6+...+6^.^.#....%",
3551
+ "%######...#######.h..%",
3552
+ "%....................%",
3553
+ "%....#+##...#####....%",
3554
+ "%.h..#6_#...#```#....%",
3555
+ "%....#^##.p.#`9`#....%",
3556
+ "%#+#.#._#...#```#...p%",
3557
+ "%!6#.#^##...#####....%",
3558
+ "%#^#.#._#............%",
3559
+ "%!.#.####..#######...%",
3560
+ "%#^#.......+6^.^.#...%",
3561
+ "%!.#.......#=#=#=#...%",
3562
+ "%%%%%%%%%%%%%%%%%%%%%%"
3563
+ ]
3564
+ },
3565
+ {
3566
+ "name": "Greater Altar - DRL",
3567
+ "type": "Medium vault (new)",
3568
+ "rating": 15,
3569
+ "rows": 19,
3570
+ "columns": 31,
3571
+ "min-depth": 0,
3572
+ "max-depth": 0,
3573
+ "D": [
3574
+ " %%%%%%%%%%%%% ",
3575
+ " %%%%...........%%%% ",
3576
+ " %%%...#....#....#...%%% ",
3577
+ " %%....4.....6.....4....%% ",
3578
+ " %%.......................%% ",
3579
+ " %%.#....`...#.#.#...`....#.%% ",
3580
+ " %...4......#..6..#......4...% ",
3581
+ "%%.........#.^```^.#.........%%",
3582
+ "%.........#.^`^5^`^.#.........%",
3583
+ "%..#6....#.6`^797^`6.#....6#..%",
3584
+ "%.........#.^`^5^`^.#.........%",
3585
+ "%%.........#.^```^.#.........%%",
3586
+ " %...4......#..6..#......4...% ",
3587
+ " %%.#....`...#.#.#...`....#.%% ",
3588
+ " %%.......................%% ",
3589
+ " %%....4.....6.....4....%% ",
3590
+ " %%%...#....#....#...%%% ",
3591
+ " %%%%...........%%%% ",
3592
+ " %%%%%%%%%%%%% "
3593
+ ]
3594
+ },
3595
+ {
3596
+ "name": "Wild Area - DRL",
3597
+ "type": "Medium vault (new)",
3598
+ "rating": 15,
3599
+ "rows": 13,
3600
+ "columns": 25,
3601
+ "min-depth": 0,
3602
+ "max-depth": 0,
3603
+ "D": [
3604
+ " %%%%%%%%%%%%%%%%%%%%%%% ",
3605
+ "%%/.;;...4#....:..##...%%",
3606
+ "%..//4.;.....:.4:.;.4.;.%",
3607
+ "%.;4./;;.;.4....:....:.#%",
3608
+ "%.;;./.4;..;.....;:..;..%",
3609
+ "%..;.4/.../.4......4.:..%",
3610
+ "%.4.;.;/////;..4;..;...#%",
3611
+ "%#.....;..///6;...;.4...%",
3612
+ "%#;.4;...4;//..;///;...4%",
3613
+ "%..:;.;.;...;///1../;;..%",
3614
+ "%....4:...;..4..4.;./4..%",
3615
+ "%%.;.#...4.....;..../.;%%",
3616
+ " %%%%%%%%%%%%%%%%%%%%%%% "
3617
+ ]
3618
+ },
3619
+ {
3620
+ "name": "Volcanic Area - DRL",
3621
+ "type": "Medium vault (new)",
3622
+ "rating": 0,
3623
+ "rows": 15,
3624
+ "columns": 19,
3625
+ "min-depth": 0,
3626
+ "max-depth": 0,
3627
+ "D": [
3628
+ "%%%%%%% %%%%%%%%% ",
3629
+ "%.4.:.%%%..4....%%%",
3630
+ "%..`.4##...`.:.##.%",
3631
+ "%:..`:.#..`...4#..%",
3632
+ "%.4.`...:.`.:..:..%",
3633
+ "%.:..``..`.6....4#%",
3634
+ "%..#.:.`.`...``...%",
3635
+ "%%#:...``````..`..%",
3636
+ " %#4...:````..:.`.%",
3637
+ " %..:..4.`..4:.4..%",
3638
+ " %4..#...`...#..:.%",
3639
+ " %.##...`.4:..#...%",
3640
+ "%%##.4.`:....##...%",
3641
+ "%..:.:....:...%%%%%",
3642
+ "%%%%%%%%%%%%%%% "
3643
+ ]
3644
+ },
3645
+ {
3646
+ "name": "Orc Town -ES-",
3647
+ "type": "Medium vault (new)",
3648
+ "rating": 10,
3649
+ "rows": 22,
3650
+ "columns": 21,
3651
+ "min-depth": 10,
3652
+ "max-depth": 40,
3653
+ "D": [
3654
+ "%%%%%%%%%%%%%%%%%%%%%",
3655
+ "%oooo;;;;;o#...^.$.1%",
3656
+ "%o##oT;;;;o#######.#%",
3657
+ "%###o..;;;oooooo`#$6%",
3658
+ "%]5#oo./ooooo.ooo###%",
3659
+ "%$####..//oo...:$:::%",
3660
+ "%ooo7#..///...:3$o::%",
3661
+ "%###^#...//ooooo:**:%",
3662
+ "%..oo#..oo/ooooo$**:%",
3663
+ "%o####..o/////oo:$:*%",
3664
+ "%..o.#..o/////oo:o$$%",
3665
+ "%###o#..o/////.::ooo%",
3666
+ "%ooo^.o...oo///.$ooo%",
3667
+ "%.#^^oooo./..//.o$..%",
3668
+ "%###.oooo........oo.%",
3669
+ "%..3..oo..oooo..;;.#%",
3670
+ "%###########o##..T.#%",
3671
+ "%w.o+...+.oo..#ooo.T%",
3672
+ "%...##+##+####+###o#%",
3673
+ "%w..#..#wI..w#I..#.o%",
3674
+ "%w.w#ww#I...w#I.I#..%",
3675
+ "%%%%%%%%%%%%%%%%%%%%%"
3676
+ ]
3677
+ },
3678
+ {
3679
+ "name": "Water-Troll Swamp",
3680
+ "type": "Medium vault (new)",
3681
+ "rating": 10,
3682
+ "rows": 22,
3683
+ "columns": 30,
3684
+ "min-depth": 20,
3685
+ "max-depth": 60,
3686
+ "D": [
3687
+ " %%%%%%%%%%%%%%%%%%%%%%%%%",
3688
+ " @@@@@;//////////////////////%",
3689
+ " @TTT#.//////////////////////%",
3690
+ " @TTT#;./////////////////////%",
3691
+ " @TTT#;..;;///////////;;/////%",
3692
+ " @TTT+/.;..;/////////;;;;////%",
3693
+ "%@####..;.TT//.///////;//////%",
3694
+ "%;/;/..T;TT/T.///////////////%",
3695
+ "%;;;T;TT.T;/;;////////////...%",
3696
+ "%;;T..;T.;//./;//;/T.///./.T.%",
3697
+ "%.;TT..;TT/.//./T/T;.//././.;%",
3698
+ "%.TT;.T.T/;.;/./.T/T/TT//T/;.%",
3699
+ "%;///TT;/;T;;T//T;///T;///T.T%",
3700
+ "%;;//T.T/TT;T..//TT./T./;T;.;%",
3701
+ "%;TTT.T./;..T;;.;//T.//;..//.%",
3702
+ "%.....;/T.T;//...T//./...///.%",
3703
+ "%..TT;/T.;TT///;TT;//T.;.//;.%",
3704
+ "%.;T;/;....;///....//;..T....%",
3705
+ "%T///..;.T.///;TT;..//;...;..%",
3706
+ "%/T;.../..;//..T..T;//.;...//%",
3707
+ "%.....//..T..;.....T.//...T./%",
3708
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
3709
+ ]
3710
+ },
3711
+ {
3712
+ "name": "Fire Festival",
3713
+ "type": "Medium vault (new)",
3714
+ "rating": 15,
3715
+ "rows": 22,
3716
+ "columns": 33,
3717
+ "min-depth": 60,
3718
+ "max-depth": 0,
3719
+ "flags": [
3720
+ "FEW_ENTRANCES"
3721
+ ],
3722
+ "D": [
3723
+ " ###### %%%#### ",
3724
+ " #``..#### %....`#### ",
3725
+ " ##...UU..##########`U..U```###",
3726
+ "####...UU...``.######``..UUU````#",
3727
+ "#...U...`````...U....`U...#####`#",
3728
+ "#..UU..UU```.......U``..##### ###",
3729
+ "%%%......U```.UU.`U.`.U##### ",
3730
+ " %##````U.U`````U```..##### ",
3731
+ " #####```U````````...###### ",
3732
+ " #####U.```UU``````UU....`%%% ",
3733
+ " #####.U``UUUU```````..U``..# ",
3734
+ " #######..``UUU77```````.``..U## ",
3735
+ "##.U.U..U```UUU77````U````U....##",
3736
+ "#......``````UU````UUUU..U..`...#",
3737
+ "%%%..UU```U```````UU..U.....``.##",
3738
+ " %#U```U....````UU.U``..`####%% ",
3739
+ " #UU`..U...``UU...``.U`U## ",
3740
+ " #UU....UU``...U...U````### ",
3741
+ " %%#...####``......U#####```### ",
3742
+ "%%...######`....U#### ##````# ",
3743
+ "%..U.# #`..U..%# ##``## ",
3744
+ "%##### #####%%% #### "
3745
+ ]
3746
+ },
3747
+ {
3748
+ "name": "Haunted Bat Cave -ES-",
3749
+ "type": "Medium vault (new)",
3750
+ "rating": 5,
3751
+ "rows": 22,
3752
+ "columns": 22,
3753
+ "min-depth": 0,
3754
+ "max-depth": 45,
3755
+ "D": [
3756
+ " %%% %%% ",
3757
+ " %%b%%%.%% ",
3758
+ " %%bb%%..b%%% ",
3759
+ " %%......b...%% ",
3760
+ " %bb bb b b bb%% ",
3761
+ " %b##..b.1.b.bb% ",
3762
+ "%%b###b..11..b#% ",
3763
+ "%b.#####.....b## ",
3764
+ "%.bb####...1#### ",
3765
+ "%%%%###..bb###### %%% ",
3766
+ " %###....######%%|% ",
3767
+ " %...b.2.######\"G]% ",
3768
+ " %.b.b.:.:.####:G%% ",
3769
+ " %#bb.b.bbb.:::s3% ",
3770
+ " ##..bb.bbb.::sG%% ",
3771
+ " ##*b...b...:s].G% ",
3772
+ " ####.bbbb:.:..3.b%%",
3773
+ " @@@**b..b..##..:.:..%",
3774
+ " @5#*#.b.1.####bbb..%%",
3775
+ " @@@*#b....####bb%%%% ",
3776
+ " #bb.%%%.% %%%% ",
3777
+ " %%%%% %%% "
3778
+ ]
3779
+ },
3780
+ {
3781
+ "name": "The Hall of Eyes -ES-",
3782
+ "type": "Medium vault (new)",
3783
+ "rating": 8,
3784
+ "rows": 15,
3785
+ "columns": 7,
3786
+ "min-depth": 55,
3787
+ "max-depth": 75,
3788
+ "flags": [
3789
+ "FEW_ENTRANCES"
3790
+ ],
3791
+ "D": [
3792
+ " %%% ",
3793
+ " @+@ ",
3794
+ " @@.@@ ",
3795
+ "@@...@@",
3796
+ "@.....@",
3797
+ "@e./.e@",
3798
+ "@e./.e@",
3799
+ "@e./.e@",
3800
+ "@e./.e@",
3801
+ "@e./.e@",
3802
+ "@#.s.#@",
3803
+ "@e...e@",
3804
+ "@#s7s#@",
3805
+ "@@@~@@@",
3806
+ " @@@ "
3807
+ ]
3808
+ },
3809
+ {
3810
+ "name": "Mirrored script \"B\"s",
3811
+ "type": "Greater vault (new)",
3812
+ "rating": 15,
3813
+ "rows": 23,
3814
+ "columns": 33,
3815
+ "min-depth": 0,
3816
+ "max-depth": 0,
3817
+ "D": [
3818
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
3819
+ "%...............................%",
3820
+ "%...........@@.....@@...........%",
3821
+ "%........@@@@@@@+@@@@@@@........%",
3822
+ "%....@@@@@4444@@6@@4444@@@@@....%",
3823
+ "%...@@..444^^44@#@44^^444..@@...%",
3824
+ "%..@@..44^^^^^^@6@^^^^^^44..@@..%",
3825
+ "%..@..44^^^....@#@....^^^44..@..%",
3826
+ "%..@..44^^.....#6#.....^^44..@..%",
3827
+ "%..@@..44^^....@#@....^^44..@@..%",
3828
+ "%...@@@.44@@@@@@6@@@@@@44.@@@...%",
3829
+ "%.....@@@@@444^###^444@@@@@.....%",
3830
+ "%...@@@.44@@@@@@6@@@@@@44.@@@...%",
3831
+ "%..@@..44^^....@#@....^^44..@@..%",
3832
+ "%..@..44^^.....#6#.....^^44..@..%",
3833
+ "%..@..44^^.....@#@.....^^44..@..%",
3834
+ "%..@@..44^^^^^^@6@^^^^^^44..@@..%",
3835
+ "%...@@..444^^44@#@44^^444..@@...%",
3836
+ "%....@@@@@4444@@6@@4444@@@@@....%",
3837
+ "%........@@@@@@@+@@@@@@@........%",
3838
+ "%...........@@.....@@...........%",
3839
+ "%...............................%",
3840
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
3841
+ ]
3842
+ },
3843
+ {
3844
+ "name": "Huge castle",
3845
+ "type": "Greater vault (new)",
3846
+ "rating": 40,
3847
+ "rows": 31,
3848
+ "columns": 37,
3849
+ "min-depth": 80,
3850
+ "max-depth": 0,
3851
+ "D": [
3852
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
3853
+ "%...................................%",
3854
+ "%.^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^.%",
3855
+ "%.^.@@@@@...................@@@@@.^.%",
3856
+ "%.^.@.0.@...................@.04@.^.%",
3857
+ "%.^.@.4.@@@@@@@@@@@@@@@@@@@@@...@.^.%",
3858
+ "%.^.@....^........4........^....@.^.%",
3859
+ "%.^.@@@.4^....@+@@@@@@@....^4.@@@.^.%",
3860
+ "%.^...@^^@@@@@@^6^6^6^@@@@@@^^@...^.%",
3861
+ "%.^...@..@.6..@@@@@@@+@..6.@..@...^.%",
3862
+ "%.^...@.&@.44.@&...6.&@.44.@..@.&.^.%",
3863
+ "%.^...@..@...&+..6....+&...@.&@...^.%",
3864
+ "%.^...@.4@@@@@@.&...&.@@@@@@..@...^.%",
3865
+ "%.^...@..@..^^.@@@@@@@^..^.@..@...^.%",
3866
+ "%.^...@4.@^^^.^@88888@^^^.^@&4@...^.%",
3867
+ "%.^.4.@.&@^.^^^@88888@^.^.^@..@.4.^.%",
3868
+ "%.^..&@4.@.^^.^@88888@^^^.^@..@...^.%",
3869
+ "%.^...@..@^.^^^@@+++@@.^^^.@..@...^.%",
3870
+ "%.^...@..@@@@@+&@###@&+@@@@@.4@...^.%",
3871
+ "%.^...@&.@...&@@@999@@@&...@..@..&^.%",
3872
+ "%.^...@..@.44.@0000000@.44.@4.@...^.%",
3873
+ "%.^...@..@&66.+0000000+.66&@..@...^.%",
3874
+ "%.^...@^^@@@@@@@@@@@@@@@@@@@^^@...^.%",
3875
+ "%.^.@@@..^..^#6.6#^4.......^..@@@.^.%",
3876
+ "%.^.@....^..^@^^^@^.....4..^....@.^.%",
3877
+ "%.^.@...@@@@@@@+@@@@@@@@@@@@@..4@.^.%",
3878
+ "%.^.@.04@.....@.6^6.6^@.....@.0.@.^.%",
3879
+ "%.^.@@@@@.....@@@@@@@+@.....@@@@@.^.%",
3880
+ "%.^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^.%",
3881
+ "%...................................%",
3882
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
3883
+ ]
3884
+ },
3885
+ {
3886
+ "name": "Town",
3887
+ "type": "Greater vault (new)",
3888
+ "rating": 25,
3889
+ "rows": 15,
3890
+ "columns": 50,
3891
+ "min-depth": 30,
3892
+ "max-depth": 0,
3893
+ "flags": [
3894
+ "FEW_ENTRANCES"
3895
+ ],
3896
+ "D": [
3897
+ "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
3898
+ "@84#^..^.#.#44#.........#.9&...#.........#...#^@ ",
3899
+ "@44#.^.^.#.#44+....6....#&.&.9.#...##....#44.+^@ ",
3900
+ "@44#9^^^6#.#44#.........###+####...##....+..4#^@ ",
3901
+ "@44#..^^6+.####.&........&...........&...######@ ",
3902
+ "@##+######........#######.....6............^.#0@ ",
3903
+ "@.004#........&...#44444#^..........^........#+@% ",
3904
+ "@4..^#..^.........#44444+^.......&.......&...+++% ",
3905
+ "@.&..#&..###.###..#44444#^.&...6.......6.....#+@% ",
3906
+ "@...&+...#9#.#9#..#44444#.................&..#0@ ",
3907
+ "@#####...#+#.#+#..#######...##+#...##+#......##@ ",
3908
+ "@&...+..&...^.....&.....&...#44#.&.#44#........@ ",
3909
+ "@....@#@.#+#.#+#..#+#.#+#...####...#44#.....&..@ ",
3910
+ "@....@7@.#9#.#9#..#9#.#9#...^.....&#44#........@ ",
3911
+ "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ "
3912
+ ]
3913
+ },
3914
+ {
3915
+ "name": "Mortuary temple of Set",
3916
+ "type": "Greater vault (new)",
3917
+ "rating": 30,
3918
+ "rows": 25,
3919
+ "columns": 34,
3920
+ "min-depth": 30,
3921
+ "max-depth": 0,
3922
+ "D": [
3923
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
3924
+ "%................................%",
3925
+ "%.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.%",
3926
+ "%.@^+44&&&@44+.....+44@&@44@&@9@.%",
3927
+ "%.@.@@@@@@@47@^@&@^@47@4@44@&@9@.%",
3928
+ "%.@^+44&&&@@@@^&0&^@44@^@44@0@9@.%",
3929
+ "%.@.@@@@@@@44@.@&@.@@@@.@44@^@9@.%",
3930
+ "%.@^+44&&&@44+.^.^.+..@.@44@^@^@.%",
3931
+ "%.@.@@@@@@@@@@@@+@@@@@@+@++@+@+@.%",
3932
+ "%.@^@&@&@&@&&@4+.+4@&&@...^+^..@.%",
3933
+ "%.@+@4@4@4@44@@@.@@@44@^^^^+^..@.%",
3934
+ "%.@^@^@^@^@44@4@.@4@44@.^@@@@@@@.%",
3935
+ "%.@.@+@+@+@^^@4@.@4@^^@^.@44444@.%",
3936
+ "%.@^+.....@++@+@+@+@++@..@4@4@4@.%",
3937
+ "%.@.@@@@@@@^^^.^^^.^^^@^^@44444@.%",
3938
+ "%.@^@&@&@&@@@@^...^@@@@..@4@4@4@.%",
3939
+ "%.@.@4@4@4@44+.@&@.+44@^.@44444@.%",
3940
+ "%.@^@^@^@^@@@@..6..@@@@^^@4@4@4@.%",
3941
+ "%.@.@+@+@+@44+^@&@^+44@.^@44444@.%",
3942
+ "%.@^@.....@@@@^...^@@@@^^@4@4@4@.%",
3943
+ "%.@.@&@4@&@44@^@&@^@44@..@44444@.%",
3944
+ "%.@^+^^^^^+..+^^^^^+..+..@44444@.%",
3945
+ "%.@@@@@@@@@@@@@@+@@@@@@@@@@@+@@@.%",
3946
+ "%................................%",
3947
+ "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
3948
+ ]
3949
+ },
3950
+ {
3951
+ "name": "Chest",
3952
+ "type": "Greater vault (new)",
3953
+ "rating": 30,
3954
+ "rows": 11,
3955
+ "columns": 39,
3956
+ "min-depth": 60,
3957
+ "max-depth": 0,
3958
+ "flags": [
3959
+ "FEW_ENTRANCES"
3960
+ ],
3961
+ "D": [
3962
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
3963
+ "%+0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0@ ",
3964
+ "%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@ ",
3965
+ " @0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0@ ",
3966
+ " @#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
3967
+ " @0#0#0#0#8#888888~~~888888#8#0#0#0#0@ ",
3968
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@ ",
3969
+ " @0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0@ ",
3970
+ " @#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%",
3971
+ " @0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0+%",
3972
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%"
3973
+ ]
3974
+ },
3975
+ {
3976
+ "name": "The Plains of Air",
3977
+ "type": "Greater vault (new)",
3978
+ "rating": 10,
3979
+ "rows": 42,
3980
+ "columns": 64,
3981
+ "min-depth": 35,
3982
+ "max-depth": 50,
3983
+ "D": [
3984
+ " %%%%%% ",
3985
+ " %....%%% %%%%%%% %%%%%%%%% ",
3986
+ " %......%%%%%% %.....%%%%%.......%%% ",
3987
+ " %%%.........%%%%%%%%%%%............E.....*%%%% ",
3988
+ " %%................................******...%%% ",
3989
+ " %.....v.......:....E..............****......% ",
3990
+ " %%..........:::...........v............E....%% ",
3991
+ " %%%%.....v..::.:...............................% ",
3992
+ " %....................................:....v....%%% ",
3993
+ " %%.........................:......................%% ",
3994
+ " %.......E.............:....E...............E.......%%%%%%% ",
3995
+ " %................E....:::.:......:........v......v.......% ",
3996
+ " %%%......v.....*.........:........:.::...................% ",
3997
+ " %%...........**.........:.v......:.:.............E.....% ",
3998
+ " %...........****..........v...E.:..:..................% ",
3999
+ " %%............***..E..E..........:.....................% ",
4000
+ " %..............***.........v...........................%%% ",
4001
+ " %.............**.*...............................*.......% ",
4002
+ " %%...v....E....*...:...................E..........**......%% ",
4003
+ " %%...................::...........................**....:..E%%",
4004
+ " %%.....v..v.........:::::..E....v........v.........*....::....%",
4005
+ " %..**.............::::::::..E.........................:.:..%%%%",
4006
+ " %%..**.....E.........:::::::........###.......E.......::::.% ",
4007
+ " %..**.................:::...........####...v.......::.::.%% ",
4008
+ " %%..*..#..........E..::..............####................% ",
4009
+ " %.....#......v......:..........::....E.#................% ",
4010
+ " %%....##.....................:::.....E##................% ",
4011
+ " %...###...........................E.##.................%% ",
4012
+ " %%..###.v..v...:.....E........................:..........%% ",
4013
+ " %....#....................................::...:::.......% ",
4014
+ " %%%%........................**..........::.E::...::.:.......% ",
4015
+ "%%..................E.........***..........:.::..::........%%% ",
4016
+ "%..............................****........::.::.:.::..E...% ",
4017
+ "%%.....v.......E................*****....:..:::::::::......% ",
4018
+ " %...........................****...*.....:...:...:.......%% ",
4019
+ " %%.................v...v.....*....v........::........E..%% ",
4020
+ " %......v.......................Ev......v.::..........%%% ",
4021
+ " %%................%%%...............v..v............%% ",
4022
+ " %%....%%%%%.....%% %......%%%%%..............%%%%%%% ",
4023
+ " %.%%%% %%...%% %%%%%%%% %%%%%%.......%%% ",
4024
+ " %%% %...% %%%%%%%%% ",
4025
+ " %%%%% "
4026
+ ]
4027
+ },
4028
+ {
4029
+ "name": "The Mirrormere",
4030
+ "type": "Greater vault (new)",
4031
+ "rating": 35,
4032
+ "rows": 33,
4033
+ "columns": 31,
4034
+ "min-depth": 45,
4035
+ "max-depth": 70,
4036
+ "flags": [
4037
+ "FEW_ENTRANCES"
4038
+ ],
4039
+ "D": [
4040
+ " %%% ",
4041
+ "@@@@@@@@@@@@@@@+@@@@@@@@@@@@@@@",
4042
+ "@###4#::#:.4@@@.@@@@@.#4##:9@#@",
4043
+ "@@@4@@@:#@::@@@.@@@#@..##::##:@",
4044
+ "@8@4@#.:................#::#:4@",
4045
+ "@9@.@#:..................:::@@@",
4046
+ "@9@4@:...................:#@@4@",
4047
+ "@.#@@.....///////////...:.:@44@",
4048
+ "@@@@.##...///////////....::#@@@",
4049
+ "@#::6:....///////////...::##:5@",
4050
+ "@@@@.#:...///////////.....:#@@@",
4051
+ "@##4:...../////*/////....:.::4@",
4052
+ "@@@::#:...//*//*//*//...:#####@",
4053
+ "@9@#.:....///*****///.....:###@",
4054
+ "@9@::.#...////***////....:.:@8@",
4055
+ "@##:#:....///////////...:::##@@",
4056
+ "@8@#:.:...///////////....::@9@@",
4057
+ "@@@4##....///////////....##@@@@",
4058
+ "@4#:::#...///////////....:#:#4@",
4059
+ "@##:::#...///////////...:.:@@:@",
4060
+ "@0:#@@@...///////////....#:@#9@",
4061
+ "@##.#9@...///////////...:##@:4@",
4062
+ "@:##@@@...///////////....#:@@@@",
4063
+ "@@@#::....///////////....:.:#4@",
4064
+ "@40@:.....///////////.....#.:#@",
4065
+ "@::@.#:...///////////...:.@@@4@",
4066
+ "@@@@#:...................:@.:@@",
4067
+ "@4@##.:.................:@@:@:@",
4068
+ "@4@##@@::..............::@.:@@@",
4069
+ "@@::44@:::#:@@@.@@@.@.@.#@@.::@",
4070
+ "@8@044@:#::4@@@.@@@..9@#:8@@@8@",
4071
+ "@@@@@@@@@@@@@@@+@@@@@@@@@@@@@@@",
4072
+ " %%% "
4073
+ ]
4074
+ },
4075
+ {
4076
+ "name": "Large Mine - DRL",
4077
+ "type": "Greater vault (new)",
4078
+ "rating": 20,
4079
+ "rows": 43,
4080
+ "columns": 66,
4081
+ "min-depth": 0,
4082
+ "max-depth": 45,
4083
+ "flags": [
4084
+ "FEW_ENTRANCES"
4085
+ ],
4086
+ "D": [
4087
+ " %%%%%%% %%%%%%%%% ",
4088
+ " @@@@@@#####.....##@@@@@######.....**########@@@@#######@@@@ ",
4089
+ " @@#########...#...###@@#######**...4.#####@@@@@####..######@@ ",
4090
+ " @@#####....::.###..########..*****#.....###@@@###........####@@@ ",
4091
+ " @#####......######.####**.....:&.#*###66..######oooo##....:.###@ ",
4092
+ " ####....######oo###.#**#.::.###....#*##..########oooo####....### ",
4093
+ " ###..#######oooooo#***#.....#####...#***#..####ooooooo#####.&.## ",
4094
+ " ###.######oooo#**ooo####...########...#*****#oooo###ooo######.## ",
4095
+ " ####&...##**#oo#*oooo####...#####.......##***#oooo##oooo#####.:# ",
4096
+ " #####...***oooo###oo####..######....#....##****#####ooo#####**.#%",
4097
+ " ###***...####oo##oo#####...6##########...###*0**##ooo####*****..%",
4098
+ "%#***##....#######o#######.....#######...####****ooo###*******##.%",
4099
+ "%**#####...#####oooo#######..:..#####...####**##oooo###0#@@#####.%",
4100
+ "%@@#####..#**###oooo###@@###.&$..####44######*##ooo####@@@@@@####%",
4101
+ " @@@*##..###****#ooo##@@@###...#.7###4###@@@####oo####@@@**@@@### ",
4102
+ " @@@*###..##@##***oo##@@@@####...########@@@@###o####@@*****@@@@@ ",
4103
+ " @@@@*##.###@@#####..***@@@##...#####9####@@@@#####@@@###.####@@@ ",
4104
+ " @@##*#:###@@####...##***@@##..#####..#####@@@@@@@@@@###..T#####@ ",
4105
+ " @###*:####@#####..#####*****.#####.#.######@@@@#######...#T##### ",
4106
+ " #####.######.....########..:.::..........###########...###TT#### ",
4107
+ " ####..**##....#...&........##**#######...&.#####........###TTT## ",
4108
+ " ####.###*....#########....#####*****###......##....##########TT# ",
4109
+ " ###..###....#############....###*0***#.....#*###...########TTT## ",
4110
+ " ####.#...###***#9..#########....***#....##****###**######....### ",
4111
+ " ####....######****...TT#######....##...##***0@@@##***#@##..##### ",
4112
+ " #####..:##@@@#******..TTTTT#####......####****######*##...###### ",
4113
+ " ######...####**0**########........###ooo####***#####:::######@@@ ",
4114
+ " #####......###****##########*#########oooo#########......:.##### ",
4115
+ " ####ooooooooooo#*****####4###*#######oooooooo####.....##.&..6### ",
4116
+ " ###oooo#oooooooooo##****##.###****##ooooooooooooooooo#####....## ",
4117
+ " ##.ooo##oo$$ooooooooo#####.####*###ooo###ooooooooooo#*####***.## ",
4118
+ "%#..oooo#oooooo$$oooooo###.#########oo###...####...#########**### ",
4119
+ "%...$ooooooo##oooooooooo#&###*******####&.....#####*############# ",
4120
+ "%##...$ooooooooo###oooooo##***@@@##***#...###..:..#####@@@@###:##%",
4121
+ " ##.oo###oooooo#####oooo#####@@@####***#...#####.....###@@@@##::.%",
4122
+ " ###oo####ooo**#############@@@@@#############...############:...%",
4123
+ " ####ooo##oo##***###ooo#######@@######*****#......::..######...##%",
4124
+ " ##***oooooo####**ooo##############*****##.....######.....6..#### ",
4125
+ " ###****.....####...####################2...#*################### ",
4126
+ " ########.........#########.....#######...####*****############## ",
4127
+ " ###############.............##....22...############@@@@@@@@@@@@@ ",
4128
+ " @@@@@##############...##########################@@@@ ",
4129
+ " %%%%% "
4130
+ ]
4131
+ },
4132
+ {
4133
+ "name": "Dungeon City - DRL",
4134
+ "type": "Greater vault (new)",
4135
+ "rating": 30,
4136
+ "rows": 42,
4137
+ "columns": 66,
4138
+ "min-depth": 0,
4139
+ "max-depth": 0,
4140
+ "flags": [
4141
+ "FEW_ENTRANCES"
4142
+ ],
4143
+ "D": [
4144
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ ",
4145
+ " @...........+6#.........#666#.#6^5#.#5+^44#.+^4#.#7+^66#.......@ ",
4146
+ " @.#########.#^#.#######.#^^^#.#+###.#6##+##.####.###^^^#..####.@ ",
4147
+ " @.#565+^56#.#+#.#^^^+5#.+^+##.......###............##+###.#65#.@ ",
4148
+ " @.#^^6#^65#.#5#.#+#####.###7#.#####.....;.;;.;;;.;.#^^^^+.##+#.@ ",
4149
+ " @.#+#######.###.#66#......###.+4#5#.#+#..;;.;;;..;.#566^#.+^^#.@ ",
4150
+ " @.#^^#..........#44#.####.....#^+6#.#4#.;..;///;;..#544##.####.@ ",
4151
+ " @.#44#.########.##+#.#6^###./.#4###.###.;;.///;;.;.#####.......@ ",
4152
+ " @.+44#.#$$$$$$#......#6^+7#./.###.......;...///..........###.##@ ",
4153
+ " @.####.#$#++#$#.###.##+####.......#####...;;;....;.###.###5#.#5@ ",
4154
+ " @......#$#66#$#.+4#.#^^^#...#+#...#656#.;.;.;;.;.;.#4+.#^+##.#6@ ",
4155
+ " @####..###++###.###.#646#.###^###.#+#+#............#^#.+^^#..#+@ ",
4156
+ " @65^###;;;^^;;;.....###+#.#5+^+5#.#^#^#.##+#.###..##+#.#64#.##^@ ",
4157
+ " @56^+4+.........###.......#######.+4#4+.#44#.#7#..#^^#.####.#55@ ",
4158
+ " @######.#+#.#####6##.####.........#####.#+##.#+##.#65#......#66@ ",
4159
+ " @.......#4#.+44^#^5#.#56#//////////////.#44+.#^^#.####.####.#44@ ",
4160
+ " @.###.###^#.#44^+^6#.#^^#/@@@//////@@@/.####.#0^#......#77#.#+#@ ",
4161
+ " @.#4#.#5+^#.#44^#^####+##/@9@@@@@@@@9@/......##+##.######+#....@ ",
4162
+ " @.#+#.#6###.#######44444#/@@+^0+6^^+@@/###.####^5#.#666+^^#.###@ ",
4163
+ "%@.#^#.###.........##+####//@7^6#6^0^@//#9#.#66+^6#.#^^6#00#.+^4@ ",
4164
+ "%+.#+#.....#####.//.......//@######+@@//#+#.#+#####.#+######.###@%",
4165
+ "%+.......###^44+.//.####+#//@~#6^0^^#^^^^.......................+%",
4166
+ "%@######.#6#+###.//.#65#4#//@8#6^0^^#^^^^.......................+%",
4167
+ " @6^#^4+.#565#......#56#4#//@######+@@//#+#.####.###+#.####.####@%",
4168
+ " @5^+^4#.#####.######6^#4#//@7^6#6^0^@//#9#.#70#.#5^^#.#65#.+6+5@ ",
4169
+ " @^^#^4#.......+6^+7#5^+^#/@@+^0+6^^+@@/###.#^^#.##65#.#+##.####@ ",
4170
+ " @+#####.#####.#6^########/@9@@@@@@@@9@/....##+#..#6##.#^+......@ ",
4171
+ " @^#.....#66^+.####////////@@@//////@@@/.####^6##.###..#^##.####@ ",
4172
+ " @7#.#+#.##+##..////////////////////////.#7^+^64+.....##65#.+4#5@ ",
4173
+ " @##.#4#.#7##/.////.;.#######............########.###.#765#.#4+6@ ",
4174
+ " @...#^#.###//.//.;;..+^4^11#.###+###.............#0#.#####.####@ ",
4175
+ " @##.#6#..///.;.;..;..#^4^66#.#7#^#9#.###....###.##+#...........@ ",
4176
+ " @^+.#+##///;..;.;.;;.###^^1#.#6+6+##.#]######|#.#66####.######.@ ",
4177
+ " @4#.#65#//...;...;.....#+###.####65#.##+^66^+##.#111#5#.#^+^0#.@ ",
4178
+ " @##.####//.;;..;.;.###.#7#......####.6+^^66^^#..#^^^+6#.#^####.@ ",
4179
+ " @......///...;.;;..#7#.###.####......##+^66^+##.#+#####.#6+....@ ",
4180
+ " @.####.//#+#.......#+#.....#56####+#.#]######|#.........#+####.@ ",
4181
+ " @.+44#///#4#.#####.#^###.###^611^+^#.###....###.####.####^^11#.@ ",
4182
+ " @.#44#//##+#.+4^4#.#66^+.#7+^611^###............#56#.#56+6511#.@ ",
4183
+ " @.####//#^^#.#####.#44^#.#########...#####.######^5#.#########.@ ",
4184
+ " @.....//#56#.......#111#...........//#4+4+.+4^+^+^6#...........@ ",
4185
+ " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ "
4186
+ ]
4187
+ },
4188
+ {
4189
+ "name": "The Cracks of Doom - DRL",
4190
+ "type": "Greater vault (new)",
4191
+ "rating": 15,
4192
+ "rows": 30,
4193
+ "columns": 60,
4194
+ "min-depth": 50,
4195
+ "max-depth": 0,
4196
+ "flags": [
4197
+ "FEW_ENTRANCES"
4198
+ ],
4199
+ "D": [
4200
+ "%%%% ",
4201
+ "%``@@@@@@@@@@@@@@@@@@@ ",
4202
+ "%````.....##.##.9....@@@@@@@@@@@@@@ ",
4203
+ "%@`````......####.##..##.##.##...7@@@@@ ",
4204
+ " @..`````..`...#####...6.###..........@@@@@@@@@@@ ",
4205
+ " @....`````........###..##.....9....###.##.7##..@@@ ",
4206
+ " @#.....`````........##.....###...#####....##.....@@@@ ",
4207
+ " @##.....``````7``....#.......#########..0.##.9..###.@@ ",
4208
+ " @.#.....``.`````...............#######...##....####..@@ ",
4209
+ " @#.......``..`````..................####.#...###..##..@@ ",
4210
+ " @#....6..``...7````````#7#...............#..##.#.......@ ",
4211
+ " @.........``..###``````###.....................##..9...@ ",
4212
+ " @...#......``..7#..```````........6.............##....#@@ ",
4213
+ " @.#.##......`````...9````````7...............6...#...##.@ ",
4214
+ " @##.##.........`````````````````.................#..###.@@ ",
4215
+ " @...###...#.......````````````````````.............##....@ ",
4216
+ " @@...##..#...###.....`......``````````````........##..9..@ ",
4217
+ " @...##..##.##......`..........````````8=````......#....#@ ",
4218
+ " @@..##...##......................```````...```....##..##@ ",
4219
+ " @9##..0.###.......0................``````....`.......#.@ ",
4220
+ " @@@....##...#..............#........```````...........@@ ",
4221
+ " @@@.##....#.............###.......`...`````.........@ ",
4222
+ " @.#.9####..###.......##........``.....`````.......@@ ",
4223
+ " @@@.####..6..##....#####......``...#...``````......@ ",
4224
+ " @@@@......###...###....0...``...###.....`````....@ ",
4225
+ " @@@@@@.##..####..........`....##.......`````..@ ",
4226
+ " @@@@@@.####.............6.###.......`````@%",
4227
+ " @@@@..##.##........@@@...........````%",
4228
+ " @@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@``%",
4229
+ " %%%%"
4230
+ ]
4231
+ },
4232
+ {
4233
+ "name": "Small Labyrinth - DRL",
4234
+ "type": "Greater vault (new)",
4235
+ "rating": 15,
4236
+ "rows": 21,
4237
+ "columns": 36,
4238
+ "min-depth": 0,
4239
+ "max-depth": 0,
4240
+ "D": [
4241
+ " %%%%%%%%%% ",
4242
+ " %%%%%...4....%%%%% ",
4243
+ " %%%%....@@@+@@@@....%%%% ",
4244
+ " %%%...@@@@@...@..@@@@@...%%% ",
4245
+ " %%..@@@@.4..@@@@+@....@@@@..%% ",
4246
+ " %%.@@@..&@@@@@..@.@@@@@...@@@.%% ",
4247
+ " %%.@@..@@@@..&.@+@@..6.@@@@.4@@.%% ",
4248
+ " %.@@.@@@...@@@@@.@@@@@@.&.@@@.@@.% ",
4249
+ "%%.@.@@..@@@@..&.@@..&.@@@@..@@.@.%%",
4250
+ "%4@@.@.@@@...@@@@@@+@@@...@@@.@.@@.%",
4251
+ "%.@.@@&@@.@@@@79.....7@@@@.@@.@@.@.%",
4252
+ "%.@@.@.@@@.&.@@@@@@@@@@.&.@@@.@&@@.%",
4253
+ "%%.@.@@..@@@@...&@@.6..@@@@..@@.@4%%",
4254
+ " %.@@.@@@6..@@@@@..@@@@@.&.@@@.@@.% ",
4255
+ " %%.@@..@@@@....@@@@....@@@@..@@.%% ",
4256
+ " %%.@@@...@@@@@.&..@@@@@...@@@.%% ",
4257
+ " %%..@@@@..&.@@@@@@.4..@@@@..%% ",
4258
+ " %%%...@@@@@......@@@@@...%%% ",
4259
+ " %%%%....@@@@@@@@....%%%% ",
4260
+ " %%%%%.4......%%%%% ",
4261
+ " %%%%%%%%%% "
4262
+ ]
4263
+ },
4264
+ {
4265
+ "name": "High Temple of the Underworld",
4266
+ "type": "Greater vault (new)",
4267
+ "rating": 45,
4268
+ "rows": 40,
4269
+ "columns": 53,
4270
+ "min-depth": 90,
4271
+ "max-depth": 0,
4272
+ "flags": [
4273
+ "FEW_ENTRANCES"
4274
+ ],
4275
+ "D": [
4276
+ "%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%% ",
4277
+ "%..................@@@@@@@@..................@@@@@@@@",
4278
+ "%..@@@@@@@@@@@@@@@.@.W....@..................@LL....@",
4279
+ "%..@7@.W.W....W..@.@.W.W.W@..............@@@@@....LL@",
4280
+ "%..@@#....W.W...W+.+......@..............@..L.LL....@",
4281
+ "%..@@#.W.W..W....+.+..W..W@..............+...L...LL.@",
4282
+ "%..@7@....W...W..@.@.W....@..............@L.L....L..@",
4283
+ "%..@@@@@@@++@@@@@@.@..W..W@..............@@@@@++@@@@@",
4284
+ "%..................@@@++@@@.........................@",
4285
+ "%...................................................@",
4286
+ "%...................................................@",
4287
+ "%...................................................@",
4288
+ "%...................................................@",
4289
+ "%......................@@@@@@@@@@@@@@@@@@@@@@@@@....@",
4290
+ "%@@@@@@@+@@@@@@@.......@..W...........W........@.s..@",
4291
+ " @G#G#G#.#G#G#G@.......@.......@@@@@@@@@..W....@....@",
4292
+ " @#...s.......#+.......@..*..*.@=_~=-#@@.*..*..@....@",
4293
+ " @G.#.#.#.#.#.G@.......@...G...@~--\"_@m@.....W.@....@",
4294
+ " @#...........#@.......@....L..@-_\"-=@m@.....L.@....@",
4295
+ " @G.#.#.#.#.#.G@.......@.s*..*.@-=~\"-@m@.*..*..@....@",
4296
+ " @#.......G...#@.......@...G...@@@@@@@#@......W@s...@",
4297
+ " @G.#.#.#.#.#..+.......@......G..W......L...G..@....@",
4298
+ " @#...........#@.......@..*..*GG*..*..*..*..*..@...s@",
4299
+ " @GG#.#.#.#.#.G@.......@...G........W..........@....@",
4300
+ " @#......G....#@.......@.........W......LL.....@....@",
4301
+ " @G.#.#.#.#.#.G@.......@.W*..*..*..*..*..*..*W.@....@",
4302
+ " @#..G........#+.......@..G..L.........W.......@..s.@",
4303
+ " @G#G#G#.#G#G#G@.......@............L..........@....@",
4304
+ "%@@@@@@@+@@@@@@@.......@.W*..*..*..*..*..*..*..@....@",
4305
+ "%......................@..........G..........W.@....@",
4306
+ "%......................@...L..W..........L.....@....@",
4307
+ "%......................@..*..*L.*..*..*..*..*..@....@",
4308
+ "%......................@..G..L.........W.....G.@....@",
4309
+ "%......................@.......W..............s@....@",
4310
+ "%......................@@@@@@@@@@@+++@@@@@@@@@@@....@",
4311
+ "%..........@....s.@.............................s...@",
4312
+ "%..........@.s....@.................................@",
4313
+ "%..........@....s.@.................................@",
4314
+ "%..........@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
4315
+ "%%%%%%%%%%%% "
4316
+ ]
4317
+ },
4318
+ {
4319
+ "name": "Golden Flower ",
4320
+ "type": "Greater vault (new)",
4321
+ "rating": 15,
4322
+ "rows": 22,
4323
+ "columns": 36,
4324
+ "min-depth": 30,
4325
+ "max-depth": 0,
4326
+ "flags": [
4327
+ "FEW_ENTRANCES"
4328
+ ],
4329
+ "D": [
4330
+ " @@@@@@@@@@ ",
4331
+ " @@@@@9*;**;*9@@@@@ ",
4332
+ " @@@@^@@@@@;**;@@@@@^@@@@ ",
4333
+ " @@@^**/9@^^@;@@;@^^@9/**^@@@ ",
4334
+ " @@^^0*@@@@0.@;@@;@.9@@@@*0^^@@ ",
4335
+ " @@^**^^@^^*@;;;@@;;;@*^^@^^**^@@ ",
4336
+ " @@^/*@@@@^0@@;@@@@@@;@@0^@@@@*/^@@ ",
4337
+ " @^^//@^.*@@@;;;@~~@;;;@@@*.^@//^^@ ",
4338
+ "@@^///@^9@@9;;*@@**@@*;;9@@0^@///^@@",
4339
+ "@^^*^/@@@*@@@@@@*88*@@@@@@*@@@/^*^^@",
4340
+ "@^***^/////@~*8******8*~@/////^***^@",
4341
+ "@^^*^/@@@*@@@@@@*88*@@@@@@*@@@/^*^^@",
4342
+ "@@^///@^0@@9;;*@@**@@*;;9@@9^@///^@@",
4343
+ " @^^//@^.*@@@;;;;;;@;;;@@@*.^@//^^@ ",
4344
+ " @@^/*@@@@^0@@;@@@@@@;@@0^@@@@*/^@@ ",
4345
+ " @@^**^^@^^*@;;;@*;;;@*^^@^^**^@@ ",
4346
+ " @@^^0*@@@@9.@;@@;@.0@@@@*0^^@@ ",
4347
+ " @@@^**/9@^^@;*@;@^^@9/**^@@@ ",
4348
+ " @@@@^@@@@@;@@;@@@@@^@@@@ ",
4349
+ " @@@@@;;;@*;;;@@@@@ ",
4350
+ " @@@@@@@@%@ ",
4351
+ " %%% "
4352
+ ]
4353
+ }
4354
+ ]
4355
+ }