forked from katsuo/Technic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modlibrary.yml
998 lines (997 loc) · 28.1 KB
/
modlibrary.yml
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
mods:
basemods:
name: "Jar modification Mods"
description: "Rest of Mods not yet seperated out"
installtype: "zip"
modtype: "content"
link: ""
versions:
hackslashmine-v0.6.0:
hackslashmine-v0.5.3:
hackslashmine-v0.5.2:
hackslashmine-v0.4:
spotlight-forge-v1.0.0:
vanilla-v1.3.2:
vanilla-v1.3.1:
vanilla-v1.2.5:
vanilla-v1.2.3:
yogbox-v1.2.5:
yogbox-v1.2.1:
yogbox-v1.2.0:
yogbox-v1.1.6:
yogbox-v1.1.5:
yogbox-v1.1.2:
yogbox-v1.1.1:
yogbox-v1.1.0:
vanilla-v1.1:
technic-no-optifine:
technic-v7.2.6:
technic-v7.2.1:
technic-v7.2.0:
technic-v7.1.0:
technic-v7.0.1:
technic-v7.0.0:
technic-v6.1.1:
technic-v6.1.0:
technic-v6.0.7:
technic-v6.0.6:
technic-v6.0.5:
technic-v6.0.3:
technic-v6.0.2:
technic-v6.0.1:
technic-v6.0.0:
tekkit-v3.1.2:
tekkit-v3.1.1:
tekkit-v3.1.0:
tekkit-v3.0.5:
tekkit-v3.0.3:
tekkit-v3.0.2:
tekkit-v3.0.1:
tekkit-v3.0.0-smooth:
tekkit-v3.0.0:
tekkit-v2.0:
v1.3.0:
v1.2.1y:
v1.2.0-S:
v1.2.0:
v5.0.5:
tekkit-v2.0.0:
voxelmodpack-v9.0.0:
voxelmodpack-v8.4.0:
voxelmodpack-v8.3.0:
voxelmodpack-v8.2.0:
voxelmodpack-v8.1.0:
adventureitems:
name: "Adventure Items"
installtype: "zip"
versions:
v1.1:
v1.2.3:
v1.2.5:
airships:
name: "Airships"
installtype: "zip"
versions:
v1.2.3:
v1.2.5:
armorstand:
name: "Armor stand mod"
installtype: "zip"
versions:
v1.1:
v1.2.3:
v1.2.5:
balkonsweaponmod:
installtype: "zip"
versions:
v8.6:
v8.5:
v8.4:
v8.3:
v8.2:
v8.1:
battletowers:
installtype: "zip"
versions:
v1.1:
v1.2.3:
v1.2.5:
betterdungeons:
installtype: "zip"
versions:
v0.932.1:
v0.931:
v0.925:
v0.923:
v0.922:
v0.921:
v0.92:
v0.91:
buildcraft:
name: "BuildCraft"
description: "Extending Minecraft with pipes, auto-crafting, quarries, engines and much more!"
installtype: "zip"
modtype: "content"
link: "http://www.mod-buildcraft.com/"
versions:
v3.1.5:
v3.1.4:
v3.1.4pre:
v3.1.3:
dependencies:
baseforge: 1.3.1
v3.1.2:
dependencies:
baseforge: 1.2.4
v2.2.14:
v2.2.13:
v2.2.12:
dependencies:
baseforge: 1.2.4
v2.2.11:
dependencies:
baseforge: 1.2.4
v2.2.7:
md5: "03fd974285584b306af080a5e5e6edc7"
dependencies:
baseforge: 1.2.3
buildcraft-additionalpipes:
installtype: "zip"
versions:
v3.1.0:
v3.0.10:
v3.0.1:
v32.3:
v34:
v2.1.3:
buildcraft-additionalpower:
installtype: "zip"
versions:
v0.1.1:
buildcraft-logisticspipes:
installtype: "zip"
versions:
v0.2.5b:
v0.2.4a:
v0.2.2a:
v0.2.1a:
v0.2.0b:
v0.1.0a:
v0.1.2a:
v0.1.3a:
v0.1.8a:
buildcraft-objects:
name: "BuildCraft Objects"
installtype: "zip"
versions:
v100:
v85:
v84:
v56:
dependencies:
buildcraft: v2.2.7
v63:
caruins:
name: "CARuins"
installtype: "zip"
versions:
v2.3.0:
ccsensors:
name: "ccSensors"
installtype: "zip"
versions:
v017pr2:
v017pr1:
chargingbench:
name: "IC2 Charging Bench"
description: "A bench with multiple charging slots so you can charge all of your items at once. Apply redstone power to the bench to reverse the way it functions."
installtype: "zip"
modtype: "content"
link: "http://forum.industrial-craft.net/index.php?page=Thread&threadID=929"
versions:
v1.95b:
v1.81-1:
v1.71-1:
v1.70-1:
v1.64-1:
v1.43:
dependencies:
ic2: v1.43
codechickencore:
name: "CodeChickenCore"
description: "Required by Chicken Bones' Mods"
installtype: "zip"
versions:
v0.5.5:
v0.5.3:
v0.5.2:
v0.4.2:
v0.4.4:
v0.5.0:
computercraft:
name: "ComputerCraft"
description: "Add's Lua based computers to the game"
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/892282-11-computercraft-121/"
versions:
v1.4:
v1.33:
v1.31:
v1.3:
v1.21:
v1.2:
craftguide:
name: "CraftGuide"
description: "Quick access to a list of every crafting recipe in the game!"
installtype: "zip"
versions:
v1.4.4:
v1.4.1:
dependencies:
minecraft: 1.1
v1.4.2:
v1.4.3:
craftingtableii:
name: "Crafting Table II"
description: "Inspired by Terraria crafting, Crafting Table II displays everything you can currently craft with the items in your inventory. How much of each item the recipe uses is displayed on the left as well as a description of that item, click on the item and the Crafting Table II will automatically craft it for you without you ever having to remember recipes. As you add and remove items from your inventory the list of available items updates. Works with any recipe, including mods."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/856538-100-crafting-table-ii-v15-171211/"
optional: true
versions:
v1.5:
v1.6.2:
v1.6.2-1.2.3:
craftingtableiii:
name: "Crafting Table III"
description: "Inspired by Terraria crafting, Crafting Table III displays everything you can currently craft with the items in your inventory. How much of each item the recipe uses is displayed on the left as well as a description of that item, click on the item and the Crafting Table III will automatically craft it for you without you ever having to remember recipes. As you add and remove items from your inventory the list of available items updates. Works with any recipe, including mods."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/1189975-b18mc125-craftingtableiii-bug-fixs-more-mod-support/"
optional: true
versions:
v1.8:
crystalwing:
name: "Crystal Wing"
installtype: "zip"
versions:
v1.2.5.a:
custommobspawner:
name: "Custom Mob Spawner"
installtype: "zip"
versions:
v1.5.1:
v1.4.3:
v1.4.1:
v1.4:
dimanchor:
name: "Dimensional Anchors"
installtype: "zip"
versions:
v3.2:
doorfix:
name: "Door Fix"
installtype: "zip"
versions:
v2.1:
ee:
name: "Equivalent Exchange"
description: ""
installtype: "zip"
modtype: "content"
versions:
v5.7.3:
v6.18:
v6.22:
ee2:
name: "Equivalent Exchange 2"
description: ""
installtype: "zip"
modtype: "content"
versions:
v1.4.6.7:
v1.4.6.6:
v1.4.6.5:
v1.4.6.1:
v1.4.5.1:
v1.4.4.0:
v1.4.3.1:
v1.4.0.3:
v1.38.1:
v1.38:
v1.1:
elementalcreepers:
name: "Elemental Creepers"
installtype: "zip"
versions:
v2.3r2_mp:
v2.0:
v1.9:
enderchest:
name: "EnderChest"
desctiption: ""
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/909223-100181-chickenbones-mods/"
versions:
v1.0.2:
v1.0.1v2:
v1.0.1:
v1.0:
enderstorage:
name: "EnderStorage"
installtype: "zip"
versions:
v1.1.3:
v1.1.1:
v1.1.0:
floatingruins:
name: "Floating Ruins"
installtype: "zip"
versions:
v1.0.0:
floodgate:
name: "Floodgates"
installtype: "zip"
versions:
v1.1:
forestry:
name: "Forestry"
desctiption: ""
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/700588-100smp-forestry-for-minecraft-tree-farms-automated/"
versions:
v1.4.0.4:
v1.4.0.3:
v1.4.0.2:
v1.4.0.1:
v1.3.4.4:
v1.3.4.3:
v1.3.4.0:
v1.3.2.1:
v1.2.9.15:
v1.2.6.6:
v1.2.6.4:
v1.2.6.3:
v1.3.0.3:
ic2:
name: "Industrial Craft 2"
description: "This is it. IC2, the future of IC. While playing it, you will feel right at home again, rediscovering most of the stuff known from IC. However, once you get your machines running, you will quickly notice how smooth and well-designed everything works now. Wiring is easier, batterys aren't as twosided (on/off) anymore, new cables, rubber stuff, new machines, EVERYTHING was added. Create obstacle courses of Metal Poles and Rubber-Sheets, explore the Nether with an Electrical Jetpack or blow up whole landscapes at once by using the Dynamite-O-Mote. Or discover the much more complex mechanisms of Nuclear Engineering, blow up your hut or burn your hands. Or grab the rusty ol Composite Vest, and start hunting Creepers with the new, allmighty NanoSaber."
installtype: "zip"
modtype: "content"
link: "http://forum.industrial-craft.net/index.php?page=Board&boardID=58"
versions:
v1.97:
v1.95b:
v1.95:
v1.81:
v1.71:
v1.70:
v1.43:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.4
v1.42:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.4
v1.64:
dependencies:
baseModloader: 1.1.0
baseforge: 1.3.2
ic2-advancedmachines:
name: "IC2 Advanced Machines"
description: ""
installtype: "zip"
modtype: "content"
link: "http://forum.industrial-craft.net/index.php?page=Thread&threadID=1174"
versions:
v4.1:
v4.0:
v3.6e:
v3.1:
v3.2_beta2:
ic2-compactsolars:
name: "IC2 Compact Solars"
description: ""
installtype: "zip"
versions:
v2.3.2.10:
v2.2.0.5:
v1.2:
ic2-nuclearcontrol:
name: "IC2 Nuuclear Control"
installtype: "zip"
versions:
v1.1.10b:
v1.1.9b:
v1.1.8:
v1.1.6:
v1.1.3:
ic2-transformers:
name: "IC2 Transformers"
installtype: "zip"
versions:
v1.3:
v1.2:
immibiscore:
name: "Immibis Core"
installtype: "zip"
versions:
v49.2.0:
v49.1.1:
v49.1.0:
v49.0.7:
v49.0.4:
v48.2.1:
ingameinfo:
name: "In Game Info"
installtype: "zip"
versions:
v1.2.5.d:
inventorytweaks:
name: "Inventory Tweaks"
description: "Tweaks your inventory handling to be more intuitive. Break your iron sword in the heat of battle and don't have time to replace it? No worries, if you have another one handy in your inventory it will automatically be moved into the last slot it was used! Works with all stacked items!"
installtype: "zip"
modtype: "tweak"
link: "http://www.minecraftforum.net/topic/323444-100spsmp-inventory-tweaks-135-dec-24/"
optional: true
versions:
v1.41b:
v1.40b:
v1.38:
v1.36:
v1.35:
dependencies:
baseModloader: 1.0.0
v1.34b:
dependencies:
baseModloader: 1.0.0
v1.37c:
ironchests:
name: "Iron Chests"
installtype: "zip"
versions:
v3.8.0.40:
v3.4.2.28:
v3.3.1.21:
v2.5:
lectern:
name: "Lectern"
installtype: "zip"
versions:
ssp-1.2.5:
macros:
name: "Macro/Keybind Mod"
installtype: "zip"
versions:
0.9.2_for_1.3.2:
0.8.7_for_1.2.5:
0.8.6_for_1.2.4:
0.8.5_for_1.2.3:
matmos:
name: "MAtmos"
description: ""
installtype: "zip"
modtype: "audio"
versions:
v12:
v11:
r10:
r8:
millenaire:
name: "Millenaire"
installtype: "zip"
versions:
v2.7.4:
v2.5.9:
v2.5.4:
v2.5.2:
v2.4.6:
v2.4.4:
v2.4.2:
v2.3.2:
v2.3.1:
v2.2.8:
v2.2.5:
v2.2.4:
v2.2.1:
v2.2:
v2.1.6:
v2.1.5:
v2.1.2:
v2.1:
minaptics:
name: "Minaptics"
installtype: "zip"
versions:
1.2.3r12vbox:
1.2.4r13vbox:
minions:
name: "Minecraft Minions"
installtype: "zip"
versions:
v1.1:
v1.2.3:
v1.2.5:
mffs:
name: "Modular Force Field System"
installtype: "zip"
versions:
v7:
v6:
v5:
v3:
mfr:
name: "MineFactory Reloaded"
description: "A way to automatically farm plants and animals, as well some new rail tracks! With this mod you can set up a completely automated farm for any of these things that requires no real work aside from collecting the harvests and reloading the planter, without incredibly complex and unwieldy water/piston solutions. And you can milk cows to death or otherwise run livestock farms if you need those resources. Oh and it has conveyor belts too."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/554413-100smp-pcs-mods-minefactory-reloaded-power-converters-and-more-updated-dec-19th/"
versions:
v1.4.1_01:
dependencies:
baseModloader: 1.1.0
baseforge: 1.3.2
v1.4.0p2:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.4
buildcraft: 2.2.11
v1.4.0p:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.3
buildcraft: 2.2.11
v1.4.0:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.3
buildcraft: 2.2.7
minecolony:
names: "Minecolony"
installtype: "zip"
versions:
v19yb:
v17yb:
v17.1yb:
minecraftconsole:
name: "Minecraft Console"
description: "The Minecraft console mod adds a new GUI console to Minecraft which makes viewing messages a whole lot easier!"
installtype: "zip"
modtype: "tweak"
link: "http://www.minecraftforum.net/topic/680231-181-minecraft-console-v10/"
optional: true
versions:
v1.2:
dependencies:
baseModloader: 1.1.0
v1.1:
dependencies:
baseModloader: 1.0.0
mocreatures:
installtype: "zip"
name: "Mo Creatures"
versions:
v3.7.1:
v3.6.2:
v3.3.0:
v3.2.2:
v3.1.0:
morefuel:
installtype: "zip"
name: "More Fuel"
versions:
v1.7:
nei:
name: "Not Enough Items"
installtype: "zip"
versions:
v1.2.2:
v1.2.0:
v1.2.1:
nei-rc:
name: "NEI Railcraft Plugin"
installtype: "zip"
versions:
v1.2.2.2:
nei-redpower:
name: "NEI RedPower Plugin"
installtype: "zip"
versions:
v1.2.2.3:
nei-thaumcraft:
name: "NEI Thaumcraft Plugin"
installtype: "zip"
versions:
v1.0.6.15:
netherores:
name: "Nether Ores"
description: "This is a fairly basic mod. It makes the eight 'ores' - coal, diamond, gold, iron, lapis, redstone, sopper and tin - spawn in the nether so that you have a reason to go there."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/554413-100smp-pcs-mods-minefactory-reloaded-power-converters-and-more-updated-dec-19th/#no"
versions:
v1.2.1:
v1.1.2:
dependencies:
baseModloader: 1.1.0
baseforge: 1.3.2
v1.1.0:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.3
omniwrench:
name: "CoFH OmniWrench"
installtype: "zip"
versions:
pr1:
pfaeff:
name: "Pfaeff's Mods"
installtype: "zip"
versions:
v1.1:
powerconverters:
name: "Power Converters"
description: ""
installtype: "zip"
modtype: "content"
versions:
v1.3.4:
v1.3.1_01:
v1.3.0p2:
rc:
name: "Railcraft"
description: "Have you ever wished minecarts and rails had received a bit more attention during development? Well that ends now! Gone are all those broken bits and in their place are a ton of new tools to build your massive rail system. If you ever cared about rails, you wont ever look back!"
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/701990-100-railcraft-221-forge-smp/"
versions:
v5.4.7:
v5.3.3:
v5.3.2:
v5.2.4:
v5.2.0:
v5.1.0:
v5.0.3:
v4.1.4:
v3.4.2:
v3.4.0:
v3.3.1:
v3.2.1:
v3.0.0:
dependencies:
baseModloader: 1.1.0
baseforge: 1.3.0
v2.2.1:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.4
basemcl: 4.1
buildcraft: 2.2.11
v2.1.1:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.2
basemcl: 4.0
buildcraft: 2.2.7
redpower:
name: "RedPower"
description: "Redpower by Eloraam is a mod for minecraft which introduces redstone-like wires, cables, integrated circuits, lights, and more."
installtype: "zip"
modtype: "content"
link: "http://www.eloraam.com/"
versions:
v2.0.5b2:
v2.0.5b1:
v2.0.5:
v2.0.4e:
v2.0.4d:
dependencies:
baseModloader: 1.1.0
baseforge: 1.3.0
v2.0.4c:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.4
v2.0.4b:
dependencies:
baseModloader: 1.0.0
baseforge: 1.2.3
reisminimap:
name: "Rei's Minimap"
description: "Adds a realtime minimap with features such as waypoints, cave maps and entity locations."
installtype: "zip"
modtype: "tweak"
link: "http://www.minecraftforum.net/topic/482147-100b181b19pre5jan01-reis-minimap-v29-01/"
optional: true
versions:
v3.2_04:
v3.2_03:
v3.0_04-1.2.5:
v3.0_04:
v3.0_03:
v3.0_01:
v3.0:
v2.9.01:
v2.9:
ropeplus:
name: "Ropes +"
installtype: "zip"
versions:
v1.1:
v1.1yb:
v1.2.3yb:
sensibleenchanting:
name: "Sensible Enchanting"
installtype: "zip"
versions:
v4.9:
shelf:
name: "Shelf"
installtype: "zip"
versions:
v1.1:
v1.2.3:
smartmoving:
name: "Smart Moving"
installtype: "zip"
versions:
v8.5:
somnia:
name: "Somnia"
installtype: "zip"
versions:
v24:
v23:
v21:
startinginventory:
name: "Starting Inventory"
installtype: "zip"
versions:
v1.2.5.a:
stevescarts:
name: "Steve's Carts"
installtype: "zip"
versions:
v1.5.0:
thaumcraft:
name: "Thaumcraft"
installtype: "zip"
versions:
v2.1.6d:
v2.1.6c:
v2.1.3b:
v2.1.1:
v2.1.0:
v2.0.2:
v2.0.1:
v2.0:
v1.2.6:
v1.2.5bc3:
v1.2.4bc3:
v1.2.4bc2:
v1.2.3:
v1.2.1:
thermalexpansion:
name: "Thermal Expansion"
installtype: "zip"
versions:
v1.0.4.2:
v1.0.4.1:
v1.0.4:
v1.0.3:
tok:
name: "Tales of Kingdoms"
installtype: "zip"
versions:
v1.3.0.3:
tomes:
name: "Tomes"
installtype: "zip"
versions:
ssp-1.2.5:
v4:
treecapitator:
name: "Treecapitator"
installtype: "zip"
versions:
v1.2.5.e:
v1.1:
v1.0.0:
v1.2.3.b:
tubestuff:
name: "Tube Stuff"
installtype: "zip"
versions:
v49.2.0:
v49.1.2:
v49.1.1:
v49.1.0:
v49.0.7:
v49.0.5:
v48.2.1:
twilightforest:
name: "Twilight Forest"
installtype: "zip"
versions:
v1.6r2:
v1.7.1:
voxelget:
name: "VoxelGET"
installtype: "zip"
versions:
0.6.1_mc1.3.2:
0.5.6.2_mc1.2.5:
0.5.6_mc1.2.4:
0.5.5_mc1.2.3:
voxelmenu:
name: "VoxelMenu"
installtype: "zip"
versions:
1.3.2:
voxelpacket:
name: "VoxelPacket"
installtype: "zip"
versions:
1.2_mc1.3.2:
1.0.1_mc1.2.5:
1.0.1_mc1.2.4:
1.0.2_client_obf_mc1.2.3:
voxelplayer:
name: "VoxelPlayer"
installtype: "zip"
versions:
0.7.1_mc1.3.2:
0.6.1_mc1.2.5:
0.6.1_mc1.2.4:
v8.1.0:
voxeltextures:
name: "VoxelTextures"
installtype: "zip"
versions:
0.6.5_mc1.3.2:
0.4.3_mc1.2.5:
0.4.2_mc1.2.5:
0.4.1_mc1.2.4:
0.4.0_mc1.2.3:
voxelworld:
name: "VoxelWorld"
installtype: "zip"
versions:
v8.1.0:
wirelessredstone:
name: "Wireless Redstone"
description: "Wireless Redstone is a Minecraft modification that allows you to transmit and receive redstone signals without wires. The mod has been in beta for 4 weeks prior to final release, this was done to guarantee as much quality as possible for the final product and to make sure the base mod has room for iteration and expantion."
installtype: "zip"
modtype: "content"
link: "http://www.minecraftforum.net/topic/328725-100wireless-redstone-v15/"
versions:
v1.5-1.2.5:
v1.5.3:
v1.5.2:
dependencies:
baseModloader: 1.1.0
v1.5.1:
v1.5:
dependencies:
baseModloader: 1.0.0
v1.4:
dependencies:
baseModloader: 1.0.0
worldeditcui:
name: "WorldEdit CUI"
description: ""
installtype: "zip"
modtype: "UI"
link: "http://www.minecraftforum.net/topic/885099-11-worldeditcui-worldedit-client-user-interface-v11a/"
versions:
v1.0:
v1.1:
v1.2:
v1.2_mc1.2.4:
wrcbe:
name: "Wireless Redstone Chicken Bones Edition"
installtype: "zip"
versions:
v1.2.2.3:
v1.2.2.1:
v1.2.1:
v1.2.0:
xpbook:
name: "XP Book"
installtype: "zip"
versions:
ssp-1.2.5:
v5:
v4:
yogbox:
name: "Yogbox"
installtype: "zip"
versions:
v1.1.0:
zeppelin:
name: "Zeppelin Mod"
installtype: "zip"
versions:
v1.1.0.0.30:
v1.1.0.0.28:
v1.1.0.0.25:
z-spotlight-configs:
name: "Mod Spotlight Configs"
installtype: "zip"
versions:
thaumcraft-v2.0.1:
z-technic-configs:
name: "Technic Configs"
description: "A collection of configs for all Technic mods"
installtype: "zip"
versions:
v7.2.7:
v7.2.6:
v7.2.0:
v7.1.0:
v7.0.1:
v7.0.0:
v6.1.1:
v6.1.0:
v6.0.7:
v6.0.6:
v6.0.5:
v6.0.4:
v6.0.3:
v6.0.2:
v6.0.0:
z-tekkit-configs:
name: "Tekkit Configs"
description: "A collection of configs for all Tekkit mods"
installtype: "zip"
versions:
v3.1.2:
v3.1.1:
v3.1.0:
v3.0.3:
v3.0.2:
v3.0.1:
v3.0.0a:
v3.0.0:
v2.1.1:
v2.1:
v2.0:
v2.0.0:
z-tekkit-keybinds:
name: "Tekkit Keybinds"
description: "Separate collection for keybinds"
installtype: "zip"
versions:
v3.1.2:
z-voxelmodpack-configs:
name: "VoxelModPack Configs"
installtype: "zip"
versions:
v9.0.0:
v8.4.0:
v8.3.0:
v8.2.0:
v8.1.0:
z-voxelmodpack-texturepacks:
name: "VoxelModPack Texture Packs"
installtype: "zip"
versions:
v8.3.0:
v8.2.0:
z-yogbox-configs:
name: "Yogbox Configs"
installtype: "zip"
versions:
v1.1.0:
v1.1.1:
v1.1.2:
v1.1.3:
v1.1.5:
v1.1.6:
v1.2.0:
v1.2.1:
v1.2.5: