-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathResonantRise4Dev.xml
More file actions
1252 lines (1106 loc) · 73.5 KB
/
ResonantRise4Dev.xml
File metadata and controls
1252 lines (1106 loc) · 73.5 KB
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
<version>
<pack>
<version>a.0.2.0</version>
<minecraft>1.9</minecraft>
<memory>2560</memory>
<permgen>256</permgen>
<caseallfiles>upper</caseallfiles>
<mainclass>net.minecraft.launchwrapper.Launch</mainclass>
<extraarguments>--tweakClass=net.minecraftforge.fml.common.launcher.FMLTweaker --versionType Forge</extraarguments>
</pack>
<libraries>
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/launchwrapper-1.12.jar" download="server" file="launchwrapper-1.12.jar" md5="934b2d91c7c5be4a49577c9e6b40e8da" server="net/minecraft/launchwrapper/1.12/launchwrapper-1.12.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/asm-all-5.0.3.jar" download="server" file="asm-all-5.0.3.jar" md5="c5cc4613bbdfba3ccf5f0ab85390d0b8" server="org/ow2/asm/asm-all/5.0.3/asm-all-5.0.3.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/jline-2.13.jar" download="server" file="jline-2.13.jar" md5="f251ba666cccb260ff7215b2cbeee8d4" server="jline/jline/2.13/jline-2.13.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/akka-actor_2.11-2.3.3.jar" download="server" file="akka-actor_2.11-2.3.3.jar" md5="2a3d8946f684f928c48a2dd298c5cd29" server="com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/config-1.2.1.jar" download="server" file="config-1.2.1.jar" md5="a88c2f8be90a5c41b87155cdff21e0db" server="com/typesafe/config/1.2.1/config-1.2.1.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/scala-actors-migration_2.11-1.1.0.jar" download="server" file="scala-actors-migration_2.11-1.1.0.jar" md5="f5e79398daa1806f8b17311a3c782723" server="org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/scala-compiler-2.11.1.jar" download="server" file="scala-compiler-2.11.1.jar" md5="06030143bf86ca896fb6ccfd679b5760" server="org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/scala-continuations-library_2.11-1.0.2.jar" download="server" file="scala-continuations-library_2.11-1.0.2.jar" md5="c7d01e5a88182df7f22b7418abb51085" server="org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/scala-continuations-plugin_2.11.1-1.0.2.jar" download="server" file="scala-continuations-plugin_2.11.1-1.0.2.jar" md5="daecef8fab296b764a8fb41fc07f2428" server="org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/scala-library-2.11.1.jar" download="server" file="scala-library-2.11.1.jar" md5="1d88f665219e6006c5dd82d71c525c0f" server="org/scala-lang/scala-library/2.11.1/scala-library-2.11.1.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/scala-parser-combinators_2.11-1.0.1.jar" download="server" file="scala-parser-combinators_2.11-1.0.1.jar" md5="4e694499c965af4a02599c99d4f0b196" server="org/scala-lang/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/scala-reflect-2.11.1.jar" download="server" file="scala-reflect-2.11.1.jar" md5="7878fac044e4e4b576bb35a77ccc34fc" server="org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/scala-swing_2.11-1.0.1.jar" download="server" file="scala-swing_2.11-1.0.1.jar" md5="1009d69e4948045383f2a7a334348af5" server="org/scala-lang/scala-swing_2.11/1.0.1/scala-swing_2.11-1.0.1.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/scala-xml_2.11-1.0.2.jar" download="server" file="scala-xml_2.11-1.0.2.jar" md5="c2d7e66495afe14545c31b21e99879ef" server="org/scala-lang/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/lzma-0.0.1.jar" download="server" file="lzma-0.0.1.jar" md5="a3e3c3186e41c4a1a3027ba2bb23cdc6" server="lzma/lzma/0.0.1/lzma-0.0.1.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/jopt-simple-4.6.jar" download="server" file="jopt-simple-4.6.jar" md5="13560a58a79b46b82057686543e8d727" server="net/sf/jopt-simple/jopt-simple/4.6/jopt-simple-4.6.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/vecmath-1.5.2.jar" download="server" file="vecmath-1.5.2.jar" md5="e5d2b7f46c4800a32f62ce75676a5710" server="java3d/vecmath/1.5.2/vecmath-1.5.2.jar" />
<library url="packs/ResonantRise/files/forgelibs/12.16.1.1907/trove4j-3.0.3.jar" download="server" file="trove4j-3.0.3.jar" md5="8fc4d4e0129244f9fd39650c5f30feb2" server="net/sf/trove4j/trove4j/3.0.3/trove4j-3.0.3.jar" />
</libraries>
<!-- Colors for the use of seperation -->
<colours>
<!-- Red -->
<colour name="rred" code="#ED2121"
/>
<!-- Dark Cyan -->
<colour name="lite" code="#00787A"
/>
<!-- Orange -->
<colour name="risk" code="#FF9900"
/>
<!-- Pastel Lavender -->
<colour name="appeng" code="#9043DE"
/>
<!-- Light Brown -->
<colour name="Biblio" code="#915E2B"
/>
<!-- Yellow -->
<colour name="BC" code="#FFD900"
/>
<!-- Iron -->
<colour name="Chisel" code="#879978"
/>
<!-- Ender Green -->
<colour name="EIO" code="#0FC70A"
/>
<!-- Light Fuisha -->
<colour name="Ex" code="#FF99FF"
/>
<!-- Green -->
<colour name="For" code="#00AD00"
/>
<!-- Blue -->
<colour name="GC" code="#B8BD5C"
/>
<!-- Tan(-ish) -->
<colour name="Hyd" code="#757542"
/>
<!-- Odd Fuisha -->
<colour name="Im" code="#A074A8"
/>
<!-- Cyan -->
<colour name="Mek" code="#00AB94"
/>
<!-- Greeinish-Brown -->
<colour name="MPS" code="#4CB233"
/>
<!-- Dark Blue -->
<colour name="Open" code="#3D5CA3"
/>
<!-- Red-Orange -->
<colour name="QB" code="#FF2400"
/>
<!-- Purple -->
<colour name="TC4" code="#B352AC"
/>
<!-- Rust -->
<colour name="TiCo" code="#806633"
/>
<!-- IC2 -->
<colour name="IC2" code="#C4A589"
/>
</colours>
<!-- End Colours -->
<mods>
<!-- Forge -->
<mod
name="=== Forge ===" version="1.0"
url="packs/ResonantRise/files/config-switches/zone00.zip" file="zone00.zip" md5="433f4c3cb1da539bcf65ba13de2f0ce4" download="server"
type="extract" extractto="root" optional="yes" recommended="no" server="no"
website="http://resonant-rise.com"
authors="RR Dev Team"
description="Client Only Mods."
/>
<mod
name="=== Forge ==="
version="12.16.1.1907" url="packs/ResonantRise/files/4.x/forge-1.9-12.16.1.1907-universal.jar" file="forge-1.9-12.16.1.1907-universal.jar" md5="41c7a63a43f39aff4df068110f7b122a" download="server"
type="forge"
authors="Eloraam,FlowerChild,Hawkye,MALfunction84,Scokeev9,SpaceToad,LexManos,cpw"
website="http://www.minecraftforge.net/forum/" donation="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z5MLLA62HSUM2"
description="The backbone of modded Minecraft."
/>
<!-- Dependencies -->
<mod
name="=== Dependencies ===" version="1.0"
url="packs/ResonantRise/files/config-switches/zone00.zip" file="zone00.zip" md5="433f4c3cb1da539bcf65ba13de2f0ce4" download="server"
type="extract" extractto="root" optional="yes" recommended="no" server="no"
website="http://resonant-rise.com"
authors="RR Dev Team"
description="Client Only Mods."
/>
<mod
name="Baubles" version="1.9-1.2.0.2"
url="packs/ResonantRise/files/4.x/Baubles-1.9-1.2.0.2.jar" file="Baubles-1.9-1.2.0.2.jar" md5="9ca47a1c2b99d83fd5e993c72b50576d" download="server"
type="dependency"
website="http://www.minecraftforum.net/topic/2535073-baubles" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/baubles?gameCategorySlug=mc-mods&projectID=227083&cn=Add+special+instructions+to+the+addon+author()&business=leon%40imaginet.co.za&bn=PP-DonationsBF:btn_donateCC_LG.gif:"
authors="Azanor"
description="Adding a touch of bling to Minecraft"
/>
<!-- Core Mods -->
<mod
name="=== Core Mod ===" version="1.0"
url="packs/ResonantRise/files/config-switches/zone00.zip" file="zone00.zip" md5="433f4c3cb1da539bcf65ba13de2f0ce4" download="server"
type="extract" extractto="root" optional="yes" recommended="no" server="no"
website="http://resonant-rise.com"
authors="RR Dev Team"
description="Client Only Mods."
/>
<mod
name="Actually Additions"
version="1.9-r33" url="packs/ResonantRise/files/4.x/ActuallyAdditions-1.9-r33.jar" file="ActuallyAdditions-1.9-r33.jar" md5="8a15c4d11b9079735dc96fb12dbea8c4" download="server"
type="mods"
website="http://github.com/Ellpeck/ActuallyAdditions"
authors="Ellpeck"
description="Do you want Automation? Wireless Transport? Better Machines? A cup o' Coffee? Chests? Better Hoppers? Leaf Blowers? Faster Growth? Plants? Well, Actually Additions has all that and a lot more!"
/>
<mod
name="AKUtils"
version="1.9-1.3.1" url="packs/ResonantRise/files/4.x/AKUtils-1.9-1.3.1.jar" file="AKUtils-1.9-1.3.1.jar" md5="50e21402bed035e235cb0bb32b426a83" download="server"
type="mods"
website="http://www.curseforge.com/projects/243323/"
authors="AKTheKnight"
description="Adds a bunch of random ideas."
/>
<mod
name="Auto Ore Dictionary Converter"
version="1.9-1.0.1" url="packs/ResonantRise/files/4.x/autooredictconv-1.9-1.0.1.jar" file="autooredictconv-1.9-1.0.1.jar" md5="56692f1ce2d87174dd07f435810247cd" download="server"
type="mods"
website="http://www.curseforge.com/projects/232650/"
authors="MattDahEpic"
description="Converts specified ore dictionary items automatically or on keybinding."
/>
<mod
name="Automated Redstone"
version="1.9-4.0.0" url="packs/ResonantRise/files/4.x/AutomatedRedstone-1.9-4.0.0.jar" file="AutomatedRedstone-1.9-4.0.0.jar" md5="16f099bd98667badeca9e0bfd074693a" download="server"
type="mods"
website="http://www.curseforge.com/projects/229507/"
authors="CD4017BE"
description="Better redstone cables and programmable circuits"
/>
<mod
name="Backlytra"
version="1.9-0.0.1" url="packs/ResonantRise/files/4.x/backlytra-1.9-0.0.1.jar" file="backlytra-1.9-0.0.1.jar" md5="8a8f7d497b878fed23cd1119026e9993" download="server"
type="mods"
website="https://unascribed.com"
authors="Aesen 'unascribed' Vismea"
description="Elytra sounds for 1.9."
/>
<mod
name="Base Metals"
version="2.2.2" url="packs/ResonantRise/files/4.x/BaseMetals_1.9-2.2.2.jar" file="BaseMetals_1.9-2.2.2.jar" md5="1d8da987a546681b326b90cb7303afd2" download="server"
type="mods"
website="https://github.com/cyanobacterium/BaseMetals"
authors="Cyanobacterium (aka DrCyano),JRIwanek"
description="This mod adds historically common metals to Minecraft"
/>
<mod
name="BD Lib"
version="1.11.0.14" url="packs/ResonantRise/files/4.x/bdlib-1.11.0.14-mc1.9.jar" file="bdlib-1.11.0.14-mc1.9.jar" md5="8d1457128271f02e107805f67a9fc4dc" download="server"
type="mods"
website="https://bdew.net/mods/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/bdlib?gameCategorySlug=mc-mods&projectID=70496&cn=Add+special+instructions+to+the+addon+author()&business=blackdew%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG.gif:NonH"
authors="bdew"
description="A library of generic code for my other mods"
/>
<mod
name="BetterBedrockGen"
version="4.0.0" url="packs/ResonantRise/files/4.x/BetterBedrockGenerator-1.9.0-3.0.0.jar" file="BetterBedrockGenerator-1.9.0-3.0.0.jar" md5="1862688082b85c325b230f5891b83da1" download="server"
type="mods"
website="http://www.curseforge.com/projects/223275/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/betterbedrockgen?gameCategorySlug=mc-mods&projectID=223275&cn=Add+special+instructions+to+the+addon+author()&business=tnicholls%40hotmail.co.uk&bn=PP-DonationsBF:btn_don"
authors="gigabit101"
description="Bedrock Is Flat"
/>
<mod
name="Better Builder's Wands"
version="0.6.0" url="packs/ResonantRise/files/4.x/BetterBuildersWands-0.6.0-1.9r124c748dee.jar" file="BetterBuildersWands-0.6.0-1.9r124c748dee.jar" md5="60438ca2e9b2ebea202f201402a18b0f" download="server"
type="mods"
website="http://www.curseforge.com/projects/238403/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/better-builders-wands?gameCategorySlug=mc-mods&projectID=238403&cn=Add+special+instructions+to+the+addon+author()&business=dcseee-ebay%40yahoo.com.au&bn=PP-DonationsBF:b"
authors="Portablejim"
description="Wands that allow placing of multiple blocks at a time"
/>
<mod
name="Biomes O' Plenty"
version="4.0.2" url="packs/ResonantRise/files/4.x/BiomesOPlenty-1.9-4.0.2.2018-universal.jar" file="BiomesOPlenty-1.9-4.0.2.2018-universal.jar" md5="6b8ee37223e812a83bdccaef82153ef2" download="server"
type="mods"
website="http://files.minecraftforge.net/maven/com/github/glitchfiend/biomesoplenty/BiomesOPlenty/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/biomes-o-plenty?gameCategorySlug=mc-mods&projectID=220318&cn=Add+special+instructions+to+the+addon+author()&business=forstride%40gmail.com&bn=PP-DonationsBF:btn_donateCC"
authors="Adubbz,Amnet,Cheeserolls,Forstride,ted80"
description="Adds over 75 new biomes, blocks, and more!"
/>
<mod
name="Blood Magic: Alchemical Wizardry"
version="1.9-2.0.0-38" url="packs/ResonantRise/files/4.x/BloodMagic-1.9-2.0.0-38.jar" file="BloodMagic-1.9-2.0.0-38.jar" md5="bd1729c22b38989a7fb949c818aa228e" download="server"
type="mods"
website="http://www.minecraftforum.net/topic/1899223-bloodmagic"
authors="WayofTime"
description="Rituals, spells, and more!"
/>
<mod
name="Bookshelf"
version="1.9-1.2.0.242" url="packs/ResonantRise/files/4.x/Bookshelf-1.9-1.2.0.242.jar" file="Bookshelf-1.9-1.2.0.242.jar" md5="feac30584dadd8e05c994b8122c8ef9f" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/bookshelf" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/bookshelf?gameCategorySlug=mc-mods&projectID=228525&cn=Add+special+instructions+to+the+addon+author()&business=darklime%40live.ca&bn=PP-DonationsBF:btn_donateCC_LG.gif:N"
authors="darkhax,lclc98"
description="Bookshelf is a core/library mod, which adds new features and tools into the game for other content creators to work with. The primary focus of this project is to make use of the combined strength of the modded community to create wonderful tools that everyone can use."
/>
<mod
name="Bookshelf"
version="1.9-3.0.4" url="packs/ResonantRise/files/4.x/Bookshelf-API-1.9-3.0.4.jar" file="Bookshelf-API-1.9-3.0.4.jar" md5="5c4e11c915a1620033b830345a803f1a" download="server"
type="mods"
website="http://www.curseforge.com/projects/232784/"
authors="Dyonovan,pauljoda"
description="Library of useful functions used by TeamBR"
/>
<mod
name="Botania"
version="r1.8-305" url="packs/ResonantRise/files/4.x/Botania-unofficial.r1.8-305.jar" file="Botania-unofficial.r1.8-305.jar" md5="9efc507bd8e3c79780dd7e6a8a1c2a70" download="server"
type="mods"
website="http://www.botaniamod.net"
authors="Vazkii"
description="Botania is a mod that adds nature magic to Minecraft."
/>
<mod
name="Builder's Guides"
version="1.9-0.3.1-beta" url="packs/ResonantRise/files/4.x/buildersguides-1.9-0.3.1-beta.jar" file="buildersguides-1.9-0.3.1-beta.jar" md5="fa89640044665ed1667f9bc8137414d9" download="server"
type="mods"
website="http://www.github.com/ipsis/BuildersGuides/"
authors="Ipsis"
description="Align All The Things!"
/>
<mod
name="CD4017BE Library"
version="4.0.0" url="packs/ResonantRise/files/4.x/CD4017BE_lib-1.9-4.0.0.jar" file="CD4017BE_lib-1.9-4.0.0.jar" md5="87c199cc79e39b928632804caf10f5a2" download="server"
type="mods"
website="http://www.curseforge.com/projects/229208/"
authors="CD4017BE"
description="Mod Library"
/>
<mod
name="Chameleon"
version="1.9-2.1.3" url="packs/ResonantRise/files/4.x/Chameleon-1.9-2.1.3.jar" file="Chameleon-1.9-2.1.3.jar" md5="d934567204725492b0edaa06e4d322ec" download="server"
type="mods"
website="http://www.jaquadro.com/"
authors="jaquadro"
description="Shared code and render support for mods. Used by jaquadro's mods."
/>
<mod
name="♫"
version="0.3.0-pre1" url="packs/ResonantRise/files/4.x/charset-0.3.0-pre1-audio.jar" file="charset-0.3.0-pre1-audio.jar" md5="3de1c4bb586f0a021f7f66340af7f17a" download="server"
type="mods"
website="http://charset.asie.pl"
authors="asiekierka"
description="Audio playback"
/>
<mod
name="!"
version="0.3.0-pre1" url="packs/ResonantRise/files/4.x/charset-0.3.0-pre1-drama.jar" file="charset-0.3.0-pre1-drama.jar" md5="2cbe56848bb78b1b148fa9e8ed18e741" download="server"
type="mods"
website="http://charset.asie.pl"
authors="asiekierka"
description="Straight Outta Reddit"
/>
<mod
name="&"
version="0.3.0-pre1" url="packs/ResonantRise/files/4.x/charset-0.3.0-pre1-gates.jar" file="charset-0.3.0-pre1-gates.jar" md5="56244d45c9739f73688dd3720d155c63" download="server"
type="mods"
website="http://charset.asie.pl"
authors="asiekierka"
description="Various logic gates"
/>
<mod
name="‽"
version="0.3.0-pre1" url="packs/ResonantRise/files/4.x/charset-0.3.0-pre1-lib.jar" file="charset-0.3.0-pre1-lib.jar" md5="897e771f75d552f11e3330c7907d0dfa" download="server"
type="mods"
website="http://charset.asie.pl"
authors="asiekierka"
description="Shared library mod"
/>
<mod
name="|"
version="0.3.0-pre1" url="packs/ResonantRise/files/4.x/charset-0.3.0-pre1-pipes.jar" file="charset-0.3.0-pre1-pipes.jar" md5="027dc8597725cf02f9a20570a7928e9b" download="server"
type="mods"
website="http://charset.asie.pl"
authors="asiekierka"
description="Item transport system"
/>
<mod
name="#"
version="0.3.0-pre1" url="packs/ResonantRise/files/4.x/charset-0.3.0-pre1-storage.jar" file="charset-0.3.0-pre1-storage.jar" md5="6270c400cad9d90c981decfd148531a9" download="server"
type="mods"
website="http://charset.asie.pl"
authors="asiekierka"
description="Objects which help store things"
/>
<mod
name="*"
version="0.3.0-pre1" url="packs/ResonantRise/files/4.x/charset-0.3.0-pre1-tweaks.jar" file="charset-0.3.0-pre1-tweaks.jar" md5="08fc8d61c4cdb206813ad5a8a343aeb7" download="server"
type="mods"
website="http://charset.asie.pl"
authors="asiekierka"
description="Miscellanous gameplay tweaks"
/>
<mod
name="+"
version="0.3.0-pre1" url="packs/ResonantRise/files/4.x/charset-0.3.0-pre1-wires.jar" file="charset-0.3.0-pre1-wires.jar" md5="1c430b74e476ea4ac213bcd5554c9017" download="server"
type="mods"
website="http://charset.asie.pl"
authors="asiekierka"
description="RedPower-style wires"
/>
<mod
name="Chisel"
version="0.0.4.14" url="packs/ResonantRise/files/4.x/Chisel-MC1.9-0.0.4.14.jar" file="Chisel-MC1.9-0.0.4.14.jar" md5="531b1ac94feb154c3249f2bc09168c8e" download="server"
type="mods"
website="http://www.curseforge.com/projects/235279/"
authors="tterrag1098,Drullkus,Minecreatr"
description="Chisel: A New Hope. For 1.7 and 1.8!"
/>
<mod
name="Chisels & Bits"
version="9.18" url="packs/ResonantRise/files/4.x/chiselsandbits-9.18.jar" file="chiselsandbits-9.18.jar" md5="9f413018ae5608bc82f5ebd221104566" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/chisels-bits" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/chisels-bits?gameCategorySlug=mc-mods&projectID=231095&cn=Add+special+instructions+to+the+addon+author()&business=algorithmx2%40gmail.com&bn=PP-DonationsBF:btn_donateCC_"
authors="AlgorithmX2"
description="a mod about Sculpting, Decorating and Aesthetics"
/>
<mod
name="Chunk Animator"
version="1.1.1" url="packs/ResonantRise/files/4.x/ChunkAnimator-MC1.9-1.1.1.jar" file="ChunkAnimator-MC1.9-1.1.1.jar" md5="88f65e8ef200e2ba2c5361d7b287ea88" download="server"
type="mods" server="no"
website="http://www.curseforge.com/projects/236484/"
authors="lumien"
description="A small client side mod that animates the appeareance of chunks so that they don't just instantly appear"
/>
<mod
name="CompactStorage"
version="2.1.git-rc" url="packs/ResonantRise/files/4.x/compactstorage-2.1-1.9-rc.jar" file="compactstorage-2.1-1.9-rc.jar" md5="2a90750d685b6faa0ea75758e35c49aa" download="server"
type="mods"
website="https://github.com/tattyseal/CompactStorage" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/mc-mods/223703-compactstorage&cn=Add+special+instructions+to+the+addon+author()&business=toby.strong1%40hotmail.co.uk&bn=PP-DonationsBF:btn_donateCC_LG.gif:NonHosted&cancel_retur"
authors="tattyseal"
description="Adding new storage solutions to your world!"
/>
<mod
name="Simple Covers"
version="0.3.0.11" url="packs/ResonantRise/files/4.x/covers-0.3.0.11-mc1.9.jar" file="covers-0.3.0.11-mc1.9.jar" md5="448539efb643e02f6087d2c178a3234d" download="server"
type="mods"
website="https://bdew.net/mods/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/simple-covers?gameCategorySlug=mc-mods&projectID=242498&cn=Add+special+instructions+to+the+addon+author()&business=blackdew%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG"
authors="bdew"
description="Basic microblocks (covers, etc.) for MCMultipart"
/>
<mod
name="MineTweaker 3"
version="1.9-3.0.8" url="packs/ResonantRise/files/4.x/CraftTweaker-1.9-3.0.8.jar" file="CraftTweaker-1.9-3.0.8.jar" md5="da01ca696a047a663d90652cd0e0ce4b" download="server"
type="mods"
website="http://minetweaker3.powerofbytes.com" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/crafttweaker-customized-minetweaker3?gameCategorySlug=mc-mods&projectID=239197&cn=Add+special+instructions+to+the+addon+author()&business=jluboff8%40gmail.com&bn=PP-Dona"
authors="Stan Hebben"
description="Customize your minecraft experience!"
/>
<mod
name="CreativeCore"
version="1.4"
url="packs/ResonantRise/files/4.x/CreativeCore v1.4 mc1.9.jar" file="CreativeCore v1.4 mc1.9.jar" md5="b1b474fa3e4aa637acbc2c8a49b9a993" download="server"
type="mods"
website="http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/2408667-creativecore-v1-3-24-required-by-randomadditions"
authors="CreativeMD,N247S"
description="A core mod required by the most mods of CreativeMD. Contains a packets system, gui-api and other utils."
/>
<mod
name="Custom Main Menu"
version="2.0" url="packs/ResonantRise/files/4.x/CustomMainMenu-MC1.9-2.0.jar" file="CustomMainMenu-MC1.9-2.0.jar" md5="863a519dd6486d8ea45db4bac05b42fe" download="server"
type="mods" server="no"
website="http://www.curseforge.com/projects/226406/"
authors="lumien"
description="Allows you to edit the mainmenu using json"
/>
<mod
name="Cyclops Core"
version="1.9-0.6.0" url="packs/ResonantRise/files/4.x/CyclopsCore-1.9-0.6.0.jar" file="CyclopsCore-1.9-0.6.0.jar" md5="6f33fdbe8c43e32c9a7c4117e6e95cf3" download="server"
type="mods"
website="http://minecraft.curseforge.com/mc-mods/232758-cyclops-core"
authors="rubensworks (aka kroeserr),immortaleeb (aka _EeB_)"
description="Coremod for EvilCraft, Integrated Dynamics and others."
/>
<mod
name="EnderTanks"
version="1.9.0-1.3.3" url="packs/ResonantRise/files/4.x/endertanks-1.9.0-1.3.3.jar" file="endertanks-1.9.0-1.3.3.jar" md5="f8454456150cddd01c525083b6b6944f" download="server"
type="mods"
website="http://tomkinsbros.blogspot.ca/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/endertanks?gameCategorySlug=mc-mods&projectID=59613&cn=Add+special+instructions+to+the+addon+author()&business=t.tomkins%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG.gi"
authors="ShetiPhian"
description="Store liquids inside a subspace pocket located in the End."
/>
<mod
name="Dark Utilities"
version="1.9-1.1.0.33" url="packs/ResonantRise/files/4.x/DarkUtilities-1.9-1.1.0.33.jar" file="DarkUtilities-1.9-1.1.0.33.jar" md5="722ad7b1b5ca2233b989ab5ef974a0fc" download="server"
type="mods"
website="http://www.darkhax.net" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/dark-utilities?gameCategorySlug=mc-mods&projectID=242195&cn=Add+special+instructions+to+the+addon+author()&business=darklime%40live.ca&bn=PP-DonationsBF:btn_donateCC_LG."
authors="Darkhax"
description="A mod that adds a bunch of new utilities to the game."
/>
<mod
name="DeepResonance"
version="1.9.0-1.1.4beta32" url="packs/ResonantRise/files/4.x/deepresonance-1.9.0-1.1.4beta32.jar" file="deepresonance-1.9.0-1.1.4beta32.jar" md5="b303cc205374c2a144502be0c7103562" download="server"
type="mods"
website="http://www.curseforge.com/projects/233398/"
authors="McJty,Elec332"
description="Power generation based on resonanting crystals"
/>
<mod
name="Default Optons"
version="4.0.5" url="packs/ResonantRise/files/4.x/defaultoptions-mc1.9-4.0.5.jar" file="defaultoptions-mc1.9-4.0.5.jar" md5="6c14c6c7d2278395198ba4889f6fa367" download="server"
type="mods" server="no"
website="http://blay09.net"
authors="BlayTheNinth"
description="A way for modpacks to ship a default (key) configuration without having to include an options.txt file. Also allows local options from any mod .cfg file."
/>
<!--
<mod
name="Dimensional Anchors"
version="60.0.0" url="packs/ResonantRise/files/4.x/dimensional-anchors-60.0.0.jar" file="dimensional-anchors-60.0.0.jar" md5="79b5f94d24e7ae53a2b0c052c629567a" download="server"
type="mods"
website="http://www.curseforge.com/projects/244368/"
authors="immibis"
description="Straightforward chunk-loader mod."
/>
-->
<!--
<mod
name="EFlux" version="1.0Beta.132"
url="packs/ResonantRise/files/4.x/E-Flux-1.9-1.0Beta.132.jar" file="E-Flux-1.9-1.0Beta.132.jar" md5="038f6a6c8d86c28a72a9751d1c3d86e1" download="server"
type="mods"
website="http://www.curseforge.com/projects/241032/"
authors="Elec332"
description="E-Flux is a challenging tech-mod, with an enitrely new and challenging power systen, multiblocks, and much more!"
/>
-->
<mod
name="ElecCore | Rendering Library"
version="1.4.270" url="packs/ResonantRise/files/4.x/ElecCore-1.9-1.4.270.jar" file="ElecCore-1.9-1.4.270.jar" md5="65e3722b265c8fd641ae176f23853352" download="server"
type="mods"
website="http://www.curseforge.com/projects/227391/"
authors="Elec332"
description="Shared code for Forge mods"
/>
<mod
name="Electric Advantage"
version="2.0.3" url="packs/ResonantRise/files/4.x/ElectricAdvantage_1.9-2.0.3.jar" file="ElectricAdvantage_1.9-2.0.3.jar" md5="241f375c67a98decead53257814c75d1" download="server"
type="mods"
website="http://www.curseforge.com/projects/240985/"
authors="DrCyano"
description="Add electricity to your game with this Power Advantage add-on"
/>
<mod
name="Enchanting Plus"
version="1.9-4.1.0.97" url="packs/ResonantRise/files/4.x/EnchantingPlus-1.9-4.1.0.97.jar" file="EnchantingPlus-1.9-4.1.0.97.jar" md5="e99e8dbdb0d8e6ee9e43ac2d0cb52876" download="server"
type="mods"
website="http://www.curseforge.com/projects/59413/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/enchanting-plus?gameCategorySlug=mc-mods&projectID=59413&cn=Add+special+instructions+to+the+addon+author()&business=mike.stengel%40gmail.com&bn=PP-DonationsBF:btn_donate"
authors="Darkhax,lclc98,xkyouchoux,odininon,GnR Slash"
description="Provides a less random enchanting system."
/>
<mod
name="Enchiridion"
version="1.9-3.1.0" url="packs/ResonantRise/files/4.x/Enchiridion-1.9-3.1.0.jar" file="Enchiridion-1.9-3.1.0.jar" md5="189d8c4b3b2a75dec79adfea9573c30f" download="server"
type="mods"
website="http://www.curseforge.com/projects/76612/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/enchiridion?gameCategorySlug=mc-mods&projectID=76612&cn=Add+special+instructions+to+the+addon+author()&business=joshjackwildman%40gmail.com&bn=PP-DonationsBF:btn_donateC"
authors="joshie"
description="Books mod for minecraft"
/>
<!--
<mod
name="Enderthing"
version="0.6.6" url="packs/ResonantRise/files/4.x/enderthing-1.9-0.6.6.jar" file="enderthing-1.9-0.6.6.jar" md5="37663af695c8922c06de3c3a84f89795" download="server"
type="mods"
website="http://www.curseforge.com/projects/244421/"
authors="gigaherz"
description="Shared inventories with chests and keys"
/>
-->
<mod
name="Ender Utilities"
version="0.5.3" url="packs/ResonantRise/files/4.x/enderutilities-1.9-0.5.3.jar" file="enderutilities-1.9-0.5.3.jar" md5="32805497c90195f2f88e67c97ff9a2b9" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/ender-utilities" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/ender-utilities?gameCategorySlug=mc-mods&projectID=224320&cn=Add+special+instructions+to+the+addon+author()&business=matti.j.ruohonen%40gmail.com&bn=PP-DonationsBF:btn_d"
authors="masa"
description="Some random, hopefully fun, and possibly even useful utilities (Modjam 4)"
/>
<mod
name="EXCore"
version="1.5.3" url="packs/ResonantRise/files/4.x/Excore-1.5.3-1.9.jar" file="Excore-1.5.3-1.9.jar" md5="a63838431e0ad73bc6907be07a0daa46" download="server"
type="mods"
website="http://www.curseforge.com/projects/233180/"
authors="Elix_x"
description="Elix'x Core"
/>
<mod
name="Extra Bit Manipulation"
version="1.9-2.1.1" url="packs/ResonantRise/files/4.x/ExtraBitManipulation-1.9-2.1.1.jar" file="ExtraBitManipulation-1.9-2.1.1.jar" md5="2e0eed26af23265a34372f1521d5b4a8" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/extra-bit-manipulation"
authors="Phylogeny"
description="This mod is an addon to the Chisels & Bits mod. It adds a wrench that rotates/mirrors/translates/inverts chiseled blocks, and sculpting wires/spades that remove/add cuboidal/ellipsoidal/cylindrical/conic/pyramidal areas of bits from chiseled/chiselable blocks."
/>
<mod
name="Fast Leaf Decay"
version="1.9-1.6" url="packs/ResonantRise/files/4.x/FastLeafDecay-1.9-1.6.jar" file="FastLeafDecay-1.9-1.6.jar" md5="9e724998c6b41b2b1d9e5d44ca415364" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/fastleafdecay"
authors="Olafski"
description="Increases leaf decay rates."
/>
<mod
name="Fluxed Crystals 3"
version="1.9-1.0.0-b10" url="packs/ResonantRise/files/4.x/Fluxed-Crystals 3-1.9-1.0.0-b10.jar" file="Fluxed-Crystals 3-1.9-1.0.0-b10.jar" md5="e25983cf1bcbba4eee40e0aee86fd9ae" download="server"
type="mods"
website="https://github.com/jaredlll08/Fluxed-Crystals-3"
description="Resource Growing via RF"
/>
<mod
name="Fluxed-Core"
version="3.0.0" url="packs/ResonantRise/files/4.x/Fluxed-Core-3.0.0.jar" file="Fluxed-Core-3.0.0.jar" md5="a06ad7c52cbfecc83f3d19dfb19cb493" download="server"
type="mods"
website="http://www.curseforge.com/projects/237039/"
authors="Jaredlll08"
description="Mod that holds methods that are used in all GetFluxed mods."
/>
<mod
name="Foundry"
version="2.0.0.0-alpha3" url="packs/ResonantRise/files/4.x/Foundry-1.9-2.0.0.0-alpha3.jar" file="Foundry-1.9-2.0.0.0-alpha3.jar" md5="5862bc6f8f88a71e0e25fd3d488da080" download="server"
type="mods"
website="https://github.com/EXTER7/Foundry"
authors="EXTER"
description="Liquid Metals"
/>
<mod
name="Furnus"
version="1.9-1.75" url="packs/ResonantRise/files/4.x/Furnus-1.9-1.75.jar" file="Furnus-1.9-1.75.jar" md5="d8dfa020a2be59bca4f1afc8d034a081" download="server"
type="mods"
website="http://www.curseforge.com/projects/239336/"
authors="MrRiegel"
description="A configurable furnace"
/>
<mod
name="Advanced Generators"
version="0.9.20.8" url="packs/ResonantRise/files/4.x/GENERATORS-0.9.20.8-MC1.9.jar" file="GENERATORS-0.9.20.8-MC1.9.jar" md5="d37e9c7725d1b381176af2b7a05e95c6" download="server"
type="mods"
website="http://bdew.net/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/advanced-generators?gameCategorySlug=mc-mods&projectID=223622&cn=Add+special+instructions+to+the+addon+author()&business=blackdew%40gmail.com&bn=PP-DonationsBF:btn_donat"
authors="bdew"
description="Freeform Multiblock generators that produce MJ, RF and EU"
/>
<mod
name="Graves Mod"
version="1.9-b12-universal" url="packs/ResonantRise/files/4.x/graves-1.9-b12-universal.jar" file="graves-1.9-b12-universal.jar" md5="3bdd009aa4adc966145b5c59cd00a7bd" download="server"
type="mods"
website="http://www.curseforge.com/projects/240877/"
authors="FireBall1725,FusionLord"
description="Provides grave stones with your items in it upon death"
/>
<mod
name="Harvest"
version="1.9.4-1.0.1-5" url="packs/ResonantRise/files/4.x/Harvest-1.9.4-1.0.1-5.jar" file="Harvest-1.9.4-1.0.1-5.jar" md5="5eecfc48aade31cbace81dcc55e90f2d" download="server"
type="mods"
website="http://tehnut.info/"
authors="TehNut"
description="Right click crop harvesting"
/>
<mod
name="Integrated Dynamics"
version="1.9-0.3.9" url="packs/ResonantRise/files/4.x/IntegratedDynamics-1.9-0.3.9.jar" file="IntegratedDynamics-1.9-0.3.9.jar" md5="a63e388c0bbc85d0fb7000af5b609e69" download="server"
type="mods"
website="http://minecraft.curseforge.com/mc-mods/236307-integrated-dynamics"
authors="rubensworks (aka kroeserr)"
description="Take full and automated control of your appliances."
/>
<mod
name="Inventory Centerer"
version="1.9-0.1.1" url="packs/ResonantRise/files/4.x/InventoryCenterer-1.9-0.1.1.jar" file="InventoryCenterer-1.9-0.1.1.jar" md5="75c51e8570a2149240251e60a9261ba0" download="server"
type="mods"
website="http://www.curse.com/mc-mods/minecraft/240729-inventory-centerer" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/inventory-centerer?gameCategorySlug=mc-mods&projectID=240729&cn=Add+special+instructions+to+the+addon+author()&business=anthony.santoro95%40gmail.com&bn=PP-DonationsBF:b"
authors="AnthonySan95"
description="Never liked having the inventory shifted on the right by some effects? This is the mod for you."
/>
<!--
<mod
name="Inventory Tweaks" version="1.61-dev-49-c5b6395"
url="packs/ResonantRise/files/4.x/InventoryTweaks-1.61-dev-49.jar" file="InventoryTweaks-1.61-dev-49.jar" md5="7f40d8c48e1c68f5c20e847c8962ed0c" download="server"
type="mods"
website="https://github.com/Kobata/inventory-tweaks" authors="Jimeo Wan,Kobata"
description="Tweaks to inventory handling for ease of use, including sorting and automatic replacement of broken tools or exhausted stacks of items."
/>
-->
<mod
name="Iron Chest"
version="1.9-6.0.138.779" url="packs/ResonantRise/files/4.x/ironchest-1.9-6.0.138.779.jar" file="ironchest-1.9-6.0.138.779.jar" md5="67de8aca49bb5d19dc1023411f80dca4" download="server"
type="mods"
website="http://www.minecraftforum.net/topic/981855-"
authors="cpw"
description="New chests with larger sizes, with in-place upgrade items. The feature chest is the crystal chest, which is transparent - some inventory contents are visible without opening the chest"
/>
<mod
name="Item Scroller"
version="0.5.0" url="packs/ResonantRise/files/4.x/itemscroller-1.9.4-0.5.0.jar" file="itemscroller-1.9.4-0.5.0.jar" md5="cad8d8a0baec4d9c0cb1c1834e962fb8" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/item-scroller"
donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/item-scroller?gameCategorySlug=mc-mods&projectID=242064&cn=Add+special+instructions+to+the+addon+author()&business=matti.j.ruohonen%40gmail.com&bn=PP-DonationsBF:btn_don"
authors="masa"
description="Move items in inventory GUIs by scrolling the mouse wheel over slots with items in them"
/>
<mod
name="Just Enough Items"
version="3.3.3.200" url="packs/ResonantRise/files/4.x/jei_1.9-3.3.3.200.jar" file="jei_1.9-3.3.3.200.jar" md5="c4276cd0b4cdacc97de5f9905c70b056" download="server"
type="mods"
website="https://github.com/mezz/JustEnoughItems"
authors="mezz" description="Simple recipe and item helper."
/>
<mod
name="Just Enough Resources"
version="0.4.5.27" url="packs/ResonantRise/files/4.x/JustEnoughResources-1.9-0.4.5.27.jar" file="JustEnoughResources-1.9-0.4.5.27.jar" md5="d31e5ddc6a22fdc9da1ddaa64ac8edfd" download="server"
type="mods"
website="http://www.curseforge.com/projects/240630/"
authors="way2muchnoise"
description="Adds Resources and Mob Drops to JEI"
/>
<mod
name="JourneyMap"
version="1.9-5.2.0b1" url="packs/ResonantRise/files/4.x/journeymap-1.9-5.2.0b1-unlimited.jar" file="journeymap-1.9-5.2.0b1-unlimited.jar" md5="fa3f6aa5ea1a27d9bbe2388eb1924253" download="server"
type="mods" optional="yes"
website="http://journeymap.info" donation="https://www.paypal.com/cgi-bin/webscr?hosted_button_id=D5KK9FRAQG6DE&item_name=JourneyMap+(from+curseforge.com)&cmd=_s-xclick"
authors="techbrew,mysticdrew"
description="JourneyMap Unlimited Edition: Real-time map in-game or in a web browser as you explore. JourneyMap API: v1.9-1.2-SNAPSHOT. Built: 2016-04-19-16:42:07."
/>
<mod
name="LunatriusCore"
version="1.1.2.34" url="packs/ResonantRise/files/4.x/LunatriusCore-1.9-1.1.2.34-universal.jar" file="LunatriusCore-1.9-1.1.2.34-universal.jar" md5="9da92068043497cea886381b7d3d1f07" download="server"
type="mods"
website="http://mc.lunatri.us/"
authors="Lunatrius"
description="A collection of utilities for Lunatrius' mods."
/>
<mod
name="Mantle"
version="0.9.4" url="packs/ResonantRise/files/4.x/Mantle-1.9-0.9.4.jar" file="Mantle-1.9-0.9.4.jar" md5="9527a96064cf97926d8a78ef72d957e6" download="server"
type="mods"
website="https://github.com/SlimeKnights/Mantle"
authors="boni,progWML6,Alexbegt"
description="Shared code for Slime Knights mods and others."
/>
<mod
name="MapWriter"
version="2.4.18" url="packs/ResonantRise/files/4.x/MapWriter-1.9-2.4.18.jar" file="MapWriter-1.9-2.4.18.jar" md5="6c73f8ad98b812066f7e65d0f0a8126d" download="server"
type="mods" optional="yes"
website="http://www.minecraftforum.net/topic/2523556/"
authors="mapwriter"
description="An open source mini map mod"
/>
<mod
name="McJtyLib"
version="1.9.0-1.8.6-SNAPSHOT" url="packs/ResonantRise/files/4.x/mcjtylib-1.9.0-1.8.6.jar" file="mcjtylib-1.9.0-1.8.6.jar" md5="579a62f52cdce65737de37b71e5ea01d" download="server"
type="mods"
website="http://www.curseforge.com/projects/233105/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/mcjtylib?gameCategorySlug=mc-mods&projectID=233105&cn=Add+special+instructions+to+the+addon+author()&business=jorrit.tyberghein%40pandora.be&bn=PP-DonationsBF:btn_donate"
authors="McJty"
description="McJtyLib library for RFTools, Deep Resonance, ..."
/>
<mod
name="MCMultiPart"
version="1.1.1" url="packs/ResonantRise/files/4.x/MCMultiPart-1.1.1-universal.jar" file="MCMultiPart-1.1.1-universal.jar" md5="c271071aa7c26d83841ba8de9fac1a02" download="server"
type="mods"
website="http://www.curseforge.com/projects/239431/"
authors="amadornes"
description="A universal multipart API for MC 1.8.9"
/>
<mod
name="MattDahEpic Core"
version="1.9-1.0.1" url="packs/ResonantRise/files/4.x/mdecore-1.9-1.0.1.jar" file="mdecore-1.9-1.0.1.jar" md5="80cae671b4be3343e56b5cae934a3f5b" download="server"
type="mods"
website="http://www.curseforge.com/projects/229595/"
authors="MattDahEpic"
description="Base Mod for all MattDahEpic mods."
/>
<mod
name="MineMenu"
version="1.9-1.4.2.B4" url="packs/ResonantRise/files/4.x/MineMenu-1.9-1.4.2.B4-universal.jar" file="MineMenu-1.9-1.4.2.B4-universal.jar" md5="49761757e0f4adb215f85b0c4e99f15a" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/minemenu"
authors="dmillerw,Girafi"
description="MineMenu supports key bindings, commands, and creative functions to make your life easier."
/>
<mod
name="MmmMmmMmmMmm"
version="1.10" url="packs/ResonantRise/files/4.x/MmmMmmMmmMmm-1.10.jar" file="MmmMmmMmmMmm-1.10.jar" md5="ccaf3a0015edb883ae77a7b8e9a82e28" download="server"
type="mods"
website="http://www.curseforge.com/projects/225738/"
authors="boni"
description="Provides a test dummy that can be placed in the world. Punch it, kick it, slice it, push it, pop it, twist it,...."
/>
<!--
<mod
name="Modern Metals"
version="0.9.2.3" url="packs/ResonantRise/files/4.x/ModernMetals-0.9.2.3.jar" file="ModernMetals-0.9.2.3.jar" md5="e22a3c06197e7638c737dcbb8e2430f6" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/modern-metals" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/modern-metals?gameCategorySlug=mc-mods&projectID=244357&cn=Add+special+instructions+to+the+addon+author()&business=webmaster%40cyberkat.eu&bn=PP-DonationsBF:btn_donateCC"
authors="cyb3rkat"
description="Modern Metals Addon"
/>
-->
<mod
name="MoreOverlays"
version="1.3.1" url="packs/ResonantRise/files/4.x/moreoverlays-1.3.1-mc1.9.jar" file="moreoverlays-1.3.1-mc1.9.jar" md5="012b9d41867717f18f2f825b9d044872" download="server"
type="mods"
website="http://www.curseforge.com/projects/243478/"
authors="feldim2425"
description="Adds some overlays from NEI (Mob spawns, Chunk Bounds, Item Search)"
/>
<mod
name="MorePlayerModels"
version="1.9.0" url="packs/ResonantRise/files/4.x/MorePlayerModels_1.9.0beta(01apr16).jar" file="MorePlayerModels_1.9.0beta(01apr16).jar" md5="89dd0739f0ac63a1489b1d5ba7a52692" download="server"
type="mods"
website="http://www.kodevelopment.nl/minecraft/moreplayermodels/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/more-player-models?gameCategorySlug=mc-mods&projectID=221939&cn=Add+special+instructions+to+the+addon+author()&business=cfw_os%40hotmail.com&bn=PP-DonationsBF:btn_donate"
authors="Noppes"
description="More player models lets you edit your player model to your hearts content"
/>
<mod
name="Morpheus"
version="1.9-3.0.2" url="packs/ResonantRise/files/4.x/Morpheus-1.9-3.0.2.jar" file="Morpheus-1.9-3.0.2.jar" md5="d3457d5f277dd89459bef7dceb09adc4" download="server"
type="mods"
website="http://www.curse.com/mc-mods/Minecraft/morpheus" donation="https://www.paypal.com/cgi-bin/webscr?hosted_button_id=5AH8F9SRGY8HA&item_name=Morpheus+(from+curseforge.com)&cmd=_s-xclick"
authors="Quetzi"
description="Morpheus is a server-only mod that adds sleep voting to a forge based server. When a player sleeps, all other players in the same dimension are notified so it is easier to coordinate."
/>
<mod
name="Multi-Storage"
version="1.9.0-1.1.0" url="packs/ResonantRise/files/4.x/multistorage-1.9.0-1.1.0.jar" file="multistorage-1.9.0-1.1.0.jar" md5="af71e99a0c4d5d16acaf8d7d4fa99e40" download="server"
type="mods"
website="http://tomkinsbros.blogspot.ca/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/multistorage?gameCategorySlug=mc-mods&projectID=244864&cn=Add+special+instructions+to+the+addon+author()&business=t.tomkins%40gmail.com&bn=PP-DonationsBF:btn_donateCC_LG"
authors="ShetiPhian"
description="Vaults, Hidden Chests, and Stacking Chests"
/>
<mod
name="Neat"
version="1.2-5" url="packs/ResonantRise/files/4.x/Neat 1.2-5.jar" file="Neat 1.2-5.jar" md5="e765b62abadb8664f0e0f0cb5151d191" download="server"
type="mods"
website="http://www.vazkii.us"
authors="Vazkii"
description="Minimalistic Functional Unit Plates for the modern Minecrafter"
/>
<mod
name="NoMoreRecipeConflict"
version="0.4" url="packs/ResonantRise/files/4.x/NoMoreRecipeConflict-0.4(1.9).jar" file="NoMoreRecipeConflict-0.4(1.9).jar" md5="4f10b7c2bb3846fd2ff8262aa096493c" download="server"
type="mods"
website="http://www.minecraftforum.net/topic/1098727-"
authors="stimmedcow,GotoLink"
description="Switch between conflicting recipes"
/>
<mod
name="Pam's HarvestCraft"
version="1.9b" url="packs/ResonantRise/files/4.x/Pams HarvestCraft 1.9b.jar" file="Pams HarvestCraft 1.9b.jar" md5="865b030a2df234a3cb8fc9a89227da76" download="server"
type="mods"
website="http://minecraft.curseforge.com/members/MatrexsVigil/projects" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/pams-harvestcraft?gameCategorySlug=mc-mods&projectID=221857&cn=Add+special+instructions+to+the+addon+author()&business=worldofro%40gmail.com&bn=PP-DonationsBF:btn_donate"
authors="Pamela Collins"
description="Expanding minecraft's food system."
/>
<mod
name="Power Advantage"
version="2.1.1" url="packs/ResonantRise/files/4.x/PowerAdvantage_1.9.0-2.1.1.jar" file="PowerAdvantage_1.9.0-2.1.1.jar" md5="8beaddc31fe156e382adb35a3ef414f1" download="server"
type="mods"
website="http://www.curseforge.com/projects/240982/"
authors="DrCyano (aka Cyanobacterium)"
description="API for power DrCyano's power systems mods."
/>
<mod
name="Pressure Pipes"
version="1.3.1.13" url="packs/ResonantRise/files/4.x/pressure-1.3.1.13-mc1.9.jar" file="pressure-1.3.1.13-mc1.9.jar" md5="50ddd1d310ed79157269b7c4e7d73e27" download="server"
type="mods"
website="https://bdew.net/mods/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/pressure-pipes?gameCategorySlug=mc-mods&projectID=221214&cn=Add+special+instructions+to+the+addon+author()&business=blackdew%40gmail.com&bn=PP-DonationsBF:btn_donateCC_L"
authors="bdew"
description="Unlimited Fluid Transport"
/>
<mod
name="Progressive Automation"
version="1.6.44" url="packs/ResonantRise/files/4.x/ProgressiveAutomation-1.9-1.6.44.jar" file="ProgressiveAutomation-1.9-1.6.44.jar" md5="ec7baf70450bc660df3b0cbc7f14c7d8" download="server"
type="mods"
website="https://github.com/Vanhal/ProgressiveAutomation/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/progressive-automation-early-miner?gameCategorySlug=mc-mods&projectID=220606&cn=Add+special+instructions+to+the+addon+author()&business=obriensh%40gmail.com&bn=PP-Donati"
authors="Vanhal"
description="A mod that adds automation that can be built in the early game and upgraded throughout late game."
/>
<mod
name="Psi"
version="beta-31" url="packs/ResonantRise/files/4.x/Psi-beta-31.jar" file="Psi-beta-31.jar" md5="711441fb6a0bcab47c9916a1663e6033" download="server"
type="mods"
website="http://www.vazkii.us"
authors="Vazkii"
description="Psionic SpellCasting Instruments"
/>
<mod
name="QuantumFlux"
version="1.9-2.0.6" url="packs/ResonantRise/files/4.x/quantumflux-1.9-2.0.6.jar" file="quantumflux-1.9-2.0.6.jar" md5="ba9f60a2ebef1ffd62716674576c8cc8" download="server"
type="mods"
website="http://www.curseforge.com/projects/228609/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/quantumflux?gameCategorySlug=mc-mods&projectID=228609&cn=Add+special+instructions+to+the+addon+author()&business=jotato%40zoho.com&bn=PP-DonationsBF:btn_donateCC_LG.gif:"
authors="Jotato"
description="Wireless Redstone Flux"
/>
<mod
name="Quark"
version="beta-18" url="packs/ResonantRise/files/4.x/Quark-beta-18.jar" file="Quark-beta-18.jar" md5="ad39e4fd12bad74428d700301c644cf0" download="server"
type="mods"
website="http://www.vazkii.us"
authors="Vazkii,wiiv"
description="Small things."
/>
<mod
name="Random Things"
version="3.7" url="packs/ResonantRise/files/4.x/RandomThings-MC1.9-3.7.jar" file="RandomThings-MC1.9-3.7.jar" md5="877b384c9fc1a6e1a56f433367f04e08" download="server"
type="mods"
website="http://minecraft.curseforge.com/mc-mods/59816-random-things"
authors="Lumien"
description="Random Things packed into one Mod."
/>
<mod
name="RebornCore"
version="2.3.3.86" url="packs/ResonantRise/files/4.x/RebornCore-1.9-2.3.3.86-universal.jar" file="RebornCore-1.9-2.3.3.86-universal.jar" md5="5f6161350bfd7d0a6dfa0401ddd13f62" download="server"
type="mods"
website="https://github.com/TechReborn/RebornCore"
authors="modmuss50,Gigabit101"
description="RebornCore, A core set of classes."
/>
<mod
name="Refined Storage"
version="0.6.10" url="packs/ResonantRise/files/4.x/refinedstorage-0.6.10.jar" file="refinedstorage-0.6.10.jar" md5="7cedc5b0871c27b9fababce903b2cacf" download="server"
type="mods"
website="http://minecraft.curseforge.com/projects/refined-storage"
authors="raoulvdberge,gustoniaeagle" description="A Minecraft mod all about storage."
/>
<mod
name="Reliquary"
version="1.9-1.3.1.353" url="packs/ResonantRise/files/4.x/Reliquary-1.9-1.3.1.353.jar" file="Reliquary-1.9-1.3.1.353.jar" md5="e6ada67774c4f76c7dc17cca4d91bba9" download="server"
type="mods"
website="http://www.curseforge.com/projects/241319/"
authors="x3n0ph0b3,TheMike,P3pp3rF1y"
description="Two words: magical swag. Oh, and a gun."
/>
<mod
name="Resource Loader"
version="1.5" url="packs/ResonantRise/files/4.x/ResourceLoader-MC1.9-1.5.jar" file="ResourceLoader-MC1.9-1.5.jar" md5="e08347edabcd5b4d67c820ea8212ee2a" download="server"
type="mods" server="no"
website="http://www.curseforge.com/projects/226447/"
authors="lumien"
description="Allows mod pack creators / users to add their own custom textures to minecrafts resources without making a resource pack."
/>
<mod
name="RFTools"
version="1.9.0-4.48" url="packs/ResonantRise/files/4.x/rftools-1.9.0-4.48.jar" file="rftools-1.9.0-4.48.jar" md5="1e132f86a552389867b271b38651f63f" download="server"
type="mods"
website="http://www.curseforge.com/projects/224641/" donation="https://www.paypal.com/cgi-bin/webscr?return=http://minecraft.curseforge.com/projects/rftools?gameCategorySlug=mc-mods&projectID=224641&cn=Add+special+instructions+to+the+addon+author()&business=jorrit.tyberghein%40pandora.be&bn=PP-DonationsBF:btn_donateC"
authors="McJty"
description="RedFlux tools"
/>
<mod
name="RFTools Dimensions"
version="1.9.0-4.23beta40" url="packs/ResonantRise/files/4.x/rftoolsdim-1.9.0-4.23beta40.jar" file="rftoolsdim-1.9.0-4.23beta40.jar" md5="1618e08bd28903ff0f1d6b855576893c" download="server"
type="mods"
website="http://www.curseforge.com/projects/240950/"