forked from Treeways/TheFinestCreations2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.toml
2392 lines (1820 loc) · 105 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/BlossomMods/BlossomHomes.json"
hash = "e2d50eb7e084c04639af26b197d9d11b57a721cdc14d45702395b72e8e648633"
[[files]]
file = "config/BlossomMods/BlossomLib.json"
hash = "52187ed3376cee1908b067d1bc3d852c9e933d153f74150192ece95ec3717475"
[[files]]
file = "config/BlossomMods/BlossomTpa.json"
hash = "d03c074ada1e349713a2cc4015e50e7a71aa9bf490902b325b22bd4faa5619c1"
[[files]]
file = "config/debugify.json"
hash = "4866d534f5944417491059aeed345176f01a2e3587b27816b8bb5a53e4ae7924"
[[files]]
file = "config/enchant-tweaker.properties"
hash = "6a11e910965017987c0cc5a384e2b368ba6e95e88864f5f4f7f8f4d75a1a1707"
[[files]]
file = "config/global_data_and_resourcepacks.toml"
hash = "d6055224690c399a9657218b8fcb9fa2ff1f33a5f83e7a383f4b6aae835938d5"
[[files]]
file = "config/quilt-loader.txt"
hash = "8b15c1fba8ab3f2c2b6fa810fb0f5994754c36f63f287e1991f35b8faed19915"
[[files]]
file = "config/styled-nicknames.json"
hash = "c899332ba59d23f804d6fa5526af0c206c6157c8993096206294023083ea1aed"
[[files]]
file = "config/treeharvester/harvestable_axe_blacklist.txt"
hash = "5f4a204972ba592b1fad576e1235ecb6c9ab8a722da095a5a5c60487a6c2415f"
[[files]]
file = "config/universal-graves/config.json"
hash = "a30675e8aad0962dd6f67833b2a75f345817f2555c08ccc032f1b80481ce2f9f"
[[files]]
file = "config/universal-graves/models/example.json"
hash = "0034bd722f6259b09145be5a028852b82a9e355148c480a770a89275bdbfd226"
[[files]]
file = "config/villagertweaks.json5"
hash = "8bd90ddd37ef296d7dfffad131e4863ff502f71fd7fb0e521100bbc4a81eba71"
[[files]]
file = "config/vmp.properties"
hash = "e25cf9aecb5e4b0574cef64b90b036872ef6b4f6df03ee2af531664773871a59"
[[files]]
file = "config/yosbr/config/authme.json5"
hash = "28fbc1446fe5b1cb31c8d24233ff354b2623e67b446652c93f57a726cc64409a"
[[files]]
file = "config/yosbr/config/iris.properties"
hash = "fc8b691f13462dfd6556a727f493fbf6271ae7294a6c0f07a6016dad0cf674ce"
[[files]]
file = "config/yosbr/config/modernfix-mixins.properties"
hash = "df2122c81ca4cd4b95f5f91b2fa8e16b245223ca79f5dd788362d5e575943b0b"
[[files]]
file = "config/yosbr/config/mousewheelie.hjson"
hash = "a26f0cdf438b58a783c8df6a27261d847c4c5cc121421d79f7b84f0355f11852"
[[files]]
file = "config/yosbr/config/ordinarytweaks.json"
hash = "74733b8372e2c412530c29cda1706fb04488b50865b9fffc4709ee0e5be7851b"
[[files]]
file = "config/yosbr/config/xaeropatreon.txt"
hash = "519f811142b420c13dcf133196b9edd93046cf37e30c63afaf4f0e962b4fc94a"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/advancements/crafting.json"
hash = "d5afe334f6463fcc6a07624ed5c311e9f32e9fad3cc560ce719144130303352f"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/advancements/enable.json"
hash = "b83de50f5d36cf6cdf420e9d67da1111f2c6c0fd2731da13c09dbfacba16a58c"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/advancements/root.json"
hash = "6932cfe668cbc5be30bf7e37d26118c661780301783b4e7b8d445d7da9837538"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/admin.mcfunction"
hash = "52d47eabf86837f32d22ccc9e3e96c44b94425d32bd56a72be966e9180c7a809"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/admin/book_from_help_toggle.mcfunction"
hash = "5948fb1bc3c6685dce947b0d3d0fea132faa76d353ec3c93673f0506de8ee0ab"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/admin/craft_book_toggle.mcfunction"
hash = "adfaee42700b056fd4b5525cafb7854651a7b9ff83bc80a56d4643ea7240b3ab"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/admin/fixed_item_frame_toggle.mcfunction"
hash = "7c92287fc655c06da9770e4641284151db0177f2e950a584076ee2dd93d29adb"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/admin/marker.mcfunction"
hash = "94be62c6a0d079ed0143a0ce9016e5741dd21168aa7f095457f9648258f38e8f"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/admin/unused.mcfunction"
hash = "275ddb698be3446e3d128cda657253030b16a89df91b29d1caf67e58361311fd"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/admin/uuid_lock_toggle.mcfunction"
hash = "341ec139629af6e21d4dde4396f7bce7547446f8011d3febd35854f749680450"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/bugfix.mcfunction"
hash = "e91e65c049cf7778688248883d4fb36cd4719c6aab45a7231a83ec0ddcc08dc6"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/craft_book.mcfunction"
hash = "329c3c6ec28c538dfda87699b1382d5ccc7e6862eefa4b5973bb93f0524a5eec"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/enable.mcfunction"
hash = "45cd26ba7e14eab5038c8056a7cb6872bc91b1ed65ee4c781ed175f8eaea00e4"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/give.mcfunction"
hash = "0621c22759d28712547d923f80e38b06066d205920d15d5682919325e89cf612"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/help.mcfunction"
hash = "a4a2eb6ddb62d05d15b5a3217cef24de7e450e994f7fe1306b2fce44d348ec29"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/help/chat_actionbar_toggle.mcfunction"
hash = "a8446bd117d806301be4367e01d0015615ad2a1640b01b9b9284a08340d095de"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/help/credits.mcfunction"
hash = "762e9cf8b2037232ca7117dfb754b319bd57e4b4d068ec93bfd426cd0b514e2b"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/help/get_book.mcfunction"
hash = "11245731897fa586cff0f3d5ed06d1c71a8d667755d9b23e65c4bc433e9396e2"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/help/main.mcfunction"
hash = "cbd97613a0f17ce06a26b4e159fd8a6cf46014165dde736452e9034ca57470a0"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/if_trigger.mcfunction"
hash = "47067ab626ccb835c40ba82dab99bb8b78b10f5c2bf791b67fcaa6afb5f4d5ad"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/item_frames/fixed.mcfunction"
hash = "5deab3a4f93e1ed3ecf8a08e2940464d6b8e15d224f6d866e9b7c7de35613915"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/item_frames/invisible.mcfunction"
hash = "bd859664c308c39a01af4bd6376194219de4398a3568acd2726874ddbca389e9"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/item_frames/invisible_old.mcfunction"
hash = "d560879920912c74198c622424de7c9828720c2413316aab4039ab1d2df053fc"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/item_frames/visible.mcfunction"
hash = "86e748b5924d7139aa1cd317766310dbbe2351bd41b89eb5424ff2cfbb8f01c1"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/load.mcfunction"
hash = "02838623a4c0cb4dd3aeee0cf86d0dc1952469adfb80b60de64ba56c00b12e30"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/locking/lock.mcfunction"
hash = "bb6e6c437a0d9f68e1a794ccdfab12f4be7c290684019011f19dbfe82e0303f6"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/locking/lock_check.mcfunction"
hash = "7581673802e23113e34215f4b3bca6999104c1a2e4a4efbffd49cf7cd08f0664"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/locking/unlock.mcfunction"
hash = "e35863ec5db6d5760fa92dbb881b6565c437e9b405d31ccc72c707af5698c4ae"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/locking/uuid_check.mcfunction"
hash = "826a2153c65ebc86a3016a5fdce17b1ba571bc510302b1bfbfb05af4433974f8"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/body.mcfunction"
hash = "faa47c019810dc07437b999610f043fc03b2973c81d2ef51006cf28f3ca040e1"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/body_angle.mcfunction"
hash = "d413959d994544d6c727096bb05eed4cdd9bda81bea28c17799e1e168e1ba476"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/head.mcfunction"
hash = "5b9db21004cc179d2a9c5a552a578a133576276fd2f695a5d8938ab7fc1b8551"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/head_angle.mcfunction"
hash = "f9db81bfc83f8f5fb70eca8212b0dc5d5e4e1aacf5a6a9fdc4e96ee677bf4de3"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/left_arm.mcfunction"
hash = "985f71704ac6cf2c9a09c022d56c57d5883031ccf1790e8a27da8e8b1e529ac7"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/left_leg.mcfunction"
hash = "3e896959a4377b7c41dd6bdc6a24c6aa42fd3effbf4a1a631daac6ab3342cab0"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/left_leg_angle.mcfunction"
hash = "241954820c7b7cc5d1d4a57cb68d96f8e58e44f796e50472fe3efe711af632d3"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/right_arm.mcfunction"
hash = "fb286daf6b4ae7d10ced4b34d2e32c7b7cf176fa6cd6091544ef5eb764944295"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/right_leg.mcfunction"
hash = "16fe4da3b10325f2cea2218baf1e0ce5ee5c99373dfaafcc1f591a03104ed537"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/randomizer/right_leg_angle.mcfunction"
hash = "3a0a7f0641d3370fd01f3625f2a6cd23b96e0ceb46962180c4ce1dc0e61bd06c"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/relative_position_aligned_nudge.mcfunction"
hash = "ae28e659284a1cabff7075720b22425339ab20b1d3d8936ee3af0cb828974b73"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/relative_position_nudge.mcfunction"
hash = "e9e5ab3614afbe58735165858fa8d3f86cc10da837045f6796a1b920fcfdfb9e"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/replace_book.mcfunction"
hash = "fa4011a19c0028bf8f4ae8d426b7dab5830c41aca1efcedc579c25dedce277c3"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/sealing/seal.mcfunction"
hash = "3712d79cfd3c1e62a472956b13a0e3bb5b141628b2edd56b86e7de53368d51c6"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/sealing/unseal.mcfunction"
hash = "74bec6714f6848ec8dfff7e70b79c5657132272f207840cf24f1e61d5027e3e6"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/second.mcfunction"
hash = "f9c726a57ecc05a263db370d99283ca63dfe5beb61c668e7b92e77f36f2eae9c"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/shrine/create.mcfunction"
hash = "2ba55e96891653a324650d4c4f8366b70e9ff288608386bdbd231cfea8c734e2"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/shrine/main.mcfunction"
hash = "9294791cb1b74c703327ef786e4f375f0da8baf340011239691058b2bdb4c764"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/shrine/remove.mcfunction"
hash = "ead09973cecf2b0a94a3dbb669cf06e8edec97f064f3c82cf581c8ec78067573"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/storage_in.mcfunction"
hash = "261faf2bd502a92df06f7255766cec9ae5e05b100f4904af2a5c333bb523dfad"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/storage_out.mcfunction"
hash = "350127f14c358a6d2a4442c58e31435da53eda8a13745f222145b8171b04bb8c"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/tick.mcfunction"
hash = "ae98348b5568aaf0f2043878d494c62270e2a1065f5dff3a12da4954ad3d4171"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger.mcfunction"
hash = "66966785ff1faf454dd7ec4e4f7d8e59b9936a68799f087896f321c5b708799c"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/adjust.mcfunction"
hash = "312a9501a2077b545dff5cc6af8eccb0324067ebd96c2c114e956b6e85579e4d"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/align.mcfunction"
hash = "d250440c2f7f5add2a2955e84becae1d22a8f29bdfe8ae5d034abe23b58a408b"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/align_small.mcfunction"
hash = "1a7fa5b67dc47aea41b0d3962c58d96b8f57ccf460c36c20f60a40f8682d9798"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/copy.mcfunction"
hash = "8dc375c06789b7f9ee163bf3cc552b24923eeec3ad2c0af66e6edcb9c7fccda7"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/facing.mcfunction"
hash = "a7c5a40c471f743aa5ff04a3754eca14b789353a545f5901738ff0bb49954b37"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/flip.mcfunction"
hash = "ee702333144315efecbf9d175dabf74587ec07bf17dff80a57ca83f8b062e351"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/last_edit.mcfunction"
hash = "06d2347bdb6a888ecc42abea3859a3d7156ffdf092480cf17a62f2fff2e8746e"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/lock.mcfunction"
hash = "81572bb4265715d42bde3e6c42fef88df7dc48243ada67237a5be77b92334dd9"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/mirror.mcfunction"
hash = "531a351a4aa3a3486155540a1ddc608a5efc59e8a6914a0dc3d79b26c637031d"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/paste.mcfunction"
hash = "3a43f873a54be8eca87570998a2cb2f361830fb170e6841996d2e9227d59c46f"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/pointing.mcfunction"
hash = "4ea9293652a72d525dbc42419a729d76009aa0e2c77045ba16bbeaf46da907de"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/pointing_small.mcfunction"
hash = "f5093a30e6c5cc44cc0b772bd9a4d717209e949faffe93ca15c1952ba14e294b"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/position.mcfunction"
hash = "77e94ada4d28aedf8296014ccac6bab021ee93e2becceea0f8a3d95f3a6d3af5"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/position_relative.mcfunction"
hash = "29ac215b2ff5eb379296ba97ed24d19df106becda1f062ccb9ca0f3fa72045e7"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/presets.mcfunction"
hash = "a773168dddecbb268c31abf0c52a39930efe75693be121ceafcb6deb7514c5e1"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/rack.mcfunction"
hash = "78d6ab10d9e922da3a36b85b61ff364f34a26ffc6ae0a607e72bafb6d7831108"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/rack_small.mcfunction"
hash = "50e52b9b2e712625410e7a5cb7b76ff06a7f67dcf817f3c99fad9a526a3f676d"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/random_pose.mcfunction"
hash = "87166d0727264c821d59fa746af820cbb88a98824ae2dcca530ffec9bf6df072"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/rotation.mcfunction"
hash = "bc600a0c299b72c258a9e4515bc6e40e525357db3618653a3724ae559bda1967"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/settings.mcfunction"
hash = "c566cc08ccee5c447fff3c30246c175b4f64f8d095edb1c59933d1d0147492ea"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/trigger/slots.mcfunction"
hash = "0f45129ccaa01f38af777a18291ccc548a24b513c77866cd8e9b11ca336865c2"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/functions/uninstall.mcfunction"
hash = "c66b72075f8b142e5ec0920c8034cce96d53ab3d8f71046dcc5a044c0832b200"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/loot_tables/book.json"
hash = "910673d820ec47e6f9fda16ebf9f909fe799da4c5e0e1a27d7043eb5b1641155"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/loot_tables/book.txt"
hash = "8c0a9c9355393dfa28273b38429a5ab1491795546c5b5f8c2279ca32a3254a84"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/loot_tables/random_pose.json"
hash = "86c6bd8970d2fe84d1449143bae1b916ef1677d2877f72f9b699bac041675807"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/loot_tables/replace.json"
hash = "f3548ebde76c2017f6d42b055b100612ba5ece6296ea163d19381aecabb97235"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/book.json"
hash = "b0cdb7bdbb9551ea3f840f257419efda16f413b0c0c0946538984d942488ca0a"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/bothhands.json"
hash = "694486187807a338e2a0f1ec796b8f8a01390b9436a75ef40bb464564747c213"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/mainhand_potion.json"
hash = "0f847d3821c598e34f2b313b14eebaa79fa161b4697c3d7edf7bb88ea41c0147"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/offhand_potion.json"
hash = "d62f60b7341fb59d10a152e98a9ba5c474895397e4df8e4b221152f1e9473157"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/random_chance_10.json"
hash = "fd694f813b2d6f48690c8b76c486f3ebedcb571932cc19dd3e164c64a93e4445"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/random_chance_15.json"
hash = "fd694f813b2d6f48690c8b76c486f3ebedcb571932cc19dd3e164c64a93e4445"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/random_chance_20.json"
hash = "3115db8a34fad663c4bca597577549ce000772275e5193cea1f1ce5fd36ee922"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/random_chance_30.json"
hash = "fcba3ec5d8a30b7a870a28aa91df278ca49d8124c7494bdbde36f814752d6432"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/random_chance_40.json"
hash = "3e7f9984ee80d67fd7e7ae2e148ec08df51f5f7359f71296017cce8d02200484"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/random_chance_50.json"
hash = "1911ece8598995c970ae19cf1789a69341915eba0e2cadf132ff61835af6be4f"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/random_chance_70.json"
hash = "f69e074ee2d5156cc808c5f287cb2b9b26077646aa611009222a86620c51949c"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/random_chance_85.json"
hash = "d92529292bf9a2d1ae6de3d0513ed4a682ba3b44e8bf478594ebd1f6fba9e939"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/savedpose.json"
hash = "2e253fd47999b932c5b2eac8a692a388e274a93593bb81490e9e1ef028777732"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/savedpose_mainhand.json"
hash = "4dd5772fd587f917b88aec0bba8dd0e701467cbf25ef36017626b3f13aa0845b"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/predicates/savedpose_offhand.json"
hash = "89a0bd4d2cadc0c822c3e68f3f2daced6c1740580c1d0d08453c31e77c7928cf"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/armor_statues/tags/items/potions.json"
hash = "933bf893c7f5eb670f52ede4c81c1bc467591006f65c9739b46ea9ccff502bce"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/minecraft/tags/functions/load.json"
hash = "80f6761ddd322b627bb0937b8046642ec4b94282dfff753caa6a1223de2f8c51"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/vanillatweaks/advancements/armor_statues.json"
hash = "cd75297734ecf22a718b90919d9458fdc1e350ee6a0929b29583e6126cf1e9a1"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/vanillatweaks/advancements/root.json"
hash = "1c1904d38cf405f427730101ea35e1a44358ccae6d7b7aff71fa77ba758a2544"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/data/vanillatweaks/tags/functions/uninstall.json"
hash = "4c5fd152c793e381aab2d6034335645dfda36ec07ebd83d29e2a4b335590df08"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/pack.mcmeta"
hash = "29da6a023d5b04c6cefb8bafb0cfb144ac94a1e10cc24e731c7d7bcefa9cdc54"
[[files]]
file = "global_packs/required_data/armor_statues_v2.8.5_(MC_1.20.x)/pack.png"
hash = "f447e7687d0daf2be6e285fb06f644c0be5af21dc35b3f9163717b66e414760b"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/bat_membranes/functions/load.mcfunction"
hash = "b602e4ebe0648a2c4842dce5fc9bb4a6f9411d7f73332e28da61155f4dccf1cd"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/bat_membranes/functions/uninstall.mcfunction"
hash = "e8b5c139c942ce4eaa5cd77b65d8f7a4ce8869856c8d698d8619a64340c096c5"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/minecraft/loot_tables/entities/bat.json"
hash = "35af16953c6eb43ed820a95466b5a22bbaa298dfff059051f642d24d361a3d50"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/minecraft/loot_tables/entities/reference/extra/bat.json"
hash = "7663aeb1cf49dd599c8cd719554dcd9a4db817aebd01fbe45a4155692eb82112"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/minecraft/tags/functions/load.json"
hash = "06501fe4a3ce4e77e867ab771fd7875b0e671ccda9769d6d8ccfca0b8235ba67"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/vanilla/loot_tables/entities/bat.json"
hash = "fb37b3c343aba8c731ed6276c6d4d9e8b9200b52405582b9f5f517bc5efa18af"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/vanilla/loot_tables/entities/phantom.json"
hash = "d451588ddce04a5c514b5fdb8e689590b5ff6c3e8f964d3d4bc111c5617c66cd"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/vanillatweaks/advancements/bat_membranes.json"
hash = "407c43b537c58aa6daaf5cb310ee83a3005ef8db4bb9d59f58e7f9edf508d35b"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/vanillatweaks/advancements/root.json"
hash = "1c1904d38cf405f427730101ea35e1a44358ccae6d7b7aff71fa77ba758a2544"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/data/vanillatweaks/tags/functions/uninstall.json"
hash = "8671727b8398e44db5977cd0c9d046c77bfa39acc9648c5dfa19cd25466883df"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/pack.mcmeta"
hash = "bba8f6f273ad271c7f0feb8854f751f67688f239f2bbd1d7ec641c36c70b45e9"
[[files]]
file = "global_packs/required_data/bat_membranes_v1.0.5_(MC_1.20.x)/pack.png"
hash = "ce69343f3c17c590d6ad980377cfbc3547c013279934a245ba7cb57259103a77"
[[files]]
file = "global_packs/required_data/block_rotator/data/minecraft/tags/functions/load.json"
hash = "969498f66091db6c9f36d715379c68800cd9c82b3135ce30469128a1efad581d"
[[files]]
file = "global_packs/required_data/block_rotator/data/minecraft/tags/functions/tick.json"
hash = "f1757eae4dd6f50cce616b773d846fb5b5f679365249287d3bb5d35ff159a721"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/load.mcfunction"
hash = "72e29825cce0c061bd85aba8f96f2299701ce43be75f9ffbf23c1e2973b10077"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/main.mcfunction"
hash = "46527e8701deab0927b9029a7cd2aa196c710ec0f6c667d3a0a040127e789774"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/cycle.mcfunction"
hash = "1e4cbfa228ab406961b6201a3d915eb4d4b962d4c6e5a55ba73e60fa374f5cff"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/partialbox.mcfunction"
hash = "dfecd97a4705b7e60fe57b5bb322dba07c290ef09a44c564a26c6a56169e6515"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/partialbox/end_rods.mcfunction"
hash = "7b2a68f119a397e724fb3cc94efe47f0a1ed278062d9fd532c70103d041aa63c"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/partialbox/hoppers.mcfunction"
hash = "e15640d414524befa39f908edabd8091dde9f0a0952fc311d94edd371fa977b7"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/partialbox/pistons.mcfunction"
hash = "2d096a2667316e5f0d2fbf3ccaa729bb56b43f6c615a0084d88a8eb97078f638"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/partialbox/rails.mcfunction"
hash = "3c6efa043ad24466e9ad78cb6f85e63f167c7f156e5ebdc1534d00c75e7f5254"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/partialbox/slabs.mcfunction"
hash = "059a10292fd3884671224a88673d08bca7d7611786cc1976ad2b10600ef06bcc"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/partialbox/stairs.mcfunction"
hash = "bca7854109a4020eabdfa73774ae172101d1fce51e26632943846bac5775da36"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/partialbox/sticky_pistons.mcfunction"
hash = "d9039e15afc83c57a5b1913af113d1f7b992cce91686c32de8aee6153bb30750"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/raycast/start.mcfunction"
hash = "969270640cb4342f5f9d6b51801165670560c35c3425dbdcde084702be0b35d8"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate.mcfunction"
hash = "25cab550760fd9f6e15ea3b93ae9a0a4885ff7d24464acedc96949dd6c136740"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/end_rod_flip.mcfunction"
hash = "8bc0fdbac9b5e91171ae774c381b560c5c3e93ad60a21459b37230b1e4f8ae68"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/extended_piston.mcfunction"
hash = "9c59a9f41a64e3aaef63a49d0e09dcf05123b39a1c3c6ef127a80f2591f99ecb"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/glazed_terracotta.mcfunction"
hash = "c02c75719f1cbfa765abddbb9f2039a3aa4634746fdcc4a1194430a432f03cec"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/glazed_terracotta_cycle.mcfunction"
hash = "102d2f51656e4c2cdf65f2487b20268a9500c2ed6dd36bf3216ca34084adbe17"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/glazed_terracotta_mode.mcfunction"
hash = "0c84e6f8b791881c0c738449c3d843fb49a048cd63beb6aaf15aeab44d48bf41"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/pillars.mcfunction"
hash = "d7775158e4778e6d753bfa0f4e2c0365ccaf12acac6af72bda40773e106f4be7"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/pillars_click.mcfunction"
hash = "d056c65b31674babe91e2f0a52523d8aec21916912e05da231c7acdd71f9555b"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/pillars_cycle.mcfunction"
hash = "69cadd959c8ccde76e0398cb6ac578a9a888712a909c9c93ee1c50b9791915d5"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/pillars_player.mcfunction"
hash = "847f851c73e0527c9606b78224f3bf6e44339d919ab734eafc7842aec6f47b70"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/rails.mcfunction"
hash = "fbb958fba2362b617557368950ea5a34fac419759594010d6cadef58e6b1e371"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/rails_cycle.mcfunction"
hash = "cca9e9babf53a40188cbdc234b618764b59323520e0f9afd132352bb439a17e4"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/rails_player.mcfunction"
hash = "085b5d7faaf8f67ba9a9864d6bf805156ffad21e5e949c2c6fa5e7563c170499"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/redstone.mcfunction"
hash = "04896fd1fcc322e0b406b310a05139c89dbfd722dfe0945f0841a52629db0bc4"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/redstone_click.mcfunction"
hash = "4fb2387f0a19fb3847f48ca46b688d4eafcccbb0245a4f4cecbb87a3b0ad593d"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/redstone_cycle.mcfunction"
hash = "0dc0b4a0d52a53ec0166032741cb747cea09f8b05893a341c17f62c50af18527"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/redstone_flip.mcfunction"
hash = "c5ebaa6174081bf69cd917998d970d5ac858a473f8018381ddc4e688552cfeef"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/rotate/redstone_player.mcfunction"
hash = "d633695daf467a1f857869ee0b7efd624d0a3bd2b87688bb9986f1ffcab8c011"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/use.mcfunction"
hash = "291fe0b80ea922826dc0dcb55da060e1e21fd1fb1cac447816efba5b3420d9b8"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/wrench/convert.mcfunction"
hash = "d14b63cddf1612242f5534050d0563f6af74bf4044c5e33c34d9efad74d6e487"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/wrench/give.mcfunction"
hash = "05f5e27292102472a99dc636f884a35fb3144d5f911db25b8d78ca384e5ead85"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/wrench/offhand.mcfunction"
hash = "e1c7c5ad6b64566d761ebc54e54cb2876509d07406b477fd30fef9edd803de94"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/functions/wrench/terracotta.mcfunction"
hash = "c6c088c3e6da12d385c751863ea3bab7af7aac5d1eedb4335fbb872b5be7c929"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/tags/blocks/glazed_terracotta.json"
hash = "2eca9d5b5362915aaf9bd599d8bac9644ef16edb94faf9f0ae387d3101938100"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/tags/blocks/notarget.json"
hash = "e70aec130f63d85167c5530e5ad02bf9f935996d25986a2e3728f9d683e53a1b"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/tags/blocks/partialbox.json"
hash = "1266c277b2e2dd21ac4434eaec4027be03be4ffb6a0a4887cf8e1867e69192a3"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/tags/blocks/pillars.json"
hash = "be315b6b9cda2d72d8247928583db5beb08ea43a7ffb3389e70b8cdb12590d35"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/tags/blocks/piston_arm.json"
hash = "ef0b140e5226cc5776d71c8da852ad184cef8cbefc935fb9a5d07bcd41cfe62f"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/tags/blocks/redstone.json"
hash = "fa702764a89c9469df536eace04b3f3d08b9734420e92da1afdb88c75f88189e"
[[files]]
file = "global_packs/required_data/block_rotator/data/rotator/tags/blocks/updates.json"
hash = "455038d1d55ef3a1ce6a2ccc7ddf70beeee29f56fcfa0bdce9664824fc259b09"
[[files]]
file = "global_packs/required_data/block_rotator/pack.mcmeta"
hash = "218b50f039dfb0e845a569a0e3b1fa1aeed4dd1b8f0de6c958ced52379a68d04"
[[files]]
file = "global_packs/required_data/credits.txt"
hash = "df059876aea00380750239159459ca57e72fabbf5a69a4df013e6a7c9ef0a78c"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/advancements/use_ignition.json"
hash = "16bf925b3cf7ab6f64ab1b8d99032c1e9711a54e5e6a856ed1cbb6ab9530a762"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/check_x.mcfunction"
hash = "2d92f3973aef129668bb21cbb911be8d5385519b9935f02fb48de96cea8f24df"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/check_x_diagonal.mcfunction"
hash = "2831791b1dcedc7e8cbc7e2cb88d06c94089c70db12bcb9208691cc67398752f"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/check_x_sides.mcfunction"
hash = "9f357b0aeca53752ca9c5bd66a9d63415ee22c05e52d7a47c86ea7ff7d4636c2"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/check_z.mcfunction"
hash = "f58cb1be25738c49ac01fdf8dcc9ebbffb7ffb9165bc1bf57ba7895282580204"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/check_z_diagonal.mcfunction"
hash = "02d9b2de23996b8e74247ccd9f58dd7c46d948cecabb0e69f90be0762ab9dcbb"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/check_z_sides.mcfunction"
hash = "0706b736419b4b46bf052f2875ef7e50676a559027d467ca7aaebbb29e8dac98"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/config.mcfunction"
hash = "fc1b1c5819b9c2cdf30d5715d42af69548b0a42772a6b700a10b721f14512e67"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/config/disable_crying_obsidian.mcfunction"
hash = "34079d0475c8a7ac99e6039c2169fa8cbb9da4a16d29ef684dc9815a41982ae9"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/config/disable_non_rectangular.mcfunction"
hash = "1d6d3ef6de23fa3a34846afef149384e468ba6e752c6fc8fe9c8273c6a0992b9"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/config/enable_crying_obsidian.mcfunction"
hash = "876e6981d1e524e1d9680f6c0b93dbe86d4c763a9f1e8c091a2c68e5f8645046"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/config/enable_non_rectangular.mcfunction"
hash = "9214c829436f51406999f245b0214311c2f282f2005f0c36b9225b4eb560ceff"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/continue_x.mcfunction"
hash = "aed49cf74f6e4ce47abae905cfa79f8e7e9ca4147dcef446a3bf31090cca1a7c"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/continue_z.mcfunction"
hash = "4d159d39a31e2618b36a63b00d14b9f44a891678b424a2aa233ade4a12df2039"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/create_portal_x.mcfunction"
hash = "d14236a9e063b8e405697977c598006a4a72efa1acf0036dd473a339eb6c30ca"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/enable_trigger.mcfunction"
hash = "e8867bd3ba0a903c26351bcb537811333bcaee4a46922622d5c58293f32aedb5"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/hide_command_feedback.mcfunction"
hash = "e75777717b91d7856a11e5a28b1c6f449c508e38682bc16374d1dc02b9786640"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/ignite.mcfunction"
hash = "a6ee9ecdb7644604f83d1bb0691a1898282c1ab7a32742c2065769a1637383c8"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/iterate_x.mcfunction"
hash = "cd709c71ff14a8432955d838b9027ba43425681b7cde3d1aea8150ea2f3fac83"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/iterate_z.mcfunction"
hash = "e914f29c504eb5df23152503fd18bd805e61edc82643e1a247017f458cf9434d"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/load.mcfunction"
hash = "739236258d7b4f01c474db1c2fd34691e0e34a45999cce733255f6719cb981c0"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/raycast.mcfunction"
hash = "c1197d5cc573d0f60f0b2013f1e6964db79f3239e93434fb13cb5fa9e1165a56"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/restore_command_feedback.mcfunction"
hash = "900a876633ee1bc19621dac1d8b5532eb0d19e4c23633920e12bf9c821e4928f"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/trigger.mcfunction"
hash = "1feebd43a8d9f2c8bc8a8b1573cbec8878da97a4809440af596f38aa29d418fa"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/try_to_iterate_x.mcfunction"
hash = "a6148857baf76caca506aa47ac248cb1e38339c61862257304bb4f6e6b3d099e"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/try_to_iterate_z.mcfunction"
hash = "cae76d597991ad85f22354f37ec09d026262d5ee6e6a2c0b29dda45996ae0c7a"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/try_to_trigger.mcfunction"
hash = "da5bbe1045a843cfa452b0f520d9b485966dc2aa05e473583d63cfacacd637a1"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/try_z.mcfunction"
hash = "312b5970785fb6a87da1ea9c1b8c5dd0eef5f7b1504ee69b99d435cfa3bf468a"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/uninstall.mcfunction"
hash = "c1966dd4a4cc847cd128f2c6e61938be43dacdc9e4b83b2c8c0ebf972dc087e4"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/functions/use_ignition.mcfunction"
hash = "126594fe36b309f6e24f80be21011606f0b4a5877aa9c01897bb26e992c39da1"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/predicates/valid.json"
hash = "ba77a4dd7557cfcba1ae5de9a4932422592b753ee4b5c11818fdcfe5a21f5082"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/tags/blocks/air.json"
hash = "1c4a6024446fe22b8eea94b37e1009facd5881930a1cde705f9835a9679e8be3"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/tags/blocks/obsidian.json"
hash = "49ef1e7d789cf8297d0d04df1670a53fac5941ac31388ef27a3ce8eea3a8234e"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/custom_nether_portals/tags/items/ignition.json"
hash = "7907dad9386d0cb659afcfb0915fe7b4f2271673a804ab94e4b0f7303f10d267"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/minecraft/tags/functions/load.json"
hash = "423d71a738bb972c13b0fbccf88acc6d3762306a878da814a595e128008df006"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/vanillatweaks/advancements/custom_nether_portals.json"
hash = "a64030ee7d52003de5aa9045d4bac9b874b7e93276fbe74ab93540c21a4424aa"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/vanillatweaks/advancements/root.json"
hash = "1c1904d38cf405f427730101ea35e1a44358ccae6d7b7aff71fa77ba758a2544"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/data/vanillatweaks/tags/functions/uninstall.json"
hash = "720cd014a5e2c763629b6d4fe6f7287d568d6f47227b9871ab0ea4198e114443"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/pack.mcmeta"
hash = "1be029b2cd0cda1a0055e5866f35529a88329e3a484964239dfa59ef2c71c5ae"
[[files]]
file = "global_packs/required_data/custom_nether_portals_v2.3.7_(MC_1.20.x)/pack.png"
hash = "38190295a011d23c7a60175bdee70a10e5d634cb62679a7c2131a1486cdf21a7"
[[files]]
file = "global_packs/required_data/double_shulker_shells_v1.3.4_(MC_1.20.x)/data/minecraft/loot_tables/entities/reference/extra/shulker.json"
hash = "ea7647c74e9c4e7a7371f44767873054594c21ccb14627ecb0495a111cc11141"
[[files]]
file = "global_packs/required_data/double_shulker_shells_v1.3.4_(MC_1.20.x)/data/minecraft/loot_tables/entities/shulker.json"
hash = "edd754da9a22c07ffb54b93deabda1bbcebd4fc0f41fb908ce26917f96bf161b"
[[files]]
file = "global_packs/required_data/double_shulker_shells_v1.3.4_(MC_1.20.x)/data/vanilla/loot_tables/entities/shulker.json"
hash = "59828aa45408a0f3f764897e25dfc18f80284eabd9f23e3af0692c23ab869140"
[[files]]
file = "global_packs/required_data/double_shulker_shells_v1.3.4_(MC_1.20.x)/data/vanillatweaks/advancements/double_shulker_shells.json"
hash = "2580910679b991c91b143e9b1ed563fae4d167b8c04d3212f7482bcfd59f2fbd"
[[files]]
file = "global_packs/required_data/double_shulker_shells_v1.3.4_(MC_1.20.x)/data/vanillatweaks/advancements/root.json"
hash = "1c1904d38cf405f427730101ea35e1a44358ccae6d7b7aff71fa77ba758a2544"
[[files]]
file = "global_packs/required_data/double_shulker_shells_v1.3.4_(MC_1.20.x)/pack.mcmeta"
hash = "38e29b3dd1238269d47fbc293f1934b1caa2fd050579c8a8d62fafe0018a3bd9"
[[files]]
file = "global_packs/required_data/double_shulker_shells_v1.3.4_(MC_1.20.x)/pack.png"
hash = "c624c432d135bdf16a04e53cde761b417c0f31f681b9a280fa445d0f4684fc72"
[[files]]
file = "global_packs/required_data/dragon_drops_v1.3.4_(MC_1.20.x)/data/minecraft/loot_tables/entities/ender_dragon.json"
hash = "2aa42fbef439160a54e47034c86ed95a8cee12c941ee4dbdd265c87908aece0a"
[[files]]
file = "global_packs/required_data/dragon_drops_v1.3.4_(MC_1.20.x)/data/minecraft/loot_tables/entities/reference/extra/ender_dragon.json"
hash = "d74bb72b1412005da35f52267814e9c79f0b30f0401638c7bfb236aa2fe5561e"
[[files]]
file = "global_packs/required_data/dragon_drops_v1.3.4_(MC_1.20.x)/data/vanillatweaks/advancements/dragon_drops.json"
hash = "5c6cd2b2c725634ee90706713eb9db931777467120c05b217968a7dbd13a86a4"
[[files]]
file = "global_packs/required_data/dragon_drops_v1.3.4_(MC_1.20.x)/data/vanillatweaks/advancements/root.json"
hash = "1c1904d38cf405f427730101ea35e1a44358ccae6d7b7aff71fa77ba758a2544"
[[files]]
file = "global_packs/required_data/dragon_drops_v1.3.4_(MC_1.20.x)/pack.mcmeta"
hash = "eb63ee494d983a21752a8e99b9dd59ddc31a2ff809a07e15fb7076f83b93f239"
[[files]]
file = "global_packs/required_data/dragon_drops_v1.3.4_(MC_1.20.x)/pack.png"
hash = "e89669add1dae863e0ee58f9b42ae3a0677f7d1e1391e99c8222ad6c308cdebf"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/allay.json"
hash = "783be9f94b45f9921a701757a369165b5fcc722678643c3d8de4633ce2e9b2a5"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/axolotl.json"
hash = "282cca159616d68188a6c4514a794a3b507f25ad8e27c71c6d68ecd475659120"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/bat.json"
hash = "35af16953c6eb43ed820a95466b5a22bbaa298dfff059051f642d24d361a3d50"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/bee.json"
hash = "2150299eac9676038c1d74a196b68b880fde84c5a905b02a6cbb87487968b40f"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/blaze.json"
hash = "f86e12004738189891027f7c3066027fd092e1e9a0f7edeed85884ede63171c4"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/camel.json"
hash = "8aae826ef41325b3b7dc3973c30cba702cc15525362a04bb00af655f537fdaf0"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/cat.json"
hash = "7ee93b831930fe4bc3542c42e7f89009035d4c405adb97fdf1713b3a8b02942d"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/cave_spider.json"
hash = "969b49c677f05b2bc109c9f9b81c8ef2db5efdb5b778adaa27041e30f86e15ad"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/chicken.json"
hash = "1f281c8b068c4c371d6f9275efa4308e4d6d31155f505e122204c8bd31c8b731"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/cod.json"
hash = "4f38e0c22fdf389ff393b280cab0d18c1c76dee9cdbb27cce4f9048b7f1b909a"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/cow.json"
hash = "d80a7575116304169bba1d4a20cf28c512b42d5b896c6c59e190a9da97330d28"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/creeper.json"
hash = "3b8f2e507204e98d5cbd8562e23f9f562ee621c457d5e51b7f18a4f46624744c"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/dolphin.json"
hash = "be4e5080dd7040fca84fbf25dfc75d66ef5101164d9466f26acbae38359bd209"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/donkey.json"
hash = "29a9c42b38b5413831fd6724a11227385755b3cf9b37ea8588376250030031eb"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/drowned.json"
hash = "2fed5ed542dc373babee7cd03a2ec20d0cdeb313af16acef75e544b9899bae9a"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/elder_guardian.json"
hash = "eeecf9442823d0c6bb4d6e07eebc14fa39c59abbeda65043c045cff71ec6ae50"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/ender_dragon.json"
hash = "a716d95125b7eadbb46d69912003b317f81b5f701d82743fec9fe1bdb74413a4"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/enderman.json"
hash = "9e63d178941817dbca07bcb91b0bba52d90adefdcba260ec605341793c6e4d93"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/endermite.json"
hash = "86e5331aa5072377c548f92b4f03d520874ac6ff04dd791c236ae826826db480"
[[files]]
file = "global_packs/required_data/more_mob_heads_v2.12.1_(MC_1.20.x)/data/minecraft/loot_tables/entities/evoker.json"