forked from wabbajack-tools/mod-lists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modlists.json
1571 lines (1571 loc) · 58.6 KB
/
modlists.json
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
[
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Somnium",
"description": "More than a modlist: a complete reinvention of Enderal. Brought to you by Scenic Route Games. WARNING: Contains scenes and themes that may be disturbing to some users.",
"author": "Scenic Route Games",
"maintainers": [
"apoapse"
],
"game": "enderalspecialedition",
"official": true,
"tags": [
"Official",
"Total Conversion",
"Horror",
"Third-Person Shooter",
"Enderal"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/apoapse1/somnium-fur-enderal/main/Resources/Start_Screen.png",
"readme": "https://www.scenicroute.games/projects/somnium",
"download": "https://github.com/apoapse1/somnium-fur-enderal/releases/latest/download/Somnium.wabbajack",
"machineURL": "somnium",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "mraxKPm9Fd4=",
"Size": 744840723,
"NumberOfArchives": 827,
"SizeOfArchives": 84639841300,
"NumberOfInstalledFiles": 249342,
"SizeOfInstalledFiles": 145597276470
},
"version": "1.0",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "FUS",
"description": "FUS is a fundamental and modular vanilla+ setup for Skyrim VR that offers 4 profiles. Essentials only (FUS), Essentials + Apperance (FUS ROH), Essentials + Apperance + Gameplay, and Cangar, including optional mods.",
"author": "Cangar & Kvitekvist",
"maintainers": [
"kvitekvist",
"github/Kvitekvist",
"github/MariusKlug",
"cangar"
],
"game": "skyrimvr",
"official": false,
"tags": [
"Official",
"Top performance",
"Modular",
"Official",
"VR"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://staticdelivery.nexusmods.com/mods/1704/images/53186/53186-1639838346-1697175645.png",
"readme": "https://raw.githubusercontent.com/Kvitekvist/FUS/main/README.md",
"download": "https://authored-files.wabbajack.org/FUS.wabbajack_63c5d553-ae00-4209-9989-c6a67c45a80d",
"machineURL": "fus",
"discordURL": "https://discord.gg/eC9KvaBxHv"
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "nPqGvLFZ4Qs=",
"Size": 172841357,
"NumberOfArchives": 359,
"SizeOfArchives": 39232677671,
"NumberOfInstalledFiles": 51874,
"SizeOfInstalledFiles": 51671871024
},
"version": "2.4.0",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "The Phoenix Flavour - Dragon's Edition",
"description": "A fork of The Phoenix Flavour, which expands Skyrim's world and possibilities extensively by adding adventuristic content for many tastes and beautiful sceneries surrounding it.",
"author": "DragonBlame",
"maintainers": [
"github/DragonBlame",
"dragonblame"
],
"game": "skyrimspecialedition",
"official": true,
"tags": [
"Official",
"Quests",
"Visuals",
"Simonrim"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/DragonBlame/tpf-dragons-edition/main/images/BigBanner.webp",
"readme": "https://raw.githubusercontent.com/DragonBlame/tpf-dragons-edition/main/WABBAJACK.md",
"download": "https://authored-files.wabbajack.org/The Phoenix Flavour - Dragon's Edition.wabbajack_2fdd5818-fe46-44cb-9ec7-ec760a8f54fb",
"machineURL": "tpfde",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "G/IMtjO/0us=",
"Size": 267683890,
"NumberOfArchives": 1419,
"SizeOfArchives": 128307713872,
"NumberOfInstalledFiles": 214968,
"SizeOfInstalledFiles": 190684487544
},
"version": "2.4.3",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Librum SE",
"description": "A gritty, low-magic, hardcore survival-adventure experience with an uncompromising vision. Hundreds of new quests and locations, a total mechanics overhaul, and a complete makeover of the graphics and atmosphere. The path to your destiny as the Dragonborn will be long and treacherous. Welcome to Librum.",
"author": "The Librum Team",
"maintainers": [
"apoapse"
],
"game": "skyrimspecialedition",
"official": true,
"tags": [
"Official",
"LotD",
"Survival",
"Custom Content",
"Gritty",
"Realism"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/apoapse1/Librum-for-Skyrim-VR/main/Resources/WJ-Banner-Book-SE.webp",
"readme": "https://raw.githubusercontent.com/apoapse1/Librum-for-Skyrim-VR/main/README.md",
"download": "https://github.com/apoapse1/Librum-for-Skyrim-VR/releases/download/v3.0.4-5/Librum.SE.wabbajack",
"machineURL": "librum_se",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "WqedsV+ZtqE=",
"Size": 364583372,
"NumberOfArchives": 1027,
"SizeOfArchives": 81079493862,
"NumberOfInstalledFiles": 244901,
"SizeOfInstalledFiles": 157221949807
},
"version": "3.0.4.5",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Librum VR",
"description": "A gritty, low-magic, hardcore survival-adventure experience with an uncompromising vision. Hundreds of new quests and locations, a total mechanics overhaul, and a complete makeover of the graphics and atmosphere. The path to your destiny as the Dragonborn will be long and treacherous. Welcome to Librum.",
"author": "The Librum Team",
"maintainers": [
"apoapse"
],
"game": "skyrimvr",
"official": true,
"tags": [
"Official",
"VR",
"LotD",
"Survival",
"Custom Content",
"Gritty",
"Realism"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/apoapse1/Librum-for-Skyrim-VR/main/Resources/WJ-Banner-Orrery-VR.webp",
"readme": "https://raw.githubusercontent.com/apoapse1/Librum-for-Skyrim-VR/main/README.md",
"download": "https://github.com/apoapse1/Librum-for-Skyrim-VR/releases/download/v3.0.4-5/Librum.VR.wabbajack",
"machineURL": "librum_vr",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "fsCBT2CPirY=",
"Size": 336756878,
"NumberOfArchives": 1132,
"SizeOfArchives": 81781992195,
"NumberOfInstalledFiles": 244916,
"SizeOfInstalledFiles": 157583846764
},
"version": "3.0.4.5",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Serenity 2",
"description": "Serenity 2 is a Skyrim SE modlist found on Wabbajack that aims to bring a fresh Requiem Experience to the table. It uses Requiem 4.0.2 converted to Skyrim Special Edition and has minor and some major tweaks to the core Requiem experience that aims to enhance longevity and replayability while keeping the game fair, balanced and looking great. Serenity is targetted at new and veteran Requiem players and can offer new experiences to both sides of the playerbase.",
"author": "Xanza, Esvs",
"maintainers": [
"esvs"
],
"game": "skyrimspecialedition",
"official": true,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/azraerl/serenity/master/cover/Cover.png",
"readme": "https://raw.githubusercontent.com/azraerl/serenity/master/README.md",
"download": "https://authored-files.wabbajack.org/Serenity2.wabbajack_3325b46c-af81-44ae-b974-516c7bb96406",
"machineURL": "serenity",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "BW3aY+vvtQA=",
"Size": 740389928,
"NumberOfArchives": 991,
"SizeOfArchives": 70156223072,
"NumberOfInstalledFiles": 108169,
"SizeOfInstalledFiles": 100347585955
},
"version": "1.6.3.1",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Dishonored Plus",
"description": "This is a list that just brings some little quality of life features into Dishonored, the mid mission stats page and detection and kill notices, that are by default available in Dishonored 2, the startup movie skip, the despawning bodies fix, a non lethal drop takedown(just jump on their heads from high enough) and upscaled loading screens.",
"author": "Luca|EzioThedeadPoet",
"maintainers": [
"luca"
],
"game": "dishonored",
"official": true,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/EzioTheDeadPoet/Dishonored-Plus/master/assets/images/Dishonored_Plus.webp",
"readme": "https://raw.githubusercontent.com/EzioTheDeadPoet/Dishonored-Plus/master/WJPlaceholder.md",
"download": "https://authored-files.wabbajack.org/Dishonored%20Plus.wabbajack_68d8c29b-ffb9-49b1-acdc-22741ae5c207",
"machineURL": "dishonoredplus",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "qovRQKn45Gs=",
"Size": 3798139,
"NumberOfArchives": 3,
"SizeOfArchives": 3769727081,
"NumberOfInstalledFiles": 36,
"SizeOfInstalledFiles": 3727011086
},
"version": "1.0",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "You Are Just an N'wah",
"description": "YAJAN adds survival and roleplaying elements into Morrowind, as well as overhauling cities, landscapes, and graphics.",
"author": "RingComics",
"maintainers": [],
"game": "morrowind",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/RingComics/yajan/main/Morrowind_2021-02-12_06.20.46.765.png",
"readme": "https://raw.githubusercontent.com/RingComics/yajan/main/README.md",
"download": "https://github.com/RingComics/yajan/releases/download/v6.2.0/You.Are.Just.an.N.wah.wabbajack",
"machineURL": "yajan",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "0qa0lcVaZrw=",
"Size": 304006689,
"NumberOfArchives": 7479,
"SizeOfArchives": 7854303959,
"NumberOfInstalledFiles": 41755,
"SizeOfInstalledFiles": 15799757510
},
"version": "6.2.0",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Viva New Vegas",
"description": "Viva New Vegas is a lite modlist that tries to stay as close as possible to vanilla, but fixes as many bugs as possible, optimize the performance, and add in some quality of life features without being intrusive. This modlist makes use of JSawyer Ultimate Edition but can be played without.",
"author": "TDarkShadow",
"maintainers": [],
"game": "falloutnewvegas",
"official": false,
"tags": [
"Official",
"Lite",
"Performance",
"JSawyer"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/TDarkShadow/vivanewvegas-wabbajack/master/background.webp",
"readme": "https://raw.githubusercontent.com/TDarkShadow/vivanewvegas-wabbajack/master/README.md",
"download": "https://github.com/TDarkShadow/vivanewvegas-wabbajack/releases/download/v1.4.3/Viva.New.Vegas.wabbajack",
"machineURL": "vivanewvegas",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "d/pdrdx8Ij8=",
"Size": 2827689,
"NumberOfArchives": 71,
"SizeOfArchives": 845945525,
"NumberOfInstalledFiles": 8655,
"SizeOfInstalledFiles": 2564886645
},
"version": "1.4.3",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Box of Rockets",
"description": "A Kerbal Space Program mod list that adds all the parts you could ever want, all integrated into the Community Tech Tree so you can explore the Galaxies Unbound planets!",
"author": "LaughingHyena",
"maintainers": [
"laughinghyena"
],
"game": "kerbalspaceprogram",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/LaughingHyena279/BoxOfRockets/main/kerbal_centrifuge_training_by_timmon26_d5g7dkr.jpg.74803b68ceb0fcafe450403c6af93139.thumb.jpg.13fff86622b4d3715e64e573b0483946.png",
"readme": "https://raw.githubusercontent.com/LaughingHyena279/BoxOfRockets/main/README.md",
"download": "https://authored-files.wabbajack.org/Box of Rockets.wabbajack_346d4418-a5ae-4901-8920-18827c396e1f",
"machineURL": "BOR",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "WNvc+Q90auY=",
"Size": 638114,
"NumberOfArchives": 61,
"SizeOfArchives": 4210584544,
"NumberOfInstalledFiles": 14644,
"SizeOfInstalledFiles": 8305206266
},
"version": "1.2",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "The Phoenix Flavour",
"description": "The Phoenix Flavour for Skyrim SE is a visuals and gameplay-focused modding guide and mod list, featuring around 700 mods carefully selected and patched for a coherent and stable experience. Originally released in 2017, it has gone through many iterations and continues to be updated frequently.",
"author": "Phoenix & Umgak, maintained by Codygits",
"maintainers": [
"github/Codygits",
"codygits"
],
"game": "skyrimspecialedition",
"official": false,
"tags": [
"Official",
"Visuals",
"Simonrim"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/Codygits/TPF-Updates/main/images/Standing_Stones_TPF_Logo.webp",
"readme": "https://raw.githubusercontent.com/Codygits/TPF-Updates/main/Wabbajack.md",
"download": "https://authored-files.wabbajack.org/The Phoenix Flavour.wabbajack_8580954f-8c11-47bb-b3e4-fd2d0798ae18",
"machineURL": "tpf",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "lOCrK5dRDT8=",
"Size": 194103724,
"NumberOfArchives": 859,
"SizeOfArchives": 64261198942,
"NumberOfInstalledFiles": 78627,
"SizeOfInstalledFiles": 77292625771
},
"version": "4.14.3",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Legends of the Frost",
"description": "Legends of the Frost is Skyrim, but better. Textures are sharper, trees are more lush, weathers are more diverse, and water no longer looks like oil. A collection of around 200 mods fixes a plethora of bugs and annoyances in addition to bringing some light improvements to combat and balancing. LOTF also features seamless blending of distant terrain and trees as well as high quality facegen. Now with optional PERFORMANCE PROFILE and CREATION CLUB support.",
"author": "Phoenix",
"maintainers": [],
"game": "skyrimspecialedition",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/foreverphoenix/the-phoenix-flavour/master/static/Pictures/LOTF-Logo-No-TES.webp",
"readme": "https://raw.githubusercontent.com/foreverphoenix/the-phoenix-flavour/master/WABBAJACK-LOTF.md",
"download": "https://authored-files.wabbajack.org/Legends%20of%20the%20Frost.wabbajack_e3a70c8d-29ab-4878-a157-d800ef0a6a80",
"machineURL": "lotf",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "Znwc5vmO2mE=",
"Size": 1259528761,
"NumberOfArchives": 348,
"SizeOfArchives": 51056968622,
"NumberOfInstalledFiles": 64996,
"SizeOfInstalledFiles": 66544623782
},
"version": "2.4",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Auriels Dream",
"description": "Auriels Dream offer a unique thematic overhaul. Warmer colors kind of bring an Oblivion vibe to this modlist. Great for players new to Skyrim. Difficulty: Vanilla. Not many changes are done to alter the game play except adding VR spesific mods, bug fixes and a few Quality of Life mods.",
"author": "Kvitekvist",
"maintainers": [
"github/Kvitekvist",
"kvitekvist"
],
"game": "skyrimvr",
"official": false,
"tags": [
"Official",
"High-Fantasy",
"Near Vanilla",
"VR"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/Kvitekvist/Auriel-s-Dream/master/images/auriels_dream.webp",
"readme": "https://www.nexusmods.com/skyrimspecialedition/mods/41020",
"download": "https://authored-files.wabbajack.org/Auriels Dream.wabbajack_b852cadf-8bf8-4fd3-8fae-35a539cec871",
"machineURL": "auriels_dream",
"discordURL": "https://discord.gg/eJtqkQpCmP"
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "NPWm70oqg5Q=",
"Size": 433572620,
"NumberOfArchives": 863,
"SizeOfArchives": 52552848788,
"NumberOfInstalledFiles": 148898,
"SizeOfInstalledFiles": 77984289364
},
"version": "10.0.5",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Diabolist VR",
"description": "Diabolist VR pays homage to the hack n slash loot hoarding ARPG of the late 90s, by adding 7 Diablo inspired mods, 67 additional dungeons, hundreds of unique monsters, complete with a generous 3 tier loot system! Most creatures are randomly generated and respawn often for variation, Welcome to DVR... More Monsters, More Loot!",
"author": "ex0-tekk",
"maintainers": [
"ex0-tekk"
],
"game": "skyrimvr",
"official": false,
"tags": [
"Official",
"High Fantasy",
"Performance",
"Theme Based",
"Monsters",
"Loot",
"VR"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/ex0-tekk/Diabolist-VR/main/DVR%20Logo%20Final%20New%2016-9%201080p.webp",
"readme": "https://raw.githubusercontent.com/ex0-tekk/Diabolist-VR/main/Readme.md",
"download": "https://authored-files.wabbajack.org/Diabolist VR.wabbajack_cd7c81fd-14c4-4a03-8f6d-3eff979fad7b",
"machineURL": "diabolist_vr",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "vxrUZGudLQ4=",
"Size": 4172958258,
"NumberOfArchives": 682,
"SizeOfArchives": 47465660004,
"NumberOfInstalledFiles": 133076,
"SizeOfInstalledFiles": 68928843848
},
"version": "2.9.9",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Relics of Hyrule - GAT Edition",
"description": "The goal of this modlist is to be something fun and different rather than your 100th enai-survival-rim playthrough. This modlist primarily revolves around Relics of Hyrule and Grand Admiral Thrawn with new monsters coming from a heavily modified version of Rogue-Like Encounters.",
"author": "jdsmith2816, maintained by Fantastigasmical Alice",
"maintainers": [
"jdsmith",
"fantastigasmical_alice"
],
"game": "skyrimspecialedition",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/lexcia98/rge/master/rge.webp",
"readme": "https://raw.githubusercontent.com/lexcia98/rge/master/README.md",
"download": "https://authored-files.wabbajack.org/Relics%20of%20Hyrule%20-%20GAT%20Edition.wabbajack_b1afbbfe-9ae7-4988-9b2d-7844b980a9e8",
"machineURL": "rge",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "X4A01fOIyvk=",
"Size": 1254106640,
"NumberOfArchives": 968,
"SizeOfArchives": 107917963854,
"NumberOfInstalledFiles": 186862,
"SizeOfInstalledFiles": 144731198503
},
"version": "2.3.6.1",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Lost in Space",
"description": "Lost in Space is an overhaul of several key aspects of No Man's Sky. This will make planet/space exploration, survival and combat more interesting and fun. It comes with improved visuals and QoL features.Completely multiplayer compatible and has full support for VR with a seperate profile. You can seamlessly switch between desktop and VR gameplay.",
"author": "GingasVR",
"maintainers": [],
"game": "nomanssky",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/Lost_in_Space/lost%20in%20space%20img.png",
"readme": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/Lost_in_Space/readme.md",
"download": "https://authored-files.wabbajack.org/NMS%20Lost%20in%20Space.wabbajack_b883443b-9b3c-4116-96e9-aed583ca5ba5",
"machineURL": "lostinspace",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "ep18bHQTpF0=",
"Size": 1426268,
"NumberOfArchives": 25,
"SizeOfArchives": 313325371,
"NumberOfInstalledFiles": 1643,
"SizeOfInstalledFiles": 495388857
},
"version": "4.0",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "OME(FT)",
"description": "Oblivion Modding Essentials (Fixes & Tools)",
"author": "jdsmith2816",
"maintainers": [
"jdsmith2816"
],
"game": "oblivion",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": true,
"image_contains_title": true,
"force_down": true,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/jdsmith2816/omeft/main/extra/omeft.webp",
"readme": "https://raw.githubusercontent.com/jdsmith2816/omeft/main/README.md",
"download": "https://authored-files.wabbajack.org/OMEFT.wabbajack_b9e40a70-6641-4824-8b85-dcd00ae6d5f0",
"machineURL": "omeft",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "XvQk/fx1E/Y=",
"Size": 215610572,
"NumberOfArchives": 249,
"SizeOfArchives": 6744780042,
"NumberOfInstalledFiles": 57881,
"SizeOfInstalledFiles": 10445904341
},
"version": "1.0.0",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Welcome to Paradise",
"description": "Welcome to Paradise (WTP) is a lightweight Wabbajack list for Fallout 4. Mods were selected to improve existing parts of the game rather than outright replacing them, although some aspects were edited more heavily than others. The setup was built with gameplay-friendly performance in mind and can run at a stable 60FPS @1440p on reasonably modern hardware.",
"author": "Phoenix",
"maintainers": [],
"game": "fallout4",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/foreverphoenix/the-phoenix-flavour/wtp-dev/static/Pictures/wtp-2-1-cover.webp",
"readme": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/phoenix-flavour-fo4/readme.md",
"download": "https://authored-files.wabbajack.org/Welcome%20to%20Paradise.wabbajack_aaae46ce-8d94-4e21-b905-067a1d3dda5d",
"machineURL": "tpf-fo4",
"discordURL": "https://discord.gg/xCPxJFbCTS"
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "1Uek2emSCaE=",
"Size": 19266581,
"NumberOfArchives": 369,
"SizeOfArchives": 42122826387,
"NumberOfInstalledFiles": 8407,
"SizeOfInstalledFiles": 34144694490
},
"version": "2.3.3",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Fallout VR Essentials Overhaul",
"description": "Complete Overhaul of Fallout 4 VR with a focus on Survival, Stability and 90 FPS gameplay!",
"author": "GingasVR",
"maintainers": [
"cacophony"
],
"game": "fallout4vr",
"official": false,
"tags": [
"Official",
"VR",
"Performance"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/FO4VRE/Updated%20fo4.png",
"readme": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/FO4VRE/readme.md",
"download": "https://authored-files.wabbajack.org/Fallout%20VR%20Essentials%20Overhaul.wabbajack_e6bf9af3-5e20-489f-bd68-81660c0a5fda",
"machineURL": "fo4vre",
"discordURL": "https://discord.gg/U7bUYztShA"
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "YFwSjdR3dzA=",
"Size": 526230126,
"NumberOfArchives": 252,
"SizeOfArchives": 24956574581,
"NumberOfInstalledFiles": 12156,
"SizeOfInstalledFiles": 22021395681
},
"version": "11.1",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Heartland",
"description": "Heartland provides a stable and comprehensive graphics overhaul for Oblivion. A fork of Bevilex's fantastic manual guide, the results bring Oblivion close to modern visuals - complete with HD textures, revamped UIs, ENB, shader packages and much more.",
"author": "Sam",
"maintainers": [],
"game": "oblivion",
"official": false,
"tags": [
"Official",
"Visuals",
"Modular"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/heartland/image.png",
"readme": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/heartland/readme.md",
"download": "https://authored-files.wabbajack.org/Heartland_2_2_6.wabbajack_3190c186-77c3-460d-b019-8a9fd6020787",
"machineURL": "heartland",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "Q5RBjPzcmmQ=",
"Size": 39727904,
"NumberOfArchives": 218,
"SizeOfArchives": 16215360365,
"NumberOfInstalledFiles": 38521,
"SizeOfInstalledFiles": 29803764254
},
"version": "2.2.6",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Ultimate VR Essentials",
"description": "The Ultimate VR Essentials List is designed to give users a better looking, better controlling, and better playing Skyrim VR Experience that can be used as is or customized to their taste.",
"author": "Timboman",
"maintainers": [
"timboman"
],
"game": "skyrimvr",
"official": false,
"tags": [
"Official",
"VR"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/ultimate_vr_essentials_list/VREssentialsBanner.png",
"readme": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/ultimate_vr_essentials_list/readme.md",
"download": "https://authored-files.wabbajack.org/The Ultimate VR Essentials List.wabbajack_75fa4a74-19e1-4dc9-88aa-5e945ff875ed",
"machineURL": "ultimate_vr_essentials",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "/Nn/xEIaaWU=",
"Size": 255669802,
"NumberOfArchives": 782,
"SizeOfArchives": 72267923238,
"NumberOfInstalledFiles": 170043,
"SizeOfInstalledFiles": 110748391399
},
"version": "2.17.0",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Narsil",
"description": "Narsil is an ambitious curated modlist that seeks to overhaul and expand Skyrim VR to make it more balanced, challenging, varied, good looking and most importantly expand the available gameplay options and make the game more immersive while optimizing the performance as much as possible.",
"author": "Crithion",
"maintainers": [
"crithion"
],
"game": "skyrimvr",
"official": false,
"tags": [
"Official",
"VR",
"Performance",
"Ordinator"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": true,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/narsil/hero_image.webp",
"readme": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/narsil/readme.md",
"download": "https://authored-files.wabbajack.org/Narsil.wabbajack_8dd2bb2e-c0c5-411c-95d0-ac0e41ad7064",
"machineURL": "narsil",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "d5be7TVYvJU=",
"Size": 2571004788,
"NumberOfArchives": 935,
"SizeOfArchives": 81366832779,
"NumberOfInstalledFiles": 204375,
"SizeOfInstalledFiles": 119831359210
},
"version": "1.5.3",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Fallout 4 Enhanced Edition",
"description": "A hardcore list made to both expand and deepen the Commonwealth, built around the Horizon Gameplay Overhaul. Every encounter is deadly, and ammo is scarce, can you survive the Wasteland?",
"author": "AUGSpeed",
"maintainers": [
"augspeed"
],
"game": "fallout4",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/Fallout-4-Enhanced-Edition/F4EE.png",
"readme": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/Fallout-4-Enhanced-Edition/readme.md",
"download": "https://authored-files.wabbajack.org/Fallout%204%20Enhanced%20Edition.wabbajack_7714d0ed-1216-417b-9719-d6eec58e1f08",
"machineURL": "fallout_4_enhanced_edition",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "X7HjXIyxsqw=",
"Size": 7176642,
"NumberOfArchives": 279,
"SizeOfArchives": 53562469982,
"NumberOfInstalledFiles": 56292,
"SizeOfInstalledFiles": 67543594237
},
"version": "1.2.1",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Degenerate Dungeon",
"description": "Our first official outing for the amazing Darkest Dungeon, this list brings a very NSFW twist on the epic dungeon crawler. Enter at your own risk.",
"author": "Gregarious Jamie",
"maintainers": [
"gergarious_jamie"
],
"game": "darkestdungeon",
"official": false,
"tags": [
"Official"
],
"nsfw": true,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/AwesomeJames2120/Degenerate-Dungeon/master/Degenerate%20Dungeon.png",
"readme": "https://raw.githubusercontent.com/AwesomeJames2120/Degenerate-Dungeon/master/README.md",
"download": "https://authored-files.wabbajack.org/Degenerate%20Dungeon.wabbajack_99891c19-dc8d-4e90-803d-b50a12102169",
"machineURL": "degeneratedungeon",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "XYEzdE9WsZw=",
"Size": 285481420,
"NumberOfArchives": 342,
"SizeOfArchives": 3408481841,
"NumberOfInstalledFiles": 16611,
"SizeOfInstalledFiles": 3433661983
},
"version": "3.4",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Wildlander",
"description": "The ultimate fantasy life simulator, built for Skyrim Special Edition. Explore a reactive world full of beauty and brutality. Live your life as you see fit.",
"author": "Wildlander Team",
"maintainers": [
"ultskyteam"
],
"game": "skyrimspecialedition",
"official": true,
"tags": [
"Official",
"Requiem",
"Survival",
"Hardcore"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/Ultimate_Skyrim/wildlanderimage.png",
"readme": "https://raw.githubusercontent.com/wabbajack-tools/mod-lists/master/WILDLANDER/WJPlaceholder.md",
"download": "https://authored-files.wabbajack.org/Wildlander_1-0-0.wabbajack_8da3a322-60c9-4140-ace5-65b8f9a93158",
"machineURL": "wildlander",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "oGHu7sT6VOE=",
"Size": 248474966,
"NumberOfArchives": 597,
"SizeOfArchives": 91036403911,
"NumberOfInstalledFiles": 92530,
"SizeOfInstalledFiles": 94395730050
},
"version": "1.0.0",
"RepositoryName": ""
},
{
"$type": "ModListMetadata, Wabbajack.Lib",
"title": "Magnum Opus",
"description": "An incredibly clean and stable list featuring tons of new quests & locations, vastly expanded settlement systems, a massively interconnected collection of NPC overhauls, and of course hundreds of new outfits, armors, & weapons.",
"author": "Lively",
"maintainers": [
"github/LivelyDismay",
"lively"
],
"game": "fallout4",
"official": false,
"tags": [
"Official",
"NeverNude",
"Settlements",
"Creation Club"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"force_down": false,
"links": {
"$type": "Links, Wabbajack.Lib",
"image": "https://raw.githubusercontent.com/LivelyDismay/Learn-To-Mod/main/wabbajack-stuff/neat.webp",
"readme": "https://raw.githubusercontent.com/LivelyDismay/Learn-To-Mod/main/wabbajack-stuff/Readme.md",
"download": "https://authored-files.wabbajack.org/Magnum Opus.wabbajack_d4e2e1e4-6173-4026-940f-f94237854d2e",
"machineURL": "magnum_opus",
"discordURL": ""
},
"download_metadata": {
"$type": "DownloadMetadata, Wabbajack.Lib",
"Hash": "WmQC1pjdAjw=",