-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.toml
3877 lines (2980 loc) · 118 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 = "LICENSE"
hash = "a2010f343487d3f7618affe54f789f5487602331c0a8d03f49e9a7c547cf0499"
[[files]]
file = "README.md"
hash = "5f8b4da0f5f3a00231ce23ca99977a25bf390583fbe08ec082f99f1097bbd9cc"
[[files]]
file = "config/CoroUtil/General.toml"
hash = "6d46bdc090d4bb9bdfb660be4ca94075dc08e09d5fed84108eba92a422a23c49"
[[files]]
file = "config/EnderStorage.cfg"
hash = "ee18dee1a8206cc3853e156102d70038554a4d0e30937e1e8145ef49086d0670"
[[files]]
file = "config/Mekanism/additions-client.toml"
hash = "ea58e4998b6ad79626af3758814fc8e784b7a2f9047051c03a2f2d05cc888540"
[[files]]
file = "config/Mekanism/additions.toml"
hash = "167317f50212fd80d2557ee1d560a796f2a99c827c979c6ca68e32e960cf3a1c"
[[files]]
file = "config/Mekanism/client.toml"
hash = "d6f8dfb6ac313566736773e428a754e37b14302a872a6647629aa74ef6a4eca7"
[[files]]
file = "config/Mekanism/common.toml"
hash = "3ff2a95929dc4c9958709c7b23eb1e05744d7d923484a955c3139f9500ab83dc"
[[files]]
file = "config/Mekanism/gear.toml"
hash = "87c1277f6d6482fe60deea64e73b3de019c65c7b4b7d0ef08c79f0ab3db95173"
[[files]]
file = "config/Mekanism/general.toml"
hash = "e381509b0519082578b3e2305e5bbf512860a20da96cde91271cb7f05339dbcf"
[[files]]
file = "config/Mekanism/generator-storage.toml"
hash = "cffe68411b03dd9a454f7bac2dda8a5c71a9243a02c75056d58dd0014a07ebe2"
[[files]]
file = "config/Mekanism/generators-gear.toml"
hash = "a1cabe21624e576f52a5586c0940ebab86b5301ba5f2b318dbc4e353206e58e6"
[[files]]
file = "config/Mekanism/generators.toml"
hash = "d0aa88a35c05ddaeb18c588c234a3808667ab8075e77a6d1be24a6ad95c7b88a"
[[files]]
file = "config/Mekanism/machine-storage.toml"
hash = "029c07fbceff23b8545519a46d192f40cb18d28feea5fc91544e8f6e3e934420"
[[files]]
file = "config/Mekanism/machine-usage.toml"
hash = "a7a59ca9d3c7434a167eaeae5234a24f4c0232dac838fbc08a76a142f8f1d9db"
[[files]]
file = "config/Mekanism/startup.toml"
hash = "4b1cf299c46ac8b9fb77ba9e8fe79d5594652ab4224f21b4ffc355ba1ade9b08"
[[files]]
file = "config/Mekanism/tiers.toml"
hash = "06c76a1a1e2a70d4f56dc3dd9a3d26057ce9f4e64a7cdadf1712e05e5a2c4165"
[[files]]
file = "config/Mekanism/tools-client.toml"
hash = "35d13264e852fee60462bbf0aa0ce3de3684906e479d4df3519b6626bc8d2fe7"
[[files]]
file = "config/Mekanism/tools-materials-startup.toml"
hash = "07c6f2a578caa6bb71a59c0b290ba0a5af9397a4fdefc64e2bd15b229d5edc08"
[[files]]
file = "config/Mekanism/tools.toml"
hash = "d0e129bb5c552e991f673aa841236844b0e35fcebb38e253cffe37cf5974a66c"
[[files]]
file = "config/Mekanism/world.toml"
hash = "e4f20adff1bedc918445de3d149e5275b7cf642a49ca8bdd3480cf54f6a455a1"
[[files]]
file = "config/MouseTweaks.cfg"
hash = "4069ce1a439d8c37453c1b1e9f2037e0942674c7e48723a39b37eab245792ad4"
[[files]]
file = "config/actuallyadditions-client.toml"
hash = "dd5947fd245a9fbafd38aa3c5808ad636f2f762adc6e47e3e33ac009fc73d2df"
[[files]]
file = "config/actuallyadditions-common.toml"
hash = "a9f5807e8e787b959ceb7417c2aab8a902d9c1e6681de6fa0c298a96355c5de3"
[[files]]
file = "config/advanced_ae-common.toml"
hash = "6390153efba2417108e71d099a6e2835ba472021197353aec52497700d42ba85"
[[files]]
file = "config/advancements_reloaded.toml"
hash = "d32b76a96618e793d49d3a4f85ce845412935a5a90996f37cdfa85c479602d64"
[[files]]
file = "config/ae2-client.toml"
hash = "c003fb3ac64c789cea15fd44a8f19d1f4f0c925758d376406472294f16a5b52d"
[[files]]
file = "config/ae2-common.toml"
hash = "d5bb325da6d3dbaf0015cf02fbd2d708c22fe761232d2b9bb2112e1f187458d2"
[[files]]
file = "config/ae2wtlib.toml"
hash = "8405fa1f1820cf98d772dad0a86e67a8d57d40c51a496af5356bed91899d6e9b"
[[files]]
file = "config/amendments-client.toml"
hash = "c595c20a1203c081dc9423d4f9f0e87d6e104c6329001117ab12d282614e9205"
[[files]]
file = "config/amendments-common.toml"
hash = "58077520dd8ca4cc525f5d48d5261262280fdf591659de3e378999bbe277f0f8"
[[files]]
file = "config/appleskin-client.toml"
hash = "7127a276c7305371397053cd8d0833e6825c828850626e4067b9fed1430ed217"
[[files]]
file = "config/ars_additions-common.toml"
hash = "9c4f6bceaa59e78ae4188bd8e9049141f80c1adf02313b5c585d838eafb2ab27"
[[files]]
file = "config/ars_additions-server.toml"
hash = "5e4d74f766f20f77565ad3099161bf1247d0e9b3b340e0136b4aede2ff25c93d"
[[files]]
file = "config/ars_additions/glyph_mark.toml"
hash = "fef7d3f3f235e12a7e6e466eb2a603924370ef32ad53d748c4b9fbaebf233a0f"
[[files]]
file = "config/ars_additions/glyph_recall.toml"
hash = "9cb471f76c3a793afddc6bd848f807891bce4d8e8223fb3295850397360c2c29"
[[files]]
file = "config/ars_additions/glyph_retaliate.toml"
hash = "b3d7e25bcf4c2453fbdfb666386bfb0d7babf288e0222cdb769078e324c4d303"
[[files]]
file = "config/ars_elemental-client.toml"
hash = "8e110b4e79206ba0ab77eae7a0581ad19cdd1eb43aa2e85ce9c3686f82253fb6"
[[files]]
file = "config/ars_elemental-common.toml"
hash = "c1a1988dbe3ba251fb375454539c72011a182eae364f39ff520a743d9b53750b"
[[files]]
file = "config/ars_elemental/glyph_aerial_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_aquatic_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_arc_projectile.toml"
hash = "e0fb68bb6e2046d5c50267eb75ca69a0c8d8ce1b946213e11df3a49fa4361c88"
[[files]]
file = "config/ars_elemental/glyph_bubble_shield.toml"
hash = "204cc8ba3ce30cda31b8311d83418f9d5dd1688f63e02bd691d0403fb811a988"
[[files]]
file = "config/ars_elemental/glyph_charm.toml"
hash = "523a0cab35862e640defcc95ca9f3f0252121436bb517eaaf6ff707886c003d7"
[[files]]
file = "config/ars_elemental/glyph_conflagrate.toml"
hash = "5f209d2271ef3ce6d4f4c5f57fd11b37eb97d0c0b933332b5e1c83aeeb019dc8"
[[files]]
file = "config/ars_elemental/glyph_conjure_terrain.toml"
hash = "b60b5e1bf9ad7aa82f8ed1ad85fd7ce7f3a533302d8530e0b487864e95f0c541"
[[files]]
file = "config/ars_elemental/glyph_discharge.toml"
hash = "b5ae727a34bcb47f84bd02bc612111d6ee5458fb2ebb5736a22ebc51e9790482"
[[files]]
file = "config/ars_elemental/glyph_envenom.toml"
hash = "8dbbd4db4b1fb9b1c080152f60ce851771d7fae621c058bd4a6028016774948d"
[[files]]
file = "config/ars_elemental/glyph_fiery_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_homing_projectile.toml"
hash = "2914ab6185df6a4b1b379b1f3f458ef2410bad4afffc55aa69b1edf6a49b1d6e"
[[files]]
file = "config/ars_elemental/glyph_insect_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_life_link.toml"
hash = "81e68d7000cb0e499fbe40344b0e0dcc072776e1b94017a6b5924f7f628e750d"
[[files]]
file = "config/ars_elemental/glyph_not_aerial_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_not_aquatic_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_not_fiery_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_not_insect_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_not_summon_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_not_undead_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_nullify_defense.toml"
hash = "841338864ff4b987ce2c016f36fc6ddadddc86210a7960d3755285421c95aeb7"
[[files]]
file = "config/ars_elemental/glyph_phantom_grasp.toml"
hash = "6b6d188a58dbf3c6d667db89a092763128e49de8d44ff349e161d1f32640b42a"
[[files]]
file = "config/ars_elemental/glyph_poison_spores.toml"
hash = "a3e395b9d99659c17e7f30371797862ca525d63e5e48f64a9c73e51af7e2646c"
[[files]]
file = "config/ars_elemental/glyph_propagator_arc.toml"
hash = "07330f2a4cfbb0da4b9b7d8717cd1d3e5b71d4486ea5df54c2e584f2980f466c"
[[files]]
file = "config/ars_elemental/glyph_propagator_homing.toml"
hash = "679433d01039e361d2dc9690e60b42e9f137a9ba4fcdd176495b3b81fd750988"
[[files]]
file = "config/ars_elemental/glyph_spark.toml"
hash = "dd523ac0518a5a8d14326965c3625ace26f80a4a1e8c3f21f74504a0926d9731"
[[files]]
file = "config/ars_elemental/glyph_spike.toml"
hash = "2172d581e71b00ac522c35ac9ec4c7be446d6560b7623c9a4fbb724398c187b8"
[[files]]
file = "config/ars_elemental/glyph_summon_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_undead_filter.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_elemental/glyph_watery_grave.toml"
hash = "cc270ccbb8e4500daa85471fc073d6d4ef7879f2b109b74fc9a4949af1b28e0d"
[[files]]
file = "config/ars_nouveau-client.toml"
hash = "2a65d462b4f248c6b3bb69a660c46423573e2ee9a5bdfde0418fe53cefff0801"
[[files]]
file = "config/ars_nouveau-common.toml"
hash = "1a6883b89d7dc81ecc7c70cbc8f15ae62453986540ac27efb4435cccd6fcefd6"
[[files]]
file = "config/ars_nouveau-server.toml"
hash = "65796a006fbaa4ca12aa5b6d1329585000ae79bf4b9cac69d39bc99c0631afd3"
[[files]]
file = "config/ars_nouveau-startup.toml"
hash = "9fcf962fcc72ec8fbb25e6cb2a6abb87942acd502496225487065c02e3ab4dd3"
[[files]]
file = "config/ars_nouveau/glyph_accelerate.toml"
hash = "a31f5889f63fe0dbf691ee7dd7206899a57deef186b3b2b46d7efa628c4c9d80"
[[files]]
file = "config/ars_nouveau/glyph_amplify.toml"
hash = "1f08cedc144ec201d890842b5073d9c5f7a9b061274a472b29ca564b4ba819cf"
[[files]]
file = "config/ars_nouveau/glyph_animate_block.toml"
hash = "0fb48deefa414eb5b2df9f519ae8e8df8253f8d26565a41c275b9b8a54254fc4"
[[files]]
file = "config/ars_nouveau/glyph_aoe.toml"
hash = "6067cc16ce094c79c33841a718a5b9af9ecfaddb56f186b0901df50e76b7c0ab"
[[files]]
file = "config/ars_nouveau/glyph_blink.toml"
hash = "b1be9bd915365b3abbe81b327dab17f7f26bb43f3ad11ea6bb4bfea35d091b28"
[[files]]
file = "config/ars_nouveau/glyph_bounce.toml"
hash = "62447efc5276f8069a2ea44a1627c59a92e260fea86cf3ba8b617cca3509e1d2"
[[files]]
file = "config/ars_nouveau/glyph_break.toml"
hash = "ad9edccc148cb07d3134acb4a4ece9a77c38cad6e5ef2ca9bb11ca25ae5ef05e"
[[files]]
file = "config/ars_nouveau/glyph_bubble.toml"
hash = "92fc53b20e893fcf59264d4804f875936ba78e4e593591fef16e095e094fb70a"
[[files]]
file = "config/ars_nouveau/glyph_burst.toml"
hash = "78ab4ac2f8e4b1509226075249774feb048851007aa5b6bd1dde6132f68bfed1"
[[files]]
file = "config/ars_nouveau/glyph_cold_snap.toml"
hash = "228b1ac24a26b16c65ea1e40d7cb6adc912e17e319f741ceb6fe025cbcd988c6"
[[files]]
file = "config/ars_nouveau/glyph_conjure_water.toml"
hash = "8c09b754d12127b13e3b5c4b1ca02f833480e5b17ea5c30407fff2bf2437bbc6"
[[files]]
file = "config/ars_nouveau/glyph_craft.toml"
hash = "a816b622f7f5f854eab26acc5482df2b3899ac5347552bbfa4fd9d9c0463c85c"
[[files]]
file = "config/ars_nouveau/glyph_crush.toml"
hash = "14eb1329449f03ac7941a6eea6e74fd1fea8b47e42a250ce2099e00e3ee4988d"
[[files]]
file = "config/ars_nouveau/glyph_cut.toml"
hash = "b8415cea74a8a393207ff5246ddb8e1834eff5f6bd23c7bc410c60c1611e9d83"
[[files]]
file = "config/ars_nouveau/glyph_dampen.toml"
hash = "dd21ec3899d06bff70793eeefbdc372e0b93b3842bf1e1c8a15f7e0b0f8e5f7f"
[[files]]
file = "config/ars_nouveau/glyph_decelerate.toml"
hash = "b5990e67e62d60837508ef900955ba274ed580aa865cd377379ddf69762cdc85"
[[files]]
file = "config/ars_nouveau/glyph_delay.toml"
hash = "60c1312af54e31208e668c8295e45ce1a4169d22af5ef5058e0c97981d9837d4"
[[files]]
file = "config/ars_nouveau/glyph_dispel.toml"
hash = "0526dbfce1d8351539200857e343455871cc811a025f43568217d360e335413a"
[[files]]
file = "config/ars_nouveau/glyph_duration_down.toml"
hash = "102d57868ed836487c5e9d1060027211f86eea12cc95db7c8650fe8c4bf1239b"
[[files]]
file = "config/ars_nouveau/glyph_ender_inventory.toml"
hash = "2a1fcb27cfcdf2ae95bafe7b485977cd22b64ff593a9a0034827858e47bd935b"
[[files]]
file = "config/ars_nouveau/glyph_evaporate.toml"
hash = "a816b622f7f5f854eab26acc5482df2b3899ac5347552bbfa4fd9d9c0463c85c"
[[files]]
file = "config/ars_nouveau/glyph_exchange.toml"
hash = "2a1fcb27cfcdf2ae95bafe7b485977cd22b64ff593a9a0034827858e47bd935b"
[[files]]
file = "config/ars_nouveau/glyph_explosion.toml"
hash = "beacf60540f77b97b4bc12e4aa722c425893bf6d22745c8e6c935b8d85d90aba"
[[files]]
file = "config/ars_nouveau/glyph_extend_time.toml"
hash = "a31f5889f63fe0dbf691ee7dd7206899a57deef186b3b2b46d7efa628c4c9d80"
[[files]]
file = "config/ars_nouveau/glyph_extract.toml"
hash = "558434e11f6a82855a8e43c6bf4896bcc86677aed0f6a06827295c0c1d33fbe7"
[[files]]
file = "config/ars_nouveau/glyph_fangs.toml"
hash = "4cc4c94639da07abb843d2f0e213c7e00e6f97ac25f4d9bd47ec592f25f4a022"
[[files]]
file = "config/ars_nouveau/glyph_fell.toml"
hash = "2d63e4dab44c445888035153f016535a471b45a5b63cb5060727dbcdd4eb4e41"
[[files]]
file = "config/ars_nouveau/glyph_firework.toml"
hash = "8e7fbe8d06d9e7fdfe4e191f9a1ad699813eee2e41e1ba3ecec22392925591e7"
[[files]]
file = "config/ars_nouveau/glyph_flare.toml"
hash = "61e5c27ed697fb87fb693aaf0f1dd0e7d40081a589c59c00bb2b004aa2a743ea"
[[files]]
file = "config/ars_nouveau/glyph_fortune.toml"
hash = "a1b14281c77dc0588771af4e235d03912b17b73090d68a2f4106b6a0d3ff4fd5"
[[files]]
file = "config/ars_nouveau/glyph_freeze.toml"
hash = "cd7351df30eadfd4a5583dee4882fac2f76fef2e0d1f7e3cd7a9b9a354d61e65"
[[files]]
file = "config/ars_nouveau/glyph_glide.toml"
hash = "ea07f2419ded616ff01c33cb04c81cdc1eff77ca681eb16b2351e0a7aa41fbb1"
[[files]]
file = "config/ars_nouveau/glyph_gravity.toml"
hash = "db83e5fb8ce9e8fb19e25655a233c3a6800f8437f8e776c9e3cca78875cda12c"
[[files]]
file = "config/ars_nouveau/glyph_grow.toml"
hash = "8cb26465bdad2ecee54319f83445a41ba2bbf26a7071eac93131812ea0af3e53"
[[files]]
file = "config/ars_nouveau/glyph_gust.toml"
hash = "9f60447a11660f62afafcf56c295faa78208fc83df991a4ccde07ce9cd9f28d0"
[[files]]
file = "config/ars_nouveau/glyph_harm.toml"
hash = "e132dad7db10594ae4c4f421300194e66d242b3c12017b5bd878cc6d17c0c781"
[[files]]
file = "config/ars_nouveau/glyph_harvest.toml"
hash = "63274ce775cae15a45124a0e8cb84021aa4e3f228a48cc3e88157c90f3aaf84b"
[[files]]
file = "config/ars_nouveau/glyph_heal.toml"
hash = "8973781972472014a1b81e4107734c482ef9cc268ddb08d73901838503b776a7"
[[files]]
file = "config/ars_nouveau/glyph_hex.toml"
hash = "4169a17c968a70aed11b64fab82f61c19d9d07f0fcc569365ff212008da64c12"
[[files]]
file = "config/ars_nouveau/glyph_ignite.toml"
hash = "a8063898d4c718297aa4862f68d4174a6f0d384e05e7b7b55f48fbc01de4c8e2"
[[files]]
file = "config/ars_nouveau/glyph_infuse.toml"
hash = "06aa8cd35dea1dd11468c882d121365ef4f786eba6a3cd3eb6687e7715fc1449"
[[files]]
file = "config/ars_nouveau/glyph_intangible.toml"
hash = "be5aca1382603d2de080205417d063e09602018ce910ec789cdb47da87f8e46f"
[[files]]
file = "config/ars_nouveau/glyph_interact.toml"
hash = "3682c09001c27fdbae481347e605be9b60a8369d38ffbdf91c74c0ebb37740e6"
[[files]]
file = "config/ars_nouveau/glyph_invisibility.toml"
hash = "cad5a54db1c8515614c12f0aae81de81db83a52d4803463f46a998adaaf1c533"
[[files]]
file = "config/ars_nouveau/glyph_launch.toml"
hash = "3982b1d34b2ca9665699e3c14bf9919c9e82da79e27cbe0b084b9b578f7ab125"
[[files]]
file = "config/ars_nouveau/glyph_leap.toml"
hash = "3f2a6124981a7a360867e319cfd3731c493d449083239a02560ae8ffaa3d284f"
[[files]]
file = "config/ars_nouveau/glyph_light.toml"
hash = "bd0bc89ccb0ba38c181596a4378a323e578805bd89e1ba980b2fb3781e2d1d64"
[[files]]
file = "config/ars_nouveau/glyph_lightning.toml"
hash = "0177b63a5fcb9e0b50523bb39c5babfd8a6fdf1c6d11b736d337254d5fa4e57a"
[[files]]
file = "config/ars_nouveau/glyph_linger.toml"
hash = "a7c281c535969659ba1578598eeaa0d7751c94081acf09f6953bff5b76cf4756"
[[files]]
file = "config/ars_nouveau/glyph_name.toml"
hash = "bb76094a2602e94a1b04703879c154b9c7e785e028c06bc48f3c5c377d664070"
[[files]]
file = "config/ars_nouveau/glyph_orbit.toml"
hash = "2c62e6e7d96d7bbe5cb9e67af0d0f2003c6021c0a18bfff0de65e2371cf8fae2"
[[files]]
file = "config/ars_nouveau/glyph_pantomime.toml"
hash = "59279368035dd965e62431da2d189d417ae78371668b49f8bd6b1c1e325047bd"
[[files]]
file = "config/ars_nouveau/glyph_phantom_block.toml"
hash = "595b43d01cdd6aa3b878f032f3e4c240559fba498f0c135ea6e2bdb2e05349cc"
[[files]]
file = "config/ars_nouveau/glyph_pickup.toml"
hash = "63274ce775cae15a45124a0e8cb84021aa4e3f228a48cc3e88157c90f3aaf84b"
[[files]]
file = "config/ars_nouveau/glyph_pierce.toml"
hash = "a514cd3b7a903a483ae2dacc7ed00cfeb9b2e0663997d4821acb6343a2a19958"
[[files]]
file = "config/ars_nouveau/glyph_place_block.toml"
hash = "63274ce775cae15a45124a0e8cb84021aa4e3f228a48cc3e88157c90f3aaf84b"
[[files]]
file = "config/ars_nouveau/glyph_projectile.toml"
hash = "75e67c910beb7a4ac4a20d929fa0075ff3430642b337bd0e59a472b6921e0424"
[[files]]
file = "config/ars_nouveau/glyph_pull.toml"
hash = "94f4318b159b004eb17817aa60a0d25fa38e6994e48704ec4e82582010480de9"
[[files]]
file = "config/ars_nouveau/glyph_randomize.toml"
hash = "1fbef113921700cb95768f8c25cd28c03ef3814c146592cac08567319169cc4c"
[[files]]
file = "config/ars_nouveau/glyph_redstone_signal.toml"
hash = "fcc34d8f285896bb7bdacbd05a7ead8f70ce95b0b11834ac75eb9d267c526b63"
[[files]]
file = "config/ars_nouveau/glyph_rotate.toml"
hash = "3682c09001c27fdbae481347e605be9b60a8369d38ffbdf91c74c0ebb37740e6"
[[files]]
file = "config/ars_nouveau/glyph_rune.toml"
hash = "d97f22e6a2dda9ad91f1dab25b2a700ed87a4d91a9420e576e9516c8476603f4"
[[files]]
file = "config/ars_nouveau/glyph_self.toml"
hash = "1e88e21e1251b0ec88e73df02fa317ce62b744eaaebc42b1d17349e2b716df73"
[[files]]
file = "config/ars_nouveau/glyph_sense_magic.toml"
hash = "944f91fb6ea9d469f2ab8ec81d908af0ff86a2d1d93098d3bcd3fd517046cab7"
[[files]]
file = "config/ars_nouveau/glyph_sensitive.toml"
hash = "3bfc7fe9767892cf8d9e8d9622eaa0885e19813bb286c8ce65c18be244a7755a"
[[files]]
file = "config/ars_nouveau/glyph_slowfall.toml"
hash = "cad5a54db1c8515614c12f0aae81de81db83a52d4803463f46a998adaaf1c533"
[[files]]
file = "config/ars_nouveau/glyph_smelt.toml"
hash = "b3319285867d0e5cf609e171e9d0d1c8a2b3a8706bb26c798ca8a10cbe273cea"
[[files]]
file = "config/ars_nouveau/glyph_snare.toml"
hash = "bcc530d2c08046256cd0ceadca6369826157b6dd9d571f7661e60e5e16ce3a79"
[[files]]
file = "config/ars_nouveau/glyph_split.toml"
hash = "084c274c075eca508a74685b21c066eea0b14d816652152cd3cc75e6b4f692e8"
[[files]]
file = "config/ars_nouveau/glyph_summon_decoy.toml"
hash = "1bdadb76d582d01fb61ece1415abcc684cd37502c759e153c39af3768536a014"
[[files]]
file = "config/ars_nouveau/glyph_summon_steed.toml"
hash = "14d04da5fa4e1230b4a0ec76bb55cc5d39d1d7d6ecfbec806add2b5eef2b1d7d"
[[files]]
file = "config/ars_nouveau/glyph_summon_undead.toml"
hash = "15786295b7aa1295bff15d52139baefbb0ba532ffa67a9b5a265e664ad7c4d98"
[[files]]
file = "config/ars_nouveau/glyph_summon_vex.toml"
hash = "15786295b7aa1295bff15d52139baefbb0ba532ffa67a9b5a265e664ad7c4d98"
[[files]]
file = "config/ars_nouveau/glyph_summon_wolves.toml"
hash = "afc91de685aa8e4a619443ff158a55392fc6f300c45aaa83c46cf097c26cd6fa"
[[files]]
file = "config/ars_nouveau/glyph_toss.toml"
hash = "63274ce775cae15a45124a0e8cb84021aa4e3f228a48cc3e88157c90f3aaf84b"
[[files]]
file = "config/ars_nouveau/glyph_touch.toml"
hash = "a1f827f53981ec72d2f356b6e92ef32d40caf0aeb26c8ee5130d20f51b6c3ca4"
[[files]]
file = "config/ars_nouveau/glyph_underfoot.toml"
hash = "6a92f02f8b006e0053d10f27dbc80da9bfa36d0203f52d364b736033c0eaad14"
[[files]]
file = "config/ars_nouveau/glyph_wall.toml"
hash = "da7512f154f9718e3c431a095b10bc87da01196897e4c70d85988794e680f2aa"
[[files]]
file = "config/ars_nouveau/glyph_wind_shear.toml"
hash = "7aa97b266a9a8af07db4803bd61aeba15e8f6e3e059b562faa3c40bc8da31dd4"
[[files]]
file = "config/ars_nouveau/glyph_wither.toml"
hash = "4169a17c968a70aed11b64fab82f61c19d9d07f0fcc569365ff212008da64c12"
[[files]]
file = "config/ars_nouveau/reset.toml"
hash = "dce9b819f6078583fe575c1f465b0c1bcda44e64edb02d367728512adf65fafe"
[[files]]
file = "config/ars_nouveau/rewind.toml"
hash = "927983e00266b0b3af2d78c1d5c10e791ed052e3cd8e525cc1bdb773845e921e"
[[files]]
file = "config/ars_nouveau/wololo.toml"
hash = "d97f22e6a2dda9ad91f1dab25b2a700ed87a4d91a9420e576e9516c8476603f4"
[[files]]
file = "config/ars_ocultas/base-common.toml"
hash = "923a9a560c0976af4a1b2ced6674e6a3ff50ad9f3de487639417d0e6fa17ee91"
[[files]]
file = "config/ars_scalaes/glyph_resize.toml"
hash = "228b147c89db46b7e3f3695f6430c4d2c47275939fc452aace5c0f19b5413e77"
[[files]]
file = "config/arsdelight-common.toml"
hash = "d559b92f3ed39e3e582dcee3ca54748ba94c6cca8c285385d5a3c2108d00de55"
[[files]]
file = "config/arsdelight-server.toml"
hash = "cdd272a01d1c7294685107e11373f09fb88c99c7acdf72f3a87b6f35029e5896"
[[files]]
file = "config/arseng-common.toml"
hash = "ad4af9232ccbc8f250ef6935484d18ba885974347d2457b03e74985f8008057a"
[[files]]
file = "config/arsomega/glyph_flatten.toml"
hash = "efc249bd857783e26fcb1dbc03a57069022f0529d71e6f48d980938e262c18c7"
[[files]]
file = "config/arsomega/glyph_missile.toml"
hash = "6d8214efe79cf0eb4d3f876c620c0ff5c5269965fdc881d8d4d56af42573ad68"
[[files]]
file = "config/arsomega/glyph_overhead.toml"
hash = "6a92f02f8b006e0053d10f27dbc80da9bfa36d0203f52d364b736033c0eaad14"
[[files]]
file = "config/arsomega/glyph_propagate_missile.toml"
hash = "07330f2a4cfbb0da4b9b7d8717cd1d3e5b71d4486ea5df54c2e584f2980f466c"
[[files]]
file = "config/arsomega/glyph_propagate_overhead.toml"
hash = "3361f6c40df5e05259c752265458ed7bee8d7d9c8d19a74d3ef61783c90e42b0"
[[files]]
file = "config/arsomega/glyph_propagate_projectile.toml"
hash = "3361f6c40df5e05259c752265458ed7bee8d7d9c8d19a74d3ef61783c90e42b0"
[[files]]
file = "config/arsomega/glyph_propagate_self.toml"
hash = "3361f6c40df5e05259c752265458ed7bee8d7d9c8d19a74d3ef61783c90e42b0"
[[files]]
file = "config/arsomega/glyph_propagate_underfoot.toml"
hash = "3361f6c40df5e05259c752265458ed7bee8d7d9c8d19a74d3ef61783c90e42b0"
[[files]]
file = "config/attributefix/ars_nouveau/ars_elemental.perk.summon_power.json"
hash = "fead7637d9e24d53ba947a7260fdbb1b8d7da59e0d46a480e2a5fb9bf2d4aeb1"
[[files]]
file = "config/attributefix/ars_nouveau/ars_nouveau.perk.drygmy.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/ars_nouveau/ars_nouveau.perk.feather.json"
hash = "17ef1233e3020b53a3835793bc771c00114af5b167f57cb03506098dbc49e535"
[[files]]
file = "config/attributefix/ars_nouveau/ars_nouveau.perk.mana_regen.json"
hash = "487f467b01c27f2a09baed20062a8ee186104a3f36132eb53697dab2cda1bddf"
[[files]]
file = "config/attributefix/ars_nouveau/ars_nouveau.perk.max_mana.json"
hash = "fead7637d9e24d53ba947a7260fdbb1b8d7da59e0d46a480e2a5fb9bf2d4aeb1"
[[files]]
file = "config/attributefix/ars_nouveau/ars_nouveau.perk.saturation.json"
hash = "fead7637d9e24d53ba947a7260fdbb1b8d7da59e0d46a480e2a5fb9bf2d4aeb1"
[[files]]
file = "config/attributefix/ars_nouveau/ars_nouveau.perk.spell_damage.json"
hash = "fead7637d9e24d53ba947a7260fdbb1b8d7da59e0d46a480e2a5fb9bf2d4aeb1"
[[files]]
file = "config/attributefix/ars_nouveau/ars_nouveau.perk.warding.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/ars_nouveau/ars_nouveau.perk.wixie.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/irons_spellbooks/blood_magic_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/blood_spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/cast_time_reduction.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/casting_movespeed.json"
hash = "6217856e9bb2355a468bbe03fe24bc97bae91f8deb54e9df42f8a4021cde99e6"
[[files]]
file = "config/attributefix/irons_spellbooks/cooldown_reduction.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/eldritch_magic_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/eldritch_spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/ender_magic_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/ender_spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/evocation_magic_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/evocation_spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/fire_magic_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/fire_spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/holy_magic_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/holy_spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/ice_magic_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/ice_spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/lightning_magic_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/lightning_spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/mana_regen.json"
hash = "6217856e9bb2355a468bbe03fe24bc97bae91f8deb54e9df42f8a4021cde99e6"
[[files]]
file = "config/attributefix/irons_spellbooks/max_mana.json"
hash = "d93c8a68daea4dc0cd38d7b9a29e28cc16536332528edff278fdceeeb5a636e2"
[[files]]
file = "config/attributefix/irons_spellbooks/nature_magic_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/nature_spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/spell_power.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/spell_resist.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/irons_spellbooks/summon_damage.json"
hash = "3e05221436880d09fbac95dfc9cde9d2225e8cfdb81ea0c4a41a453934acf938"
[[files]]
file = "config/attributefix/justdirethings/phase.json"
hash = "3c74ea2409bda517d0ff616d2b1e1267866824ef45036dc911ff71032051dd69"
[[files]]
file = "config/attributefix/minecraft/generic.armor.json"
hash = "b6aa33f20fbc7bb14c930dfcfd93591f37f2ccf12df0b6da9551f7a6fad1e439"
[[files]]
file = "config/attributefix/minecraft/generic.armor_toughness.json"
hash = "b6aa33f20fbc7bb14c930dfcfd93591f37f2ccf12df0b6da9551f7a6fad1e439"
[[files]]
file = "config/attributefix/minecraft/generic.attack_damage.json"
hash = "b6aa33f20fbc7bb14c930dfcfd93591f37f2ccf12df0b6da9551f7a6fad1e439"
[[files]]
file = "config/attributefix/minecraft/generic.attack_knockback.json"
hash = "b6aa33f20fbc7bb14c930dfcfd93591f37f2ccf12df0b6da9551f7a6fad1e439"
[[files]]
file = "config/attributefix/minecraft/generic.attack_speed.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/minecraft/generic.burning_time.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/minecraft/generic.explosion_knockback_resistance.json"
hash = "17ef1233e3020b53a3835793bc771c00114af5b167f57cb03506098dbc49e535"
[[files]]
file = "config/attributefix/minecraft/generic.fall_damage_multiplier.json"
hash = "6217856e9bb2355a468bbe03fe24bc97bae91f8deb54e9df42f8a4021cde99e6"
[[files]]
file = "config/attributefix/minecraft/generic.flying_speed.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/minecraft/generic.follow_range.json"
hash = "43aa2701d17e26c045533a5b0500fa8c0639d4e62adcccd389ba3426378a80c0"
[[files]]
file = "config/attributefix/minecraft/generic.gravity.json"
hash = "84207d0866413a367d92222bd193912a418615f5eb9da342057bafec30173a79"
[[files]]
file = "config/attributefix/minecraft/generic.jump_strength.json"
hash = "220b18479d9b6497fc95e3b2ffcca5014d93eca33153fab8f343151c9a553bde"
[[files]]
file = "config/attributefix/minecraft/generic.knockback_resistance.json"
hash = "17ef1233e3020b53a3835793bc771c00114af5b167f57cb03506098dbc49e535"
[[files]]
file = "config/attributefix/minecraft/generic.luck.json"
hash = "6bce4756f23cedf273e963254625fa594a32208f99de05db1abd1e77ec671372"
[[files]]
file = "config/attributefix/minecraft/generic.max_absorption.json"
hash = "43aa2701d17e26c045533a5b0500fa8c0639d4e62adcccd389ba3426378a80c0"
[[files]]
file = "config/attributefix/minecraft/generic.max_health.json"
hash = "9d0ae1c8fda340e80aac17df9999ec1e9c7396a2327f63a40ea8006991201305"
[[files]]
file = "config/attributefix/minecraft/generic.movement_efficiency.json"
hash = "17ef1233e3020b53a3835793bc771c00114af5b167f57cb03506098dbc49e535"
[[files]]
file = "config/attributefix/minecraft/generic.movement_speed.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/minecraft/generic.oxygen_bonus.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/minecraft/generic.safe_fall_distance.json"
hash = "6bce4756f23cedf273e963254625fa594a32208f99de05db1abd1e77ec671372"
[[files]]
file = "config/attributefix/minecraft/generic.scale.json"
hash = "0e28210686e7f216d46ba0fee2508c263c7c39e26fb6d8380404789d3185e73a"
[[files]]
file = "config/attributefix/minecraft/generic.step_height.json"
hash = "93b4adf5c49377098f3767e46dea7ab8228ad0edd2d0f59904ff9e12a429e8c0"
[[files]]
file = "config/attributefix/minecraft/generic.water_movement_efficiency.json"
hash = "17ef1233e3020b53a3835793bc771c00114af5b167f57cb03506098dbc49e535"
[[files]]
file = "config/attributefix/minecraft/player.block_break_speed.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/minecraft/player.block_interaction_range.json"
hash = "137e8a8052b2264bc1c881b91b97011e4c33726819f4c434753ad5480ee3d19f"
[[files]]
file = "config/attributefix/minecraft/player.entity_interaction_range.json"
hash = "137e8a8052b2264bc1c881b91b97011e4c33726819f4c434753ad5480ee3d19f"
[[files]]
file = "config/attributefix/minecraft/player.mining_efficiency.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/minecraft/player.sneaking_speed.json"
hash = "17ef1233e3020b53a3835793bc771c00114af5b167f57cb03506098dbc49e535"
[[files]]
file = "config/attributefix/minecraft/player.submerged_mining_speed.json"
hash = "f874427dd6754eff702ef41fd35649493094ddd0c79e01623a2cc9ccfe8ce8d7"
[[files]]
file = "config/attributefix/minecraft/player.sweeping_damage_ratio.json"
hash = "17ef1233e3020b53a3835793bc771c00114af5b167f57cb03506098dbc49e535"
[[files]]
file = "config/attributefix/minecraft/zombie.spawn_reinforcements.json"
hash = "17ef1233e3020b53a3835793bc771c00114af5b167f57cb03506098dbc49e535"
[[files]]
file = "config/attributefix/neoforge/nametag_distance.json"
hash = "137e8a8052b2264bc1c881b91b97011e4c33726819f4c434753ad5480ee3d19f"
[[files]]
file = "config/attributefix/neoforge/swim_speed.json"
hash = "6b9b3d0281e3d07f12580d39983e2ac2eac90f30c739d743b84d55024c3651ed"
[[files]]
file = "config/attributefix/not_enough_glyphs/not_enough_glyphs.perk.mana_discount.json"
hash = "3c74ea2409bda517d0ff616d2b1e1267866824ef45036dc911ff71032051dd69"
[[files]]
file = "config/balm-common.toml"
hash = "9bc57add9cde46b46ac4d8c1f9006280721750e5df6cca2439b9b750e83c9e46"
[[files]]
file = "config/bcc-common.toml"
hash = "cc5dca21b078085a241689baa96a8f382b3372c84a39f992e13fdc5f0ac32857"
[[files]]
file = "config/betterendisland-neoforge-1_21.toml"
hash = "14868519e7f16794a042d604e1c8c33116e34ac4203cf9b4041bc3ea6860ed06"
[[files]]
file = "config/betterfortresses-neoforge-1_21.toml"
hash = "0bef433c8253f63704694528c33dc854f2b28da084d420a61c43fd62d6e5301b"
[[files]]
file = "config/betterfortresses/README.txt"
hash = "5643f5af88b445a96f2c6ea167b97cc640059eda5c849ed3c7b8d5023ab51a86"
[[files]]
file = "config/betterfortresses/neoforge-1_21/README.txt"
hash = "1175dbf9cd2e7c91b1c852a51e3c0203c68484917e877465b283e2370ad62864"
[[files]]
file = "config/betterfortresses/neoforge-1_21/itemframes.json"
hash = "b2f0b8d31e1a74f5cd1667a3c7f2498f89621df059a70c4a93e82fece5853a0a"
[[files]]
file = "config/betterjungletemples-neoforge-1_21.toml"
hash = "77ef014bd34c9f66bf40b3e6ae7a67bf7ec2a618b76eafff9f0921577d3ab1b9"
[[files]]
file = "config/bettermineshafts-neoforge-1_21.toml"
hash = "37ee9275b9680c2d07d395cf41769c456c9b93adbf85ddf6514ee601977fa099"
[[files]]
file = "config/betteroceanmonuments-neoforge-1_21.toml"
hash = "6c09d2a75810e76c719b355c3480d1dc14b135f944f4a85d2118a395efc916c5"
[[files]]
file = "config/betterstrongholds-neoforge-1_21.toml"
hash = "6d07999480c7cf86183dd9cb6c0b14ffd449bf0bae2ad10a971283d904b4b3bd"
[[files]]
file = "config/betterstrongholds/README.txt"