-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.toml
4105 lines (3110 loc) · 146 KB
/
index.toml
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
hash-format = "sha256"
[[files]]
file = "config/KeepingInventory.cfg"
hash = "847f2c0286f5e1f94e39fdde76253f848bbab3ce1e31e7fffaafc1e3c71644b0"
[[files]]
file = "config/TinkerToolLeveling.cfg"
hash = "3cbd82e1036a6e444b028cf42d83448107d6ef8aa01a37098a8efa62821b4c4e"
[[files]]
file = "config/Waystones.cfg"
hash = "2caae76b08f4e21cfb63334348b708e0a7b11515a764033c6b1610cbc06a4362"
[[files]]
file = "config/armoryexpansion.cfg"
hash = "ea13aeb71bdc7de480c1bf8de4f3eb1c266a5a91a0d40066166be3836a887108"
[[files]]
file = "config/aroma1997/aromabackup.cfg"
hash = "af0e3e3db9b0b55b8bbd0d506476323e5e46e3bfbadb74d7ad436615e0e8f561"
[[files]]
file = "config/birdsfoods.cfg"
hash = "9df91373cd03a6e2607fd1a6efde839e970a173c2708cba31adb79cd59fbe4e7"
[[files]]
file = "config/cofh/core/client.cfg"
hash = "b760ba088ac2f391c16c7c98351b4af14a48fe01bc591c40401cf4d9b8519cdd"
[[files]]
file = "config/cofh/core/common.cfg"
hash = "d28bf83a7ee4d1a9e3ee4300faae0be4fae16256c0dcc505f317dc3cc3558911"
[[files]]
file = "config/cofh/thermaldynamics/client.cfg"
hash = "d65d2d91bb9d86176375da4368c74d1ffae30a368a4592b430de4687a5f00733"
[[files]]
file = "config/cofh/thermaldynamics/common.cfg"
hash = "c297275b538da1e0c1033e3c5d85e03f3da4d57d6a58790653569e59a2ff3218"
[[files]]
file = "config/cofh/thermaldynamics/cover_blacklist.json"
hash = "9671cdb2d2f6ac1666bf63f56e568c674a1bd933280768ee0e78fbed4cf8c8f2"
[[files]]
file = "config/cofh/thermalexpansion/client.cfg"
hash = "1701b932f99f5653e6b5986137e21bfbe7231f783892606ee8ee043427156748"
[[files]]
file = "config/cofh/thermalexpansion/common.cfg"
hash = "210a35dd83fa3121a7b82d0683341fe712d70bc80f78c82c2a53545e662431cf"
[[files]]
file = "config/cofh/thermalexpansion/florbs.cfg"
hash = "555d598ec13ed39667504a65e159b7d15ee503dcbd3224d17ada4631cd30c32f"
[[files]]
file = "config/cofh/thermalexpansion/morbs.cfg"
hash = "3c471283ed93620e7eb7e67cbe1a25ae55f078cdffbd0abfbabcdc314865b43e"
[[files]]
file = "config/cofh/thermalfoundation/client.cfg"
hash = "0033114233ce613c785abf4fbe00cb64bfb416665f2c0838a5271ce421ea3e28"
[[files]]
file = "config/cofh/thermalfoundation/common.cfg"
hash = "17795d7299ce9aabaf651d23308c889d3edede76cc4b53db49b4699fcfe03bdf"
[[files]]
file = "config/cofh/thermalfoundation/lexicon-whitelist.cfg"
hash = "d925e5c9504c6be9ebb33f73d38b39045c6ae622e032d04fef06b720b884ce5d"
[[files]]
file = "config/cofh/thermalinnovation/client.cfg"
hash = "70aa0a6710ef612eb907989d046c45539bf11da96ae033568b6ecea357abb390"
[[files]]
file = "config/cofh/thermalinnovation/common.cfg"
hash = "6e16b77fc693431844f73901977a9f6a2dcb72bb12da79c39e508faa7495dd7c"
[[files]]
file = "config/cofh/world/00_minecraft.json"
hash = "6ecfbc51c9e98aa905a93516c177d881e282a6f99faa66d93f6e21cbef5085fe"
[[files]]
file = "config/cofh/world/01_thermalfoundation_ores.json"
hash = "a7f5a5b4a01102b839089e40fb2dbad4709dd208b64f4d7de9495afa226328e0"
[[files]]
file = "config/cofh/world/02_thermalfoundation_oil.json"
hash = "f0b3241dca20b7619ad4f58d77c99b568192a5bd3ffd40d0f31c5c1921a86acb"
[[files]]
file = "config/cofh/world/03_thermalfoundation_clathrates.json"
hash = "8e19adc8a921f3a656b216d5023ed022a22c43fac91299d19f1cfed61fe89c64"
[[files]]
file = "config/cofh/world/config.cfg"
hash = "afe3fce5ad545443aff3d2b78c49617c2a87bfea31343afcb61c44baa1071963"
[[files]]
file = "config/cofh/world/galacticores-109-above-cofh-world.json"
hash = "31733f8c5823b4296075b290f43ee18e8da657dd92e203d2acd5236922530dc3"
[[files]]
file = "config/conarm.cfg"
hash = "c11584598e134465d55e2297f6a3d0e39ba30817c74a262788a091d1dc0b024f"
[[files]]
file = "config/enderstorage.cfg"
hash = "0e768f6d9d9275564e12c41e0364cc3f0b98b6d2a1715af31509c1d577860853"
[[files]]
file = "config/extrautils2.cfg"
hash = "e9bcc0c3f59f024d811d9fb7e78d95b4e5a2c1853e898d19611e8d22d6bd482c"
[[files]]
file = "config/ftbutilities.cfg"
hash = "5a55f400ea4866602fe6ae4c185ce6d48cb42c17f4be1c3c7f722a99127ea994"
[[files]]
file = "config/huntingdim/huntingdim.cfg"
hash = "90fefa72f012e5c41b4f3fa1320cdbb0e0bd780c00702ceff7d5dd67c8840c1a"
[[files]]
file = "config/jei/itemBlacklist.cfg"
hash = "faf20a8a19cec4874bb075fa9115e684504ccf06f58dff4397f25f09c80f8e15"
[[files]]
file = "config/microblocks.cfg"
hash = "144cb0b0995f8f60927355eb91fd2d774a9f0fe72c19896fcde59fe4991776bb"
[[files]]
file = "config/natura.cfg"
hash = "0284a131fd9b28555ae0e2c90ba91c336a501199a864705f641f9c64276e9d13"
[[files]]
file = "config/orecore.cfg"
hash = "567c291753e88b78caa4bf50c589c026ffadf35efa61d8eb641dd49412c78185"
[[files]]
file = "config/quark.cfg"
hash = "cda91b06a7171069e9c462d856293c3240a24f6a84358727f50597943a08fdc7"
[[files]]
file = "config/reccomplex.cfg"
hash = "6e5f1c09401b8c148d6ee56bab54dfc3cd44915947fc0f4f812db904e4dc5803"
[[files]]
file = "config/ruins.txt"
hash = "383c17eca1ee8097bd5d39a6909c7e70a01588fcee632ebc53ce01dafb3dbe12"
[[files]]
file = "config/ruins_config/beaches/JG_BeachHouse_CB_1v12.tml"
hash = "eec1dc2f4156ba9e54f3d35dbf9e4c949221d8259a915fac4ee58b8c04b2d084"
[[files]]
file = "config/ruins_config/beaches/JG_Boathouse_1v12.tml"
hash = "fc295199d1daf5c68347bb905607afe6cd502c2d89f84814815b3f569789d80d"
[[files]]
file = "config/ruins_config/beaches/JG_Dock_Beach_1v12.tml"
hash = "773554174d3b67526807a73508f7f99ca231c4c4a2b09d429ab589e104e9b693"
[[files]]
file = "config/ruins_config/beaches/JG_SandCastle_Small_1v12.tml"
hash = "29e8c3b107524c733999842d0cd33621b1f4697dfa569b2ea9b31d72c6e7552e"
[[files]]
file = "config/ruins_config/beaches/JG_SandCastle_Tiny_1v12.tml"
hash = "df9816c96be6bdc91f12986a7830d7d34054eb497ff87fff6d8c6e526fbc049d"
[[files]]
file = "config/ruins_config/beaches/JG_Shipwreck_Small_1v12.tml"
hash = "04d348e6c40b8810f282b36f59be815412bef98a5e503a05e09f341dfa314576"
[[files]]
file = "config/ruins_config/beaches/JG_XMarksTheSpot_1v12.tml"
hash = "02de45cad8dc5d0c8710dc98ff2a23c9198b5988ca0337d8a8619c490feb336a"
[[files]]
file = "config/ruins_config/beaches/K10_Lighthouse_CB_1v12.tml"
hash = "296b06ea24f744ce78c7a5d86dd0fc2e195a94cd091df0f00435babcf8dde9b7"
[[files]]
file = "config/ruins_config/birch_forest/JG_Birch_Outpost_1v12.tml"
hash = "4082cd9bb53337dce41da6bda94874e13a8d653d12907e446780673e842f4277"
[[files]]
file = "config/ruins_config/birch_forest/JG_Tree_GiantBirch_1v12.tml"
hash = "fe4e90a45eafc72c458ebfa9af013a5baa5da6f41b166404f6115027dd155726"
[[files]]
file = "config/ruins_config/birch_forest/JG_Watchtower_Birch_1v12-r.tml"
hash = "2654732c69b5b832dc8927a30f4b32e3ebe52407c7bcc62253b9b908a2445de0"
[[files]]
file = "config/ruins_config/birch_forest/JG_Watchtower_Birch_1v12.tml"
hash = "f6a10bb4c193f32c7d87c927d225857700c5ac9fef7f047fa72174c85b6818b7"
[[files]]
file = "config/ruins_config/chestgen_locations_1.11.txt"
hash = "2a57694470c41967292fe96629f74653c8e0725d349e9d86d83a09cfa05162d0"
[[files]]
file = "config/ruins_config/deep_ocean/JG_FossilWhale_1v12.tml"
hash = "ac0eb7202b8d4ce66702cee682ee844e05882f6ac8a0d108cb1d95ced7a769fb"
[[files]]
file = "config/ruins_config/deep_ocean/JG_SeaLanternSphere_1v12.tml"
hash = "4aa7e55d0daaf519b8768bdce243d4855599c615db14474b5705c4f12be111ef"
[[files]]
file = "config/ruins_config/deep_ocean/JG_SunkenDungeonSeed_CB_1v12.tml"
hash = "925216ecc2b7e40bb8a451564ac2a5597524737925fd28be2a1503bb23731a55"
[[files]]
file = "config/ruins_config/deep_ocean/K10_Quartz_SeaBase_CB_1v12.tml"
hash = "44a39bf6504ed6294e192b82fa62463fa4fda4c465394bf98b3ab24b6cf7b756"
[[files]]
file = "config/ruins_config/desert/JG_AnkhMonument_1v12-p.tml"
hash = "f779afd3e8bbcc099f0c045fc91841ed4ec93f916f1e5fae7badb0b8a3db12c1"
[[files]]
file = "config/ruins_config/desert/JG_AnkhMonument_1v12-r.tml"
hash = "43b37d26103bdfc57299cec4e41ee34f1afaea7fada541d521a529b6d3fb6b4b"
[[files]]
file = "config/ruins_config/desert/JG_BuriedPyramid_1v12.tml"
hash = "d38a5ebca3f5441e8488c659ec1aa3f761fe5e2cedcfe21a5bf2182acb4b5755"
[[files]]
file = "config/ruins_config/desert/JG_ConjurerDungeonDesert_CB_1v12-r.tml"
hash = "b4076ba5009ad53f55bdcab71c8e38dd37becb25bc28b03ba44b9312393bcf9a"
[[files]]
file = "config/ruins_config/desert/JG_DesertFirePitHut_1v12-r.tml"
hash = "d388363a274ed4e8176bcddaa263ca4c5c5f1adbd643a045d930a7d9864fd698"
[[files]]
file = "config/ruins_config/desert/JG_DesertFirePitHut_1v12.tml"
hash = "e7bc7acc54288bc2d7699d1b19c6a4fb73810c5528744ef96a60c1b9265c5363"
[[files]]
file = "config/ruins_config/desert/JG_DesertTent_1v12.tml"
hash = "5ac3a682a0d52f1f843b08b0f3188a717cd9159fa8795be68b050e8d9f78b5c6"
[[files]]
file = "config/ruins_config/desert/JG_DesertVillageDungeon_CB_1v12.tml"
hash = "7093787d42a2dabf130063d75046478a23481deb01ff2cc14808e0341f422725"
[[files]]
file = "config/ruins_config/desert/JG_Desert_Oasis_1v12.tml"
hash = "a9ae5d4c3ec0766e39be749dc213aa099b82f4dac0e69fc7d4e9c1fbea4fb576"
[[files]]
file = "config/ruins_config/desert/JG_Desert_Oasis_Cursed_1v12.tml"
hash = "b461a9b6880991fdedb71eafc4477bac69cdea41eb2b0a5a572702723b5eb70c"
[[files]]
file = "config/ruins_config/desert/JG_GazeboDoomDesert_1v12.tml"
hash = "517cee58672da587cc71d71993039168f1ddf579fa4e654b4c8b048a60d217b3"
[[files]]
file = "config/ruins_config/desert/JG_GenDungeon5x5Seed_CB_1v12.tml"
hash = "cf043bb03f30112c1e79c75bb6bd61d3076a2da5ef3fab349d247fa062aed5a2"
[[files]]
file = "config/ruins_config/desert/JG_GuardianLion_1v12.tml"
hash = "46e3448058b94b3e899f5eb8500d3f58a7a366e46209b7c629d91cd687270239"
[[files]]
file = "config/ruins_config/desert/JG_MerchantTent_CB_1v12.tml"
hash = "97ea826608838ebedcaeca6c30238d570cdbb4026168cbec41adce96a9335e58"
[[files]]
file = "config/ruins_config/desert/JG_NomadPavilion_1v12-r.tml"
hash = "ae8666484f0384353c64992bac00efe978a4bafa1a128a40031d628a6a76cd7c"
[[files]]
file = "config/ruins_config/desert/JG_NomadPavilion_CB_1v12-p.tml"
hash = "ff30c0cfcad9562913ff79cf5d21c0a3cc49536e2fee2ba980c47ef3d196baca"
[[files]]
file = "config/ruins_config/desert/JG_Obelisk_Sandstone_1v12-p.tml"
hash = "bcdf41c73f38e05142d51deb78a65babee5b56c66edda6db1b8426feebd53600"
[[files]]
file = "config/ruins_config/desert/JG_Obelisk_Sandstone_1v12-r.tml"
hash = "d97b7c8f61f709185e6534cf980998a2d17ff813248b82d46ec02035615591bd"
[[files]]
file = "config/ruins_config/desert/JG_SandstoneDungeonSeeder_CB_1v12.tml"
hash = "2e0e4e671129356f03abcfbd54d6e93e222cd5e9c3aa7d84ea46d24434920f6c"
[[files]]
file = "config/ruins_config/desert/JG_SandstoneThroneStatue_1v12.tml"
hash = "00a71b03d48d8884991b5934fa2c51de984ed050140fd52a089c35f2cf00a0fe"
[[files]]
file = "config/ruins_config/desert/JG_SandstoneTombTrap_1v12.tml"
hash = "a1da561c091356f6e62573a53a1b7b515ebfd448a8dbee5ffae83f8c5fe111f8"
[[files]]
file = "config/ruins_config/desert/JG_Shrine_Anubis_1v12.tml"
hash = "5051efe30e546739e4e6552749ca64a0cac67ce9e05034360262cee7b82e69b0"
[[files]]
file = "config/ruins_config/desert/JG_Shrine_Anubis_1v12_alt.tml"
hash = "969cbd153a8a497aa81f50113fbf4eb809ef20ce67ff8c545c647984d4e55db8"
[[files]]
file = "config/ruins_config/desert/JG_Sphinx_Great_CB_1v12.tml"
hash = "c36d31b70813aae4b0fca3e4a6d7e8ac14fa537f26f156cdeee819cd1166ed7e"
[[files]]
file = "config/ruins_config/desert/JG_TentRuin_1v12.tml"
hash = "0082d596e54b56a3cc51e0f26fa9612e3ab1a96f10ab4af098dffc90db91e521"
[[files]]
file = "config/ruins_config/desert/JG_Wagon_Caravan_Desert_CB_1v12-r.tml"
hash = "500ab9fb516442a8e741c7c382e2509c2f494eb8c3c09c72b47214bf56c3762f"
[[files]]
file = "config/ruins_config/desert/JG_WellOfSouls_CB_1v12.tml"
hash = "5e3492fa5159a4ffa4304e8ac58f9da5ca293447d3772a9858b419a657dfd2cd"
[[files]]
file = "config/ruins_config/extreme_hills/JG_BuriedDungeonSeed_CB_1v12.tml"
hash = "41980e3e0a0799116fdde02d6074a4225622fece5c53011e0fe6c37c9caf1e64"
[[files]]
file = "config/ruins_config/extreme_hills/JG_BuriedFeatureSeed_CB_1v12.tml"
hash = "8d5f087e7091dabe1ffe85954a7a08ea907b882242d2659d48f5ea655ef65122"
[[files]]
file = "config/ruins_config/extreme_hills/JG_Cave_Crystal_1v12.tml"
hash = "f924812df8d66ede5880926e1254c9aac7142862784b3757113f21ec3b2b512d"
[[files]]
file = "config/ruins_config/extreme_hills/JG_Cave_LavaHollow_1v12.tml"
hash = "339d04c462c112b3b7b70bc498f5419742620cf8adcc057b7ad5b168ee2de81f"
[[files]]
file = "config/ruins_config/extreme_hills/JG_Cave_WaterHollow_1v12.tml"
hash = "05d2ebabb209ea1b75db99d198fdbcba637a446c3e4c5920affa4ad7eb4c439e"
[[files]]
file = "config/ruins_config/extreme_hills/JG_Gargoyle_Stone_1v12.tml"
hash = "54efb49cdf111040e5c31f0c19f305ee1b16a6b362db6171e81e8f9cb373f6e6"
[[files]]
file = "config/ruins_config/extreme_hills/JG_HighwayRuin_1v12.tml"
hash = "197a1a426c44962fc7ba51ea6a76014388642729ea44e52e3806f4e82f304f6e"
[[files]]
file = "config/ruins_config/extreme_hills/JG_InventorWorkshop_CB_1v12.tml"
hash = "ece68ee33c25c09e76e7d56ea08bb3a4a216c50cf93fa1074f0152b61683ae81"
[[files]]
file = "config/ruins_config/extreme_hills/JG_IronGolem_1v12.tml"
hash = "830b2888bad19c385289ca90c12636145c7d385d7ba3d51819b11057441e3f0c"
[[files]]
file = "config/ruins_config/extreme_hills/JG_IronSmeltery_CB_1v12.tml"
hash = "0e539eb017388eeb1b805fd5dfaa4301246697d82bbc7e498011e69fa442e9a6"
[[files]]
file = "config/ruins_config/extreme_hills/JG_MineTowerSeed_CB_1v12.tml"
hash = "62ce4e420d79f1efc516eacf4ca1d4810a1639b7472ca527bd67a7ec6551612f"
[[files]]
file = "config/ruins_config/extreme_hills/JG_MineshaftSpiders_1v12.tml"
hash = "b1a65e8e926a7fbe75a9b9c34d036b598b79592d8bffb39d6d79c78ab86ca797"
[[files]]
file = "config/ruins_config/extreme_hills/JG_ObsidianGeode_1v12.tml"
hash = "6e14f5b2ce61c9b3942bd90fc7f293a6ecbb42f94cd69044fd9dce2f459af1b4"
[[files]]
file = "config/ruins_config/extreme_hills/JG_Ore_Emerald_1v12.tml"
hash = "26fb7741d3d931cfa71aa1655ee92ce0eadb7dcf5b8c0552f1c62f0abe07e557"
[[files]]
file = "config/ruins_config/extreme_hills/JG_RuinedGuardHouse_1v12.tml"
hash = "b2da95522e28a501feb6e426044f416b308c51d218b9bdeba90928ae36e0ddc2"
[[files]]
file = "config/ruins_config/extreme_hills/JG_SkyIsletShrine_Seeder_CB_1v12.tml"
hash = "930e8efef1ea0e77d02c88099592790231909bf492c65253cbb65c200a29015f"
[[files]]
file = "config/ruins_config/extreme_hills/JG_SkyQuartzShrine1_1v12.tml"
hash = "9b69d2abdd81f342e4fb87ceca821b3c388e1b4ec82e78abd5ae7e95bfffb95c"
[[files]]
file = "config/ruins_config/extreme_hills/JG_SkyQuartzShrine2_1v12.tml"
hash = "9b6cdf5209315b51ef635a25cd4dae4bd6de2e44213b7f8cdcb97929159b75a2"
[[files]]
file = "config/ruins_config/extreme_hills/JG_SkyTower_DarkCrystal_CB_1v12.tml"
hash = "49c9e9001e5827e51a6c586f6d769c049216e55a3777d2385035e192bbe2f1f2"
[[files]]
file = "config/ruins_config/extreme_hills/JG_TestMiniDungeon_1v12.tml"
hash = "2a7635b628a8da8efeed5bae68ef146dbf6a3c4711dfd0c0bc8ca80a1ffe2536"
[[files]]
file = "config/ruins_config/extreme_hills/JG_Vault_Statues_1v12.tml"
hash = "fb51126fccbd6fc8ffeddbbc459cd72e578f4812bd5d01f26050662b2e4938ce"
[[files]]
file = "config/ruins_config/forest/JG_AcaciaRoofHouse_1v12.tml"
hash = "7cb95e2650a0bdc4d618dd2d8f005aa7f9385fc37e7388b35b998f98be3cd1bb"
[[files]]
file = "config/ruins_config/forest/JG_AdventurersInn_CB_Seed_1v12.tml"
hash = "054b15b6f9e15ae6d1108cd68f190f0bd9e83445169765c4d4eb00e789192dc3"
[[files]]
file = "config/ruins_config/forest/JG_AndesiteLookout_1v12.tml"
hash = "4f3401516dbda58a5b570583a860af2ee1db62b2edf0b2b531c2cd508f915d9f"
[[files]]
file = "config/ruins_config/forest/JG_Barn_Undead_CB_1v12.tml"
hash = "79cb8c240117bf58b353676a65735f5b691f83dcf368cc2bf89165099ab50e63"
[[files]]
file = "config/ruins_config/forest/JG_BoardedManor_1v12.tml"
hash = "4003cf4fcd1dbf39d63144d938a0e3717b1e3cfebf53fc7830fbc53114ec5c2c"
[[files]]
file = "config/ruins_config/forest/JG_CastleGreywolf_CB_1v12.tml"
hash = "f662f6693631f4aa977c2ffb05310eaa9355d685630a3df1c587a9e8ef0595d0"
[[files]]
file = "config/ruins_config/forest/JG_CastleWallRuin.tml"
hash = "43bace266243cbdb4afa265a06bb8f9605c8713c707ddfde9b01aefd2be8b67c"
[[files]]
file = "config/ruins_config/forest/JG_CastleWallRuin_1v12.tml"
hash = "a31ccd55a7b3d4c1e3b81e8d2555215b4f6c219090df04bd81988051498ab299"
[[files]]
file = "config/ruins_config/forest/JG_ConjurerDungeon_CB_1v12-r.tml"
hash = "b5e9c1d4a4bb1dbc47a7215dac3787dfce65c26c802c6f93925677fb79c5c6b3"
[[files]]
file = "config/ruins_config/forest/JG_DungeonSpiral_CB_1v12.tml"
hash = "e2265f3e6931782fe6bf3dc3bcf1d6b18bcd9e3cff95b060fd2efd1dca71199e"
[[files]]
file = "config/ruins_config/forest/JG_FairyRing_1v12.tml"
hash = "b6f7ba6650da2fd20d0401b5d6a89066fa14587b089030c0410bab3c1e60bc9c"
[[files]]
file = "config/ruins_config/forest/JG_ForestPool_1v12.tml"
hash = "b1537042dd92809da1675f24ab208d0cb8907bde0a0a363c2e5da20657371a41"
[[files]]
file = "config/ruins_config/forest/JG_GazeboDoom_1v12.tml"
hash = "4482097771e53f70c7380b4cdc3d7b682be168e2e17ddcba60a89c2d9921c7c2"
[[files]]
file = "config/ruins_config/forest/JG_HauntedHouse_CB_1v12.tml"
hash = "f1a00cd90a297f66fe1105f3d12382ce64af59314eb0219d88727d57e26dbe70"
[[files]]
file = "config/ruins_config/forest/JG_HauntedManor_CB_1v12.tml"
hash = "d2d20c99efed398ecd949f2ff7ddcbe730db84de2689d198ec5b59131f6cbf3c"
[[files]]
file = "config/ruins_config/forest/JG_HauntedTownhouse_CB_1v12.tml"
hash = "86d4890fcde016220a980091243c56395837310776742d3b62d38d7aa4f8a97e"
[[files]]
file = "config/ruins_config/forest/JG_HeadlessHorseman_CB_1v12.tml"
hash = "451828820dbaee4b26729fd2a5aa8b00b3121e90064addf0b0e9f3f8c07d95b5"
[[files]]
file = "config/ruins_config/forest/JG_HuntingLodge_1v12.tml"
hash = "08ea88ef628d2c4f28169c4f850c77e7e010f8ab04686391f3a2b0be05283d54"
[[files]]
file = "config/ruins_config/forest/JG_LogCabin_1v12-r.tml"
hash = "cb803768c01559a165007705ec3591b9474b58f210151a2437a3d62564f200d1"
[[files]]
file = "config/ruins_config/forest/JG_LogCabin_UndeadRanger_CB_1v12-p.tml"
hash = "df7cd61d477322e55f1d5b83cd7e40e6261d20fbab1a368ccdaa1bdf6eabbb8e"
[[files]]
file = "config/ruins_config/forest/JG_MenhirAltar_1v12.tml"
hash = "7955aa0ddd21f7aeb66f8dbcffa6c563d7dc2e6727e90e37f67a74931c5c2415"
[[files]]
file = "config/ruins_config/forest/JG_NinjaHouse_1v12.tml"
hash = "bd8bd2d42295336e695ce3be6ae388a5a85c3739ea0731b612582149f069dd24"
[[files]]
file = "config/ruins_config/forest/JG_ObsidianDungeonRuinSeed_CB_1v12.tml"
hash = "81565bb6a2e708d82a37fc4e60d8d192ab356882d0149dc2c610e91b22a05a14"
[[files]]
file = "config/ruins_config/forest/JG_Ruined_Hall_1v12.tml"
hash = "25f8807bf613e9a3f3499c59f69ffec41c98a129fc37b261e4bb89bea40af5f0"
[[files]]
file = "config/ruins_config/forest/JG_SmallQuartzShrine_1v12.tml"
hash = "30ff63d8daffa27ff778a006b8634c1ceeeb8dd391d2bdf4c3db3ef061032f3f"
[[files]]
file = "config/ruins_config/forest/JG_StoneGazebo_1v12.tml"
hash = "067ba66a6d2da6f60e9d7459ae945b1de0211243e79c955184b94fe8cade435e"
[[files]]
file = "config/ruins_config/forest/JG_Tower_Obsidian_CB_1v12.tml"
hash = "e9b73d6db79a251ca023421cca5bcc3e099d4a26a006c18cc5d9c4968f2345ef"
[[files]]
file = "config/ruins_config/forest/JG_Tree_Chandelier_1v12.tml"
hash = "75ce19972e9663406c3683316a2d1965de3de05072563328442d755579c3abf4"
[[files]]
file = "config/ruins_config/forest/JG_Tree_TallOak.tml"
hash = "e5d4f2f9d497e8177a9dd265636f2b4f0a07a08f8a036d82ad4c1100af2d7931"
[[files]]
file = "config/ruins_config/forest/JG_Village_Tree_peaceful_CB_1v12.tml"
hash = "22339df58c311f8d1baa093cd3839715a7ab6931aafb553acfb8bae29a66cd0e"
[[files]]
file = "config/ruins_config/forest/JG_Wagon_Caravan_1v12-p.tml"
hash = "3037fefdeedfdfddf63c2cb0fcbb96f9902542432a2ddcae72f81e643c4877bc"
[[files]]
file = "config/ruins_config/forest/JG_Wagon_Caravan_1v12-r.tml"
hash = "54602d5f7893d29dccecaed23932f2b9f17f95b2b3f3558530619fbbf568f0ef"
[[files]]
file = "config/ruins_config/forest/JG_Watchtower_1v12-r.tml"
hash = "78dcf5b784cc0b4b75251b3836d1814f8aa9d7685291fa26f6e366f87c0cebe7"
[[files]]
file = "config/ruins_config/forest/JG_Watchtower_1v12.tml"
hash = "7bf53a35dc5499896580cfd599707c72c7e4429ca8f7ef6ce783842bdbaccdb4"
[[files]]
file = "config/ruins_config/forest/JG_WizardTower1_1v12.tml"
hash = "e9b9482c1180b887ba499e11deb00998502a59c59349df9962d3e61909c26e62"
[[files]]
file = "config/ruins_config/forest/JG_WizardTower1b_CB_1v12.tml"
hash = "d607d647d87c25b68d152613e44d8ef0434ff45c987a92995513c0d248bb0963"
[[files]]
file = "config/ruins_config/forest/JG_WizardTower2_CB_1v12.tml"
hash = "fd88c0c53748d0eaff0dd128280650327f5471a999ef2bb2513179bebc0009f1"
[[files]]
file = "config/ruins_config/forest/JG_WizardTower3_CB_1v12.tml"
hash = "a65bd81aa9c2d209c406fc9bc472110ad0a816bfead777ab394a38f2ccbc96a5"
[[files]]
file = "config/ruins_config/forest/JG_WizardTower4_CB_1v12.tml"
hash = "5292db0c47d595efe61144afa7754d96b0a2de6d8371c5fe724b6e77aa3517ea"
[[files]]
file = "config/ruins_config/forest/JG_WoodlandCottage_1v12.tml"
hash = "d87bd48e3df83fac8e643535d4fe8abc2c44c5ceaf2aedb213c88b999c166100"
[[files]]
file = "config/ruins_config/forest/K10_BanditManor_CB_1v12.tml"
hash = "07e7ce05dc353b76a40b224675c829ac5cdc8e43a11c0a41099b5f46bce11f5a"
[[files]]
file = "config/ruins_config/forest/K10_CastleCottage_01_1v12.tml"
hash = "94cf005a37fed8b015def8ad022fd31febb026356b3b8fd43b978d8745c63218"
[[files]]
file = "config/ruins_config/forest/K10_SmallTower01_1v12.tml"
hash = "fad9eb74d92f130a6f9bc7de34183cb7e856a6091f114d7756a1e4d2f7b504a9"
[[files]]
file = "config/ruins_config/forest/K10_Tower_01_1v12.tml"
hash = "09e615b654681baca890a117f847576942fffec872270c3242f1e59644811a90"
[[files]]
file = "config/ruins_config/forest/K10_Tower_02_1v12.tml"
hash = "41c6da2bb5a37c0438118bdc70adab56f7cb8d5e0b579bffe928e9f684597844"
[[files]]
file = "config/ruins_config/forest/K10_Tower_03_1v12.tml"
hash = "7bf6d436dcff30314a969d449ac6406011e965be46b4dc53fb33c4d07fb99bdd"
[[files]]
file = "config/ruins_config/forest/K10_Tower_04_1v12.tml"
hash = "d78a310e202db24702edc4295325dd776a3325bd887504b0910f6cca6f4f1b25"
[[files]]
file = "config/ruins_config/forest/TP_Tree_GnarledOak.tml"
hash = "142fbe41a987db9028d774d9c2f630ce65f0bee09a854ca1edb7495853c8a664"
[[files]]
file = "config/ruins_config/forest/TP_Tree_GreatGnarledOak.tml"
hash = "f582b20a790056c95fdc6c83e984ebfcd545cb31ea617ab4f1404a330ca7bf7f"
[[files]]
file = "config/ruins_config/forest/TP_Tree_TallOak.tml"
hash = "48c6d99e4bb3f67e5eb197fd5f7d4f5752bb4f161d030be71e4999d8d6b8ac0a"
[[files]]
file = "config/ruins_config/generic/CastleModified.tml"
hash = "8cd0b5f0f54b842b33fb4133546f2818c2db6a8299d1d6b7177b7af3a6137f6c"
[[files]]
file = "config/ruins_config/generic/EmeraldOreOutcrop.tml"
hash = "4ce3d0a4c1b3cdbdefdfbedd78cdfe0e83efab4549e3931dae110049c3550b75"
[[files]]
file = "config/ruins_config/generic/OreSpire.tml"
hash = "1bc67e48cab9678432699d6adac30d2ea786daf15e14b5e087ff4130346366b3"
[[files]]
file = "config/ruins_config/glorious eternal credits.txt"
hash = "5292c0d453c22d943ba946e33ca56ffa8cbbbb009ecf4d86630c16aa3114b810"
[[files]]
file = "config/ruins_config/hell/JG_FishBones_Glowing_1v12.tml"
hash = "725b4b6bf8638178ea46cdfd2226afa8dcb6da5ff0fa0cc28a2027f9bdc2a9fe"
[[files]]
file = "config/ruins_config/hell/JG_Gargoyle_Obsidian_1v12.tml"
hash = "84ab560116126fef21a99b440035b986644d6aeb39731d16b2c7a12053379169"
[[files]]
file = "config/ruins_config/hell/JG_LimboDungeonSeeder_CB_1v12.tml"
hash = "22924614d2b1d6b5a4022112f858b7ae2c1fb1f5fa6b332a7b4af9c0ded23757"
[[files]]
file = "config/ruins_config/hell/JG_NetherCeilingTower_1v12.tml"
hash = "a0c89f63041c0d0480407905812dda0fd590e04715871c871dc6415d50954fe9"
[[files]]
file = "config/ruins_config/hell/JG_NetherDungeonSeeder_CB_1v12.tml"
hash = "600a3485f3e3eaaba6b553e1aba5fcd12bfaeff6637de80c3116909452a269de"
[[files]]
file = "config/ruins_config/hell/JG_NetherFeatureSeeder_CB_1v12.tml"
hash = "848c8ad433685ed41e01b1504f386c0614a1cec7befd5ec9c471f37373c76afa"
[[files]]
file = "config/ruins_config/hell/JG_Sphere_Nether_Lava_CB_1v12.tml"
hash = "4229f03d35c9ff0c826b1be45eb1d75990045ed8b62d875222451605cc26e1bd"
[[files]]
file = "config/ruins_config/hell/JG_SpiritCage_CB_1v12.tml"
hash = "e8b48fa79cde6cd18e2c43b7d17f87b96749e1ae1ef3674f668f6441f8fce961"
[[files]]
file = "config/ruins_config/hell/JG_SpiritCage_peaceful_CB_1v12.tml"
hash = "e8d478b0e7ee9cc68ac48309b6c21e1453ed02646bfd4d3a66a8f912e898ee8a"
[[files]]
file = "config/ruins_config/hell/JG_StairwayToHeck_1v12.tml"
hash = "182a43bb2fe2ea98fbcb90c052af830da021ae64850ee5492f063bdf2a233df4"
[[files]]
file = "config/ruins_config/hell/JG_TitanRibcage_1v12.tml"
hash = "713e2a0a735970bc7f9290b30be2e128d72114eb471abbf37b8daa148f903840"
[[files]]
file = "config/ruins_config/ice_flats/JG_IceGuardTower1_CB_1v12.tml"
hash = "aac6ab966b41ef98c57844e03d4907cdfc7e851f25c0a2be3a36099f031a8b0e"
[[files]]
file = "config/ruins_config/ice_flats/JG_IceGuardTower2_CB_1v12.tml"
hash = "d338b65f1a85ca74b11e92c9530e5ae84a03214a03fd28f70dd556ab4226e017"
[[files]]
file = "config/ruins_config/ice_flats/JG_Igloo_NOCB_1v12.tml"
hash = "9e3dc5e8ad2448991bdbc29086f391fbb9aa0307e2a34ff73c74a9d231afa824"
[[files]]
file = "config/ruins_config/ice_flats/JG_SnowKeep_CB_1v12.tml"
hash = "17295d804acec49b4a904ae35aceb3618325a6d543b72a3418ec588fece90a4e"
[[files]]
file = "config/ruins_config/ice_flats/JG_SnowTowerSeed_CB_1v12.tml"
hash = "59bbd4c252512aa8415fd768fe3cce064fb75ff749306bd01d95017a3861a437"
[[files]]
file = "config/ruins_config/jungle/JG_GatorIdol_1v12.tml"
hash = "e25dbb59864f2f93fafc1ea4fa84904c5c3f15e9640b4c9908b8f6f7ed417215"
[[files]]
file = "config/ruins_config/jungle/JG_GiantBeanstalk_CB_1v12.tml"
hash = "15d63137786b0a1df3e22d65b610d2f91df37b996fe8a88db2e5b6eeb1db1630"
[[files]]
file = "config/ruins_config/jungle/JG_JungleColumn_1v12.tml"
hash = "747cec479280f2506c8acaeebf69b5fdc9037c98e23504510a3a16c8c4bdfaf1"
[[files]]
file = "config/ruins_config/jungle/JG_JungleCrypt_1v12.tml"
hash = "754a5d6b93b015c78ccb6650f9e96e928c70288feaf0a25d10c5976f88d62dd6"
[[files]]
file = "config/ruins_config/jungle/JG_JungleFeatureSeed_CB_1v12.tml"
hash = "7ec0a96e7537822d83af13af2ee58f16e33707e7cae9484df47475598adc48db"
[[files]]
file = "config/ruins_config/jungle/JG_JungleIdol_1v12.tml"
hash = "fc7f03f10daf4a0271f2dc6d2ec98efff07e0942a020a04f9fb535f30e611cae"
[[files]]
file = "config/ruins_config/jungle/JG_JungleTempleWellSeed_CB_1v12.tml"
hash = "5b4e9ba322f79fce5af9d03bf49de036ae2f72f7eb16aa61d308d2819aa4209d"
[[files]]
file = "config/ruins_config/jungle/JG_JungleTreeStand_1v12.tml"
hash = "93b20f3a3bb4d597594ff325d018b6d6ec8027415336bdc6954f8eccb7ce88b3"
[[files]]
file = "config/ruins_config/jungle/JG_JungleWallRuin1_1v12.tml"
hash = "0d87ed310582c1dbf07e9ec0bd10bf46a5742927fee353152e61f85b246c5fc9"
[[files]]
file = "config/ruins_config/jungle/JG_JungleWallRuin2_1v12.tml"
hash = "b071fd7d464136f1597e6144653275049152f23be869d1bbcf346d3d779f1bec"
[[files]]
file = "config/ruins_config/jungle/JG_JungleZiggurat_Lava_1v12.tml"
hash = "b476aa7ea3866afcd6efca883de5876e9457254dab8a87698d332f47f7ce5ba9"
[[files]]
file = "config/ruins_config/jungle/JG_WarningSign_1v12.tml"
hash = "bf6378a8d44d5b9cc1107436e708b8ba2d2630049afd2c1a579368a5d74584e5"
[[files]]
file = "config/ruins_config/jungle/JungleThroneWood.tml"
hash = "fa30611b70f892375289fb2a25bc7fd4425e36cadf59a397173036b7b2e1ad10"
[[files]]
file = "config/ruins_config/jungle/JungleTreePlatform.tml"
hash = "0438a56f6501971d25b09212c98c09ca76d91ce542047966b2ca1eee7402a022"
[[files]]
file = "config/ruins_config/jungle/JungleTreePlatform_edit.tml"
hash = "52f58a340f8b665b093a4c2a1cec13d17666b70fe657c340913bedd7a568a45a"
[[files]]
file = "config/ruins_config/mesa/JG_ClayDungeon_1v12.tml"
hash = "422f38a95fe4b7a24928e8328cc3353af8f3d721569cca849cd938bb6b4d108e"
[[files]]
file = "config/ruins_config/mesa/JG_ClayHouse_1v12.tml"
hash = "93d58bafb56529056a3068aa6a2dc945d585d1ca9ea795cb973fab92109e20ed"
[[files]]
file = "config/ruins_config/mesa/JG_MesaHouse_1v12.tml"
hash = "54a4787e60f0003547ccf36dd2ff9ca6eaa6b636a7949eaf226d71e25799cac2"
[[files]]
file = "config/ruins_config/mushroom_island/JG_GiantMushroom_Lookout_1v12.tml"
hash = "83d22cd8ea1b1111d2cbf150e0e4a44797caee61b77d92ac864e5d18c2fabbe5"
[[files]]
file = "config/ruins_config/mushroom_island/JG_GiantMushroom_Squat_1v12.tml"
hash = "e8e12eac77279856e231ed93f46b91667a6a041686a546d454ce60683f51066a"
[[files]]
file = "config/ruins_config/mushroom_island/JG_GiantMushroom_Taller_1v12.tml"
hash = "fc6b7ea827749c998659faf308022d3a2dd10a0430c08b1d44a34a6caf3d9f79"
[[files]]
file = "config/ruins_config/mushroom_island/JG_MushroomHut_1v12-p.tml"
hash = "ec7cad96ce6b69e8e97f88eff10788beaf39961b64548acc71e81adae2aaaf16"
[[files]]
file = "config/ruins_config/mushroom_island/JG_MushroomHut_1v12-r.tml"
hash = "27c4ceb3b98f27edd5b80a78818746ea736138884f52a7e6f1cb8bbd63a9556b"
[[files]]
file = "config/ruins_config/mushroom_island/JG_MushroomTower_Seeder_CB_1v12.tml"
hash = "a866ab453dc094dfb8db2af1f34952399514c9f56910637462efcba5b85958f9"
[[files]]
file = "config/ruins_config/mushroom_island/JG_MushroomTownhouse_CB_1v12.tml"
hash = "84593d8adc6c25a093d56fbe422916cb74d72b8743185fd904eda65579334c38"
[[files]]
file = "config/ruins_config/ocean/JG_AirshipBlue_1v12.tml"
hash = "14058015d65388c079763ad7c4143f767a588f866dd9e664c6243023ef4ea820"
[[files]]
file = "config/ruins_config/ocean/JG_Anchor_Stone_1v12.tml"
hash = "82a9e23fcfb0dc8cdb22e19e00f5e1584953204f4b7ae8a276da63593334ea18"
[[files]]
file = "config/ruins_config/ocean/JG_ChateauDesPyrenees_CB_1v12v1.tml"
hash = "4b284ac32934ac3d219fc7ec6a223a0be18a41b799a3ba59c377f198aeca7f54"
[[files]]
file = "config/ruins_config/ocean/JG_CreeperBoat_CB_1v12.tml"
hash = "5bbd5385848eaee34341b9d2d4fedbe177e4eb9167d78674e5cb46a6b8c1e784"
[[files]]
file = "config/ruins_config/ocean/JG_DesertIsland_1v12.tml"
hash = "e6b1c1aaf3f718232636b036db99342ecda19d873e83f7cbce7f8bec787d8213"
[[files]]
file = "config/ruins_config/ocean/JG_DragonSkull_1v12.tml"
hash = "1d0797350cc482b2759b0e9c8482419533fee7aabb3aa7c96cbd7d709e3d6d5d"
[[files]]
file = "config/ruins_config/ocean/JG_FishBones_1v12.tml"
hash = "3a8a3fab587f88d42e0d01c054e4ef94f2485a7daeaaccbbf4b7283caac13ad4"
[[files]]
file = "config/ruins_config/ocean/JG_FishermanBoat_CB_1v12.tml"
hash = "adaa91143fca8f3e47a1bc0342ae2c0d16a21ff945a6f3d69a1816fd16813243"
[[files]]
file = "config/ruins_config/ocean/JG_FishingBoat_CB_1v12.tml"
hash = "991a78c25a4f91c14ac9f1caf4d7780f2f8146bd3c44c98a2cb1a61800f2f7a6"
[[files]]
file = "config/ruins_config/ocean/JG_GiantClam_1v12.tml"
hash = "97dec59df774e60e801d2fe32ef3e437aca3a77014f5c3d4b1bb7308890f05a7"
[[files]]
file = "config/ruins_config/ocean/JG_LavaColumn_1v12.tml"
hash = "3d5a8ec5b4b4cd424e9d684b03df2d44c944eee968df23e2174bbe41b9d9a961"
[[files]]
file = "config/ruins_config/ocean/JG_LifeRaft_1v12.tml"
hash = "8c669758a388f9809063b6acfb117a5f952b6c5fccfacd69eb381fb6bd886fda"
[[files]]
file = "config/ruins_config/ocean/JG_Lighthouse_Island_CB_1v12.tml"
hash = "d578d5c8136ba127ade25e885363285fc9d33a61c7ff68afa70012a24842cdeb"
[[files]]
file = "config/ruins_config/ocean/JG_OverturnedShipwreck_CB_1v12.tml"
hash = "de93a11790d93e1473ea0e608e361cfd8dd8a4652ddadee5337811b97600f38c"
[[files]]
file = "config/ruins_config/ocean/JG_PrismarineColumn_1v12.tml"
hash = "332438e594a1d255275944f1115c105925085abb2b0759f5d4fca0d9a6f68402"
[[files]]
file = "config/ruins_config/ocean/JG_PrismarineSunkenDungeon_1v12.tml"
hash = "a031032c10a28b878404b4c8a8d1633ee6e3ab3aae8eb2d95695d8b168aec1dd"
[[files]]
file = "config/ruins_config/ocean/JG_SailingShip_CB_1v12.tml"
hash = "a7be417bf98bad63eb0d0bcd49b856a0db690af1d4459e869443ec40b663dfed"
[[files]]
file = "config/ruins_config/ocean/JG_ShipwreckRibs_1v12.tml"
hash = "735aa409aec6318e7c86f2e52d4f371b9cc78f5a218c20355a66ad44539a03f2"
[[files]]
file = "config/ruins_config/ocean/JG_SkeletonBoat_CB_1v12.tml"
hash = "cfaf66272dc693614ac345e58403e087ce9a9f3b9f2bb7fdf88a96088a7b8f60"
[[files]]
file = "config/ruins_config/ocean/JG_SkyIslet_Seeder_CB_1v12v1.tml"
hash = "602f95b42ce6e05ee975565e3b9181f0a658badf2afb9c5a1d0ac9886a449143"
[[files]]
file = "config/ruins_config/ocean/JG_Sphere_OceanFloor_31_CB_1v12.tml"
hash = "ae6791ec9024f1ba4007630017929ca1d997f5afa2c37e492ee8e82b9fc2c46c"
[[files]]
file = "config/ruins_config/ocean/JG_Sphere_SkyIsland_1v12.tml"
hash = "59b22d629749612f70e88ef09fa29476befd7bd96751d4592bee99fbfb24ba0a"
[[files]]
file = "config/ruins_config/ocean/JG_SunkenKelp_1_1v12.tml"
hash = "2b3ded10f4842e5662c26406d3d0feb165a8ddb2e4f4aa9edab3a6c3a318b356"
[[files]]
file = "config/ruins_config/ocean/JG_SunkenKelp_2_1v12.tml"
hash = "0264d97e4840a0e63831ec0bc85bb959abc6f05fe254969a81a2c736a0199a0c"
[[files]]
file = "config/ruins_config/ocean/JG_SunkenQuartzShrine_1v12.tml"
hash = "e0ff93abe8502892272a096e2151934e346530e4f0b2d811bd9df34c4081488d"
[[files]]
file = "config/ruins_config/ocean/JG_SunkenShipHaunted_1v12.tml"
hash = "9963469b814b74acd151e3e742bab2c2a05dee8fc61b0922e28380c8ca175854"
[[files]]
file = "config/ruins_config/ocean/JG_SunkenTowerSeed_CB_1v11.tml"
hash = "0782da117724cd53422c2bb1c0556d89c2bdc4c5fa9370758bd115d96f85b896"
[[files]]
file = "config/ruins_config/ocean/JG_SunkenTreasure1_1v12.tml"
hash = "a97a18b1f82667861d5c396ec62d5d9c4bb485b3d0fe606571d011184e742ce6"
[[files]]
file = "config/ruins_config/ocean/JG_SunkenTreasure2_1v12.tml"
hash = "6f4e3b12ffc05dff2cc0c2438d3e47fcaf90d0e1e0e0f7339a5aa7dd150c1497"
[[files]]
file = "config/ruins_config/ocean/JG_Sunken_Hall_1v12.tml"
hash = "8527d5ff20337418de4cdd9b279d12419c17916d4d0f24d11942a7254d41d8f6"
[[files]]
file = "config/ruins_config/ocean/JG_TestSunkenDungeon_1v12.tml"
hash = "defcc112672d72d74b18d5b7fc270b216915025ea51cbb929fc3a9d537d18786"
[[files]]
file = "config/ruins_config/ocean/JG_Tree_Chandelier_Sky_Ocean_1v12.tml"
hash = "58afaa0867c50f7cf898916edac9931c3a6316c50e5590962a1f098415155b6b"
[[files]]
file = "config/ruins_config/ocean/JG_UndeadPirateShip_CB_1v12.tml"
hash = "234b4c131010b425741ab36df8c5917937a6846650b21be11575e500773963a8"
[[files]]
file = "config/ruins_config/ocean/SunkenShip-v2.tml"
hash = "98ee3adfb980f1a8b719382a5243224fb9371a5fc45e6e196f299f4b25e5d880"
[[files]]
file = "config/ruins_config/ocean/SunkenShip-v3.tml"
hash = "10309c40807ab6108a31225db9c43f5307e5f22d8eda76d6b156f88455aa48e7"
[[files]]
file = "config/ruins_config/ocean/shipwreck.tml"
hash = "95b498916de8c91b9211c8539dbd53b4484f70c38a485b01bef9a5ea5ace05d8"
[[files]]
file = "config/ruins_config/optional - chisel/__chisel-readme.txt"
hash = "c2a0b4e0ab422ec6c3817aef2d585d82f3e976556ac67f73dc55f1e50c963678"
[[files]]
file = "config/ruins_config/optional - chisel/cherry_blossom_grove/JG_Chisel_BoP_NinjaHouse_1v12.tml"
hash = "db65a7195932b54bd06105e8d78e77637e8d91b20f94e9d5db024eca1a6ae7b4"
[[files]]
file = "config/ruins_config/optional - chisel/cherry_blossom_grove/JG_Chisel_BoP_PinkHouse_CB_1v12.tml"
hash = "09cc6a513bba741604d2c5533b7f49e6c8674b8e2729821bcdd5e4ec3efd4819"
[[files]]
file = "config/ruins_config/optional - chisel/deep_ocean/JG_Chisel_CloudDragonSkull_1v12.tml"
hash = "9fd51d46229f21585a3adaecea7b838753c413becbc633a88bcc990aea429ef0"
[[files]]
file = "config/ruins_config/optional - chisel/deep_ocean/JG_Chisel_CloudFish_1v12.tml"
hash = "be593a22ca4d2ade68b8b27201785d3428823434a82fbfdca2f36714d52eee06"
[[files]]
file = "config/ruins_config/optional - chisel/deep_ocean/JG_Chisel_CloudGargoyle_1v12.tml"
hash = "89995da1498c7e9f72fc8a5d06d544a7399b710b06afa3db86e7f8e7388bc5ca"
[[files]]
file = "config/ruins_config/optional - chisel/deep_ocean/JG_Chisel_CloudShip_1v12.tml"
hash = "88ddf3049d1581ba340b7986ce60920372e228a829f7eb933f353045dfb2b812"
[[files]]
file = "config/ruins_config/optional - chisel/deep_ocean/JG_Chisel_CloudTowers_CB_1v12.tml"
hash = "ab6dac08435db68455b318728e631cf1db713cfa6eb6246c9b1cf00d7cb6684b"
[[files]]
file = "config/ruins_config/optional - chisel/deep_ocean/JG_Chisel_CloudTowers_peaceful_1v12.tml"
hash = "d5be5e5db91226a233f96c8e7b162792ca6dd39db1c6dfa6c343b38e1e84a0b3"
[[files]]
file = "config/ruins_config/optional - chisel/desert/JG_Chisel_GlyphTomb_1v12.tml"
hash = "48813a0244683b83c5730aa7a884c5a71802526d34450d84b02ecfc999023a86"
[[files]]
file = "config/ruins_config/optional - chisel/desert/JG_Chisel_SandstoneWall_1v12.tml"
hash = "1d8882a2073553f04516135a89538eee4341a075eaecd80bab81daa85be4f9d2"
[[files]]
file = "config/ruins_config/optional - chisel/forest/JG_Chisel_CobbleFoundation_1v12.tml"
hash = "9bfe3f3562754d22b2c1a8bad265b8ba0583e5d4cf24bb49231d202b2a2a1ac6"
[[files]]
file = "config/ruins_config/optional - chisel/forest/JG_Chisel_CobbleTower_1v12.tml"
hash = "3a8369eca554414abf6fd707966e06707ea215fe6f1ae7d83fa42a08146f2abe"
[[files]]
file = "config/ruins_config/optional - chisel/forest/JG_Chisel_HiddenLibrary_1v12.tml"
hash = "fe9792b2e1bfc7653c2f75a09aa1e4f19fb2827b86afb36ed986ebf3ed6ac53d"
[[files]]
file = "config/ruins_config/optional - chisel/forest/JG_Chisel_MarbleGarden_CB_1v12.tml"
hash = "0be5548ee99da0b7e8f5bff29d7c507609548aba2872a7aa5b2b6b226b22683e"
[[files]]
file = "config/ruins_config/optional - chisel/forest/JG_Chisel_MarbleGarden_NOCB_1v12.tml"