forked from theaspect/ror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
5922 lines (5921 loc) · 421 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"type": "ruins",
"name": "uderest's tower",
"x": 515, "y": 44, "id": 0,
"visited": true,
"comment": "Words to #231",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "EYE-SPLINTER", "foe-red-goblins": 0,
"foe-blue-goblin": 2, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 4, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 1200, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 1, "loot-armor-rack": 1, "loot-big-golden-chest": 0,
"loot-book": 1, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "icefield",
"x": 459, "y": 48, "id": 1,
"visited": true,
"comment": "Kill shaman. Rumors about mighty weapon in mountains.",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 3, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "INCRED THE TOE-POKER", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 600, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "fire-bite's domain",
"x": 580, "y": 52, "id": 2,
"visited": true,
"comment": "Quested in #11",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 3, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "HOTBREATHER THE FIRE-BITE", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 400, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "desolate town",
"x": 625, "y": 53, "id": 3,
"visited": true,
"comment": "Quested in #16",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 3, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 450, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 2, "loot-armor-rack": 2, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "ruins",
"name": "concealed ruins",
"x": 803, "y": 58, "id": 4,
"visited": true,
"comment": "Wide beacon open #45",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 1, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 5, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 700, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 0, "loot-golden-chest": 1, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "lingering blue camp",
"x": 669, "y": 60, "id": 5,
"visited": true,
"comment": "Runes ᚫᚩᚾUᛖᛎ to #14",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 7, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 600, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "beastmaster's camp",
"x": 492, "y": 61, "id": 6,
"visited": true,
"comment": "You can hire a white wolves",
"friendly": true,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 200, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 1, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "blue skin camp",
"x": 419, "y": 63, "id": 7,
"visited": true,
"comment": "",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 9, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 800, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 2, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 1, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "ruins",
"name": "forthgrit",
"x": 716, "y": 63, "id": 8,
"visited": true,
"comment": "See runes then go to #215. Forthgrit unlocked in #11",
"friendly": true,
"contain": {
"beacon-hall": 1, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 800, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 1, "loot-golden-chest": 1, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 3, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "city",
"name": "snowy howel",
"x": 540, "y": 64, "id": 9,
"visited": true,
"comment": "Kill 3 slug queens #23, #29, #43. Reward is GERIG'S BLISTERING ICE CLEAVER w 24.5k",
"friendly": true,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 500, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 1, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "fort",
"name": "blue skin camp",
"x": 388, "y": 83, "id": 10,
"visited": true,
"comment": "Quested in #17",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "FRITZ FROZEN-NIPPLE", "foe-red-goblins": 0,
"foe-blue-goblin": 8, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 500, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 2,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "cotton flush",
"x": 592, "y": 83, "id": 11,
"visited": true,
"comment": "Quest to revenge to fire-bite in #2. Tells about #8.",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 870, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 1, "sp-stone": 0, "sp-cotton": 2, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 1, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "ice druid camp",
"x": 640, "y": 86, "id": 12,
"visited": true,
"comment": "Quested in #53",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 6,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "THE ICE DRUID", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 960, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "icefield",
"x": 744, "y": 86, "id": 13,
"visited": true,
"comment": "Quested in #16",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "GRAB-TOE THE CREEP", "foe-red-goblins": 0,
"foe-blue-goblin": 9, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 1450, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 1, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 1, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 1,
"building-blacksmith": 0, "building-small-apothecary": 1, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "ruins",
"name": "tricky ruble",
"x": 780, "y": 86, "id": 14,
"visited": true,
"comment": "Hammerhand clan's weapon. Runes from #5 ᚫᚩᚾUᛖᛎ. MANIPULATOR'S MAUL (100 conversion w 5.6k)",
"friendly": true,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 600, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 1, "loot-secret": 1, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "black pines",
"x": 457, "y": 90, "id": 15,
"visited": true,
"comment": "Quested in #17",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "THE BLACK WORG", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 2, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 500, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 1, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "city",
"name": "icefield settlement",
"x": 819, "y": 93, "id": 16,
"visited": true,
"comment": "Quest kill black worgs #37. Rumor about ruins (probably #4, #14) Kill 4 blueskin shamans #13, #18, #22, #25. Visit home town #3",
"friendly": true,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 2, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 1, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 1, "building-heal": 0
}
},
{
"type": "city",
"name": "barricaded town",
"x": 416, "y": 101, "id": 17,
"visited": true,
"comment": "Quest to kill worg in #15. Rumors about yeti's bin'rdamin. Kill blueskin in #10. Clear #36 mining site",
"friendly": true,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 2, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 1, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 1, "building-heal": 0
}
},
{
"type": "forest",
"name": "icefield",
"x": 709, "y": 101, "id": 18,
"visited": true,
"comment": "Quested in #16",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "PICK-FACE THE UGLY", "foe-red-goblins": 0,
"foe-blue-goblin": 7, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 1550, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 2, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 1, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 1, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 1, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 1, "building-middle-apothecary": 1,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "cave",
"name": "crawler cave",
"x": 510, "y": 104, "id": 19,
"visited": true,
"comment": "",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 10, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 900,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "cave",
"name": "adamantine mine",
"x": 557, "y": 104, "id": 20,
"visited": true,
"comment": "",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 9, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 400,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "cave",
"name": "concealed cavern",
"x": 327, "y": 114, "id": 21,
"visited": true,
"comment": "3rd wide beacon, next is #111. Runes ᛖᚫᛊᛗ",
"friendly": true,
"contain": {
"beacon-hall": 0, "beacon-wide": 1, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 2600,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 2,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "icefield",
"x": 676, "y": 117, "id": 22,
"visited": true,
"comment": "Quested in #16",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "EYE-TWITCH THE LONELY", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 1200, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 1, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 1, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 1, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "cave",
"name": "ice slug cave",
"x": 469, "y": 120, "id": 23,
"visited": true,
"comment": "Quested in #9",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "THE ICE QUEEN SLUG", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 6, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 1780, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 1, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "ruins",
"name": "snowbeard's ruins",
"x": 643, "y": 122, "id": 24,
"visited": true,
"comment": "Snowbeard's grave. Last words in #29. Reward SNOWBEARD FREEZING BAND R 15.7k",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 3, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 1, "loot-secret": 1, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "icefield",
"x": 802, "y": 125, "id": 25,
"visited": true,
"comment": "Quested in #16",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "FLOPPY-TONGUE THE SLURPER", "foe-red-goblins": 0,
"foe-blue-goblin": 11, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 1500, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 1, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "protruding ruins",
"x": 749, "y": 126, "id": 26,
"visited": true,
"comment": "",
"friendly": true,
"contain": {
"beacon-hall": 1, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 900, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 1, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "cave",
"name": "crawler queen cavern",
"x": 568, "y": 128, "id": 27,
"visited": true,
"comment": "Quested in #35",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "ICE CRAWLER QUEEN", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 5, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 3400,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "weathered snowfield",
"x": 380, "y": 132, "id": 28,
"visited": true,
"comment": "",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 10, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 700, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "cave",
"name": "ice slug cave",
"x": 533, "y": 133, "id": 29,
"visited": true,
"comment": "Quested in #9. Grave of snowbeard with last words to #24.",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "THE ICE QUEEN SLUG", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 6, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 700,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "cave",
"name": "ice cleaved cave",
"x": 441, "y": 138, "id": 30,
"visited": true,
"comment": "Runes ᚾᛎᛗᛏᛖ from #41. Reward ETHIN'S FROZEN VITIATOR W 8.75k",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 8, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 1400,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 1, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "blue camp",
"x": 708, "y": 139, "id": 31,
"visited": true,
"comment": "",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 13, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 500, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 4, "sp-food": 0, "sp-leather": 1, "sp-stone": 0, "sp-cotton": 1, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 1, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 1, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "ruins",
"name": "puzzled ruins",
"x": 305, "y": 141, "id": 32,
"visited": true,
"comment": "Location about answer to runes (to the south beyoung lake) #184 ᛗ ᛖᛎᛟU. HEARTH PLATE OF RODENREN A 14.7K.",
"friendly": true,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 800, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 1, "loot-secret": 1, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "cave",
"name": "blue skin mine",
"x": 611, "y": 141, "id": 33,
"visited": true,
"comment": "",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 10, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 1240,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 2, "sp-ore": 3,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 2, "loot-middle-chest": 2, "loot-golden-chest": 1, "loot-stone-chest": 0,
"loot-weapon-rack": 1, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 1,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "tribeacon forest",
"x": 338, "y": 144, "id": 34,
"visited": true,
"comment": "Gedsun treasure ᛈᛟᚩ (#55, #110, #237)",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 1,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 6, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 350, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 1, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "isolated cottage",
"x": 666, "y": 148, "id": 35,
"visited": true,
"comment": "Kill ice crawler queen #27 (RING OF DEATH R 54k)",
"friendly": true,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 800, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 1, "sp-food": 0, "sp-leather": 2, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 2, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 1, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "cave",
"name": "mining site",
"x": 491, "y": 153, "id": 36,
"visited": true,
"comment": "Quested in #17",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 4, "foe-thorns": 9,
"foe-poison-slug": 0, "foe-fire-slug": 5, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 6, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 800,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 1, "sp-cotton": 0, "sp-coal": 3, "sp-ore": 2,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 1, "loot-golden-chest": 0, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "black worg pines",
"x": 781, "y": 154, "id": 37,
"visited": true,
"comment": "Quested in #16",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": 0, "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 5, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 1200, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 0, "loot-golden-chest": 1, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "ruins",
"name": "fenatic ruins",
"x": 265, "y": 165, "id": 38,
"visited": true,
"comment": "Kill orc mage.",
"friendly": false,
"contain": {
"beacon-hall": 0, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "SLUPPY TONGUE-STUCK", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 0, "res-food": 0, "res-leather": 0, "res-stone": 600, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 1, "sp-leather": 0, "sp-stone": 1, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 0, "loot-middle-chest": 1, "loot-golden-chest": 1, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 0, "loot-big-golden-chest": 0,
"loot-book": 0, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}
},
{
"type": "forest",
"name": "gloot's tower",
"x": 456, "y": 165, "id": 39,
"visited": true,
"comment": "Kill goblin mage on the tower",
"friendly": false,
"contain": {
"beacon-hall": 1, "beacon-wide": 0, "beacon-gesdun": 0,
"foe-goblins": 0, "foe-kobolds": 0, "foe-orcs": 0, "foe-wolves": 0, "foe-undead": 0, "foe-crawlers": 0, "foe-thorns": 0,
"foe-poison-slug": 0, "foe-fire-slug": 0, "foe-troll": 0, "foe-druids": 0, "foe-bosses": "GLOOT", "foe-red-goblins": 0,
"foe-blue-goblin": 0, "foe-sentinel": 0, "foe-blue-slug": 0, "foe-purple-kobolds": 0, "foe-red-kobolds": 0,
"foe-red-wolfs": 0, "foe-wargs": 0, "foe-white-wolves": 0, "foe-ice-slugs": 0, "foe-ice-crawlers": 0, "foe-poison-mushrooms": 0,
"foe-fire-mushrooms": 0, "foe-fire-thorns": 0, "foe-crazy-dwarf": 0, "foe-black-goblin": 0,
"res-wood": 750, "res-food": 0, "res-leather": 0, "res-stone": 0, "res-cotton": 0, "res-coal": 0, "res-ore": 0,
"res-copper": 0, "res-iron": 0, "res-bronze": 0, "res-steel": 0, "res-adamantine": 0,
"sp-wood": 0, "sp-food": 0, "sp-leather": 0, "sp-stone": 0, "sp-cotton": 0, "sp-coal": 0, "sp-ore": 0,
"sp-copper": 0, "sp-iron": 0, "sp-bronze": 0, "sp-steel": 0, "sp-adamantine": 0,
"loot-small-chest": 1, "loot-middle-chest": 1, "loot-golden-chest": 1, "loot-stone-chest": 0,
"loot-weapon-rack": 0, "loot-armor-rack": 1, "loot-big-golden-chest": 0,
"loot-book": 1, "loot-secret": 0, "loot-caged-dwarf": 0,
"building-blacksmith": 0, "building-small-apothecary": 0, "building-middle-apothecary": 0,
"building-shop": 0, "building-tavern": 0, "building-heal": 0
}