forked from wabbajack-tools/mod-lists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modlists.json
1045 lines (1045 loc) · 39.2 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
[
{
"title": "Tempus Maledictum",
"description": "From the creator of Magnum Opus comes Tempus Maledictum! What this is: An extremely stable Enairim power fantasy centered around Legacy of the Dragonborn and over two dozen quest mods for you to conquer and explore. What this isn\u0027t: A punishing Souls-like with real-life survival mechanics. I\u0027m here to have fun. Are you?",
"author": "Lively",
"maintainers": [
"github/LivelyDismay"
],
"game": "skyrimspecialedition",
"official": false,
"tags": [
"Official",
"Creation Club",
"Anniversary Edition",
"Legacy of the Dragonborn",
"LotD",
"Enairim",
"Timelost Dwemer"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/LivelyDismay/tempus-maledictum/main/TempusVidScreenMain.webp",
"readme": "https://raw.githubusercontent.com/LivelyDismay/tempus-maledictum/main/README.md",
"download": "https://authored-files.wabbajack.org/Tempus Maledictum.wabbajack_4c1c71d7-3784-4d37-b29d-2b33d0c73d99",
"machineURL": "tempus_maledictum",
"discordURL": "https://discord.gg/yABEjwB"
},
"download_metadata": {
"Hash": "bPMPtyMp3zs=",
"Size": 1317148996,
"NumberOfArchives": 1655,
"SizeOfArchives": 153531323002,
"NumberOfInstalledFiles": 356278,
"SizeOfInstalledFiles": 266884406056
},
"version": "6.3.4",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-04-08T22:53:35.2076303Z",
"repositoryName": ""
},
{
"title": "FUS",
"description": "FUS is a fundamental and modular vanilla\u002B setup for Skyrim VR that offers 4 profiles. Essentials only (FUS), Essentials \u002B Apperance (FUS ROH), Essentials \u002B Apperance \u002B Gameplay, and Cangar, including optional mods.",
"author": "Cangar \u0026 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,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"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_b626c9eb-7c27-4723-b752-42fe17f61e0a",
"machineURL": "fus",
"discordURL": "https://discord.gg/eC9KvaBxHv"
},
"download_metadata": {
"Hash": "MNB0ebbcA8Y=",
"Size": 329001644,
"NumberOfArchives": 515,
"SizeOfArchives": 46105469980,
"NumberOfInstalledFiles": 72341,
"SizeOfInstalledFiles": 59486236166
},
"version": "4.1.19",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-02-04T00:34:33.2795883Z",
"repositoryName": ""
},
{
"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": "Scenic Route Games",
"maintainers": [
"apoapse"
],
"game": "skyrimspecialedition",
"official": true,
"tags": [
"Official",
"LotD",
"Survival",
"Custom Content",
"Gritty",
"Realism"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/apoapse1/Librum-for-Skyrim-VR/main/Resources/LibSE_logo.webp",
"readme": "https://www.scenicroute.games/projects/librum-se",
"download": "https://github.com/apoapse1/Librum-for-Skyrim-VR/releases/latest/download/Librum.SE.wabbajack",
"machineURL": "librum_se",
"discordURL": "https://discord.gg/esGVnCjWpJ"
},
"download_metadata": {
"Hash": "O8kBg2mR57k=",
"Size": 492850132,
"NumberOfArchives": 1230,
"SizeOfArchives": 76719356588,
"NumberOfInstalledFiles": 203517,
"SizeOfInstalledFiles": 137823323274
},
"version": "3.1.0.1",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "0001-01-01T00:00:00",
"repositoryName": ""
},
{
"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": "Scenic Route Games",
"maintainers": [
"apoapse"
],
"game": "skyrimvr",
"official": true,
"tags": [
"Official",
"VR",
"LotD",
"Survival",
"Custom Content",
"Gritty",
"Realism"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/apoapse1/Librum-for-Skyrim-VR/main/Resources/LibVR_logo.webp",
"readme": "https://www.scenicroute.games/projects/librum-vr",
"download": "https://github.com/apoapse1/Librum-for-Skyrim-VR/releases/latest/download/Librum.VR.wabbajack",
"machineURL": "librum_vr",
"discordURL": "https://discord.gg/esGVnCjWpJ"
},
"download_metadata": {
"Hash": "OpVXeSXtbwY=",
"Size": 192364954,
"NumberOfArchives": 1335,
"SizeOfArchives": 88008258594,
"NumberOfInstalledFiles": 235393,
"SizeOfInstalledFiles": 155945779921
},
"version": "3.1.0.1",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "0001-01-01T00:00:00",
"repositoryName": ""
},
{
"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,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/apoapse1/somnium-fur-enderal/main/Resources/Start_Screen1.webp",
"readme": "https://www.scenicroute.games/projects/somnium",
"download": "https://github.com/apoapse1/somnium-fur-enderal/releases/latest/download/Somnium.wabbajack",
"machineURL": "somnium",
"discordURL": "https://discord.gg/esGVnCjWpJ"
},
"download_metadata": {
"Hash": "XVtTRWDkVGU=",
"Size": 844849937,
"NumberOfArchives": 912,
"SizeOfArchives": 94128612669,
"NumberOfInstalledFiles": 106208,
"SizeOfInstalledFiles": 140426515548
},
"version": "2.0.5",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2023-01-22T06:12:26.2087654Z",
"repositoryName": ""
},
{
"title": "Total Skyrim Overhaul",
"description": "Dying is a choice, looking good is a requirement.",
"author": "Total",
"maintainers": [
"github/NotTotal",
"Total"
],
"game": "skyrimspecialedition",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/NotTotal/Total-Skyrim-Overhaul/master/ScreenShot96.webp",
"readme": "https://github.com/NotTotal/Total-Skyrim-Overhaul/blob/master/README.md",
"download": "https://authored-files.wabbajack.org/Total Skyrim Overhaul.wabbajack_0a3ebacc-1735-4580-b4f1-7eee5c4dbcad",
"machineURL": "tso",
"discordURL": "https://discord.gg/JycmyqzZz7"
},
"download_metadata": {
"Hash": "NMunJP6C9KI=",
"Size": 1804213412,
"NumberOfArchives": 1033,
"SizeOfArchives": 162819466572,
"NumberOfInstalledFiles": 122257,
"SizeOfInstalledFiles": 267682779665
},
"version": "5.3.0",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-03-01T16:34:08.6238882Z",
"repositoryName": ""
},
{
"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",
"github/EzioTheDeadPoet"
],
"game": "dishonored",
"official": true,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"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 Plus.wabbajack_59cc8e35-998a-45ec-90d9-d84063017623",
"machineURL": "dishonoredplus",
"discordURL": "https://discord.gg/xRrHRsb5e9"
},
"download_metadata": {
"Hash": "5yz/ztspaGQ=",
"Size": 3795163,
"NumberOfArchives": 5,
"SizeOfArchives": 3769735155,
"NumberOfInstalledFiles": 36,
"SizeOfInstalledFiles": 3727019119
},
"version": "1.3",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2023-01-22T11:37:09.0224597Z",
"repositoryName": ""
},
{
"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 \u0026 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,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"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_4e8f7c44-0a2e-4895-8441-f24ba60bc8cf",
"machineURL": "tpf",
"discordURL": "https://discord.gg/xRrHRsb5e9"
},
"download_metadata": {
"Hash": "YTw3BCtZxkg=",
"Size": 280609048,
"NumberOfArchives": 905,
"SizeOfArchives": 67772843972,
"NumberOfInstalledFiles": 96301,
"SizeOfInstalledFiles": 81443411312
},
"version": "4.19.1",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-01-19T15:53:47.5394271Z",
"repositoryName": ""
},
{
"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 300 mods fixes a plethora of bugs and annoyances in addition to bringing some light improvements to visuals, 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": [
"github/foreverphoenix",
"phoenix"
],
"game": "skyrimspecialedition",
"official": false,
"tags": [
"Official",
"Lightweight",
"Anniversary Edition"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/foreverphoenix/the-phoenix-flavour/master/legends-of-the-frost.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_0547b088-116d-441e-a2d4-46c075368e90",
"machineURL": "lotf",
"discordURL": "https://discord.gg/xRrHRsb5e9"
},
"download_metadata": {
"Hash": "Ye2P0hBmgpU=",
"Size": 475344149,
"NumberOfArchives": 616,
"SizeOfArchives": 46253661857,
"NumberOfInstalledFiles": 168860,
"SizeOfInstalledFiles": 65396485611
},
"version": "3.3.4",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-01-20T09:40:28.1475907Z",
"repositoryName": ""
},
{
"title": "Aurora - A Visual Overhaul",
"description": "Aurora is a Wabbajack visuals-only list for Skyrim Special Edition with an emphasis on consistency. Based on Skyrim Modding Essentials.",
"author": "Phoenix",
"maintainers": [
"github/foreverphoenix"
],
"game": "skyrimspecialedition",
"official": false,
"tags": [
"Visuals Only",
"Anniversary Edition"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/foreverphoenix/the-phoenix-flavour/master/aurora.webp",
"readme": "https://raw.githubusercontent.com/foreverphoenix/the-phoenix-flavour/master/WABBAJACK-AUR.md",
"download": "https://authored-files.wabbajack.org/Aurora.wabbajack_2270eb21-b152-4323-8b9b-947c86930bbc",
"machineURL": "aur",
"discordURL": "https://discord.gg/xRrHRsb5e9"
},
"download_metadata": {
"Hash": "G3ywuKTofoc=",
"Size": 805232851,
"NumberOfArchives": 1098,
"SizeOfArchives": 77622833978,
"NumberOfInstalledFiles": 185156,
"SizeOfInstalledFiles": 86613902721
},
"version": "1.5.4",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-01-20T09:40:11.956227Z",
"repositoryName": ""
},
{
"title": "Happy Fun Times",
"description": "Toys. Vokriinator Black. AE. LOTD. New Enemies. More Dungeons.",
"author": "Total",
"maintainers": [
"github/NotTotal"
],
"game": "skyrimspecialedition",
"official": false,
"tags": [
"Official",
"Creation Club",
"Anniversary Edition",
"Legacy of the Dragonborn",
"LotD",
"NSFW"
],
"nsfw": true,
"utility_list": false,
"image_contains_title": false,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/NotTotal/Happy-fun-times/main/SkyrimSE_t6C0mxuRWU.webp",
"readme": "https://raw.githubusercontent.com/NotTotal/Happy-fun-times/main/README.md",
"download": "https://authored-files.wabbajack.org/Happy Fun Times.wabbajack_f8070929-239b-4ded-bd0f-77e74dd74fbf",
"machineURL": "HFT",
"discordURL": "https://discord.gg/jolly-coop"
},
"download_metadata": {
"Hash": "RVqnpoSDkbM=",
"Size": 308719168,
"NumberOfArchives": 1944,
"SizeOfArchives": 212587619365,
"NumberOfInstalledFiles": 265772,
"SizeOfInstalledFiles": 383718399813
},
"version": "1.2.7",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-02-11T02:20:57.6168972Z",
"repositoryName": ""
},
{
"title": "Skyrim Modding Essentials",
"description": "Skyrim Modding Essentials is a lean utility Wabbajack list for Skyrim Special Edition, intended to jumpstart a new mod setup with all the required tools and basic mods.",
"author": "Phoenix",
"maintainers": [
"github/foreverphoenix",
"phoenix"
],
"game": "skyrimspecialedition",
"official": false,
"tags": [
"Official",
"Lightweight",
"Utility"
],
"nsfw": false,
"utility_list": true,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/foreverphoenix/the-phoenix-flavour/master/skyrim-modding-essentials.webp",
"readme": "https://raw.githubusercontent.com/foreverphoenix/the-phoenix-flavour/master/WABBAJACK-SME.md",
"download": "https://authored-files.wabbajack.org/Skyrim%20Modding%20Essentials.wabbajack_5d241c14-5b52-467e-8ea3-410dd85c5227",
"machineURL": "sme",
"discordURL": "https://discord.gg/xRrHRsb5e9"
},
"download_metadata": {
"Hash": "jGDPCQHdLEY=",
"Size": 485272890,
"NumberOfArchives": 281,
"SizeOfArchives": 16685004600,
"NumberOfInstalledFiles": 135444,
"SizeOfInstalledFiles": 29974383300
},
"version": "2.6.6",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-01-22T00:21:00.6357311Z",
"repositoryName": ""
},
{
"title": "Lost in Space",
"description": "Lost in Space is an overhaul of several key aspects of No Man\u0027s 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,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"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_4a976c2b-223e-46de-a202-0e774269240f",
"machineURL": "lostinspace",
"discordURL": "https://discord.gg/U7bUYztShA"
},
"download_metadata": {
"Hash": "NjXSZ9Trxps=",
"Size": 1464207,
"NumberOfArchives": 31,
"SizeOfArchives": 313636767,
"NumberOfInstalledFiles": 1623,
"SizeOfInstalledFiles": 475279140
},
"version": "4.3",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "0001-01-01T00:00:00",
"repositoryName": ""
},
{
"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": [
"github/foreverphoenix",
"phoenix"
],
"game": "fallout4",
"official": false,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": true,
"links": {
"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 to Paradise.wabbajack_a28a2d57-3651-4c18-b29c-0a628733ae6a",
"machineURL": "tpf-fo4",
"discordURL": "https://discord.gg/xRrHRsb5e9"
},
"download_metadata": {
"Hash": "X8BkUPrGtUE=",
"Size": 15067464,
"NumberOfArchives": 418,
"SizeOfArchives": 48788273334,
"NumberOfInstalledFiles": 13514,
"SizeOfInstalledFiles": 32374632432
},
"version": "2.8.3",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2023-09-18T07:35:34.6426422Z",
"repositoryName": ""
},
{
"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,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"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_82cf50c0-ddb8-47a8-a0d2-aef604314ccf",
"machineURL": "fo4vre",
"discordURL": "https://discord.gg/U7bUYztShA"
},
"download_metadata": {
"Hash": "fCs6dgaSi/Q=",
"Size": 573133241,
"NumberOfArchives": 264,
"SizeOfArchives": 18186742777,
"NumberOfInstalledFiles": 13851,
"SizeOfInstalledFiles": 23108466870
},
"version": "14.2",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "0001-01-01T00:00:00",
"repositoryName": ""
},
{
"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,
"DisplayVersionOnlyInInstallerView": false,
"force_down": true,
"links": {
"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": {
"Hash": "/Nn/xEIaaWU=",
"Size": 255669802,
"NumberOfArchives": 782,
"SizeOfArchives": 72267923238,
"NumberOfInstalledFiles": 170043,
"SizeOfInstalledFiles": 110748391399
},
"version": "2.17.0",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "0001-01-01T00:00:00",
"repositoryName": ""
},
{
"title": "Yggdrasil VR",
"description": "Yggdrasil VR is an ambitious curated modlist that seeks to provide a balanced yet challenging experience while not forgoing visuals, performance and most importantly gameplay options, so you can really feel like whatever type of character you want to play, be that a knight, nomad, eldritch lich, or more!",
"author": "Crit",
"maintainers": [
"crithion",
"github/CritLoren"
],
"game": "skyrimvr",
"official": true,
"tags": [
"Official",
"EnaiRim",
"Legacy of the Dragonborn",
"Realism",
"RP",
"Safe For Work",
"VR"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/CritLoren/Yggdrasil-VR/main/assets/banner.webp",
"readme": "https://github.com/CritLoren/Yggdrasil-VR",
"download": "https://authored-files.wabbajack.org/Yggdrasil VR.wabbajack_dccc1e87-0b87-4c54-a87a-c9fdae9449a2",
"machineURL": "yggdrasil_vr",
"discordURL": "https://discord.gg/CKrfyPmZ8H"
},
"download_metadata": {
"Hash": "Ec3x9qshjeI=",
"Size": 469810372,
"NumberOfArchives": 1280,
"SizeOfArchives": 116450045313,
"NumberOfInstalledFiles": 291031,
"SizeOfInstalledFiles": 160555347654
},
"version": "2.1.1",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2023-11-10T23:45:06.2397962Z",
"repositoryName": ""
},
{
"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,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"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_d0a1b6bb-3193-4342-a58f-42ac378e7d3d",
"machineURL": "degeneratedungeon",
"discordURL": ""
},
"download_metadata": {
"Hash": "EI+DLrF9iXA=",
"Size": 410518471,
"NumberOfArchives": 246,
"SizeOfArchives": 9031080691,
"NumberOfInstalledFiles": 26595,
"SizeOfInstalledFiles": 6136439287
},
"version": "3.6",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "0001-01-01T00:00:00",
"repositoryName": ""
},
{
"title": "Magnum Opus",
"description": "An incredibly clean and stable list featuring tons of new quests \u0026 locations, vastly expanded settlement systems, a massively interconnected collection of NPC overhauls, and of course hundreds of new outfits, armors, \u0026 weapons.",
"author": "Lively",
"maintainers": [
"github/LivelyDismay",
"lively"
],
"game": "fallout4",
"official": false,
"tags": [
"Official",
"NeverNude",
"Sim Settlements"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/LivelyDismay/Learn-To-Mod/main/wabbajack-stuff/neat.webp",
"readme": "https://raw.githubusercontent.com/LivelyDismay/magnum-opus/main/README.md",
"download": "https://authored-files.wabbajack.org/Magnum Opus.wabbajack_6d9fb1a7-c2b4-4a6c-b8aa-040b0dde587e",
"machineURL": "magnum_opus",
"discordURL": "https://discord.gg/yABEjwB"
},
"download_metadata": {
"Hash": "AZq5cziae5k=",
"Size": 1550702757,
"NumberOfArchives": 968,
"SizeOfArchives": 112438105285,
"NumberOfInstalledFiles": 134524,
"SizeOfInstalledFiles": 186152843712
},
"version": "7.0.20",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-07-22T01:29:43.532349Z",
"repositoryName": ""
},
{
"title": "Aldrnari",
"description": "Folk/Nordic/Souls Games inspired, visually focused 2200\u002B Modlist centered around Yggdrasil Music and Sound FX Overhaul aswell as Celtic Music. Uses the EnaiRim overhauls as well as a ADXP | MCO based combat system for a refreshing and challenging take on Skyrim. Hundreds of high quality assets are handplaced to remove the need of LOTD. (6GB\u002B of VRAM Required, check readme.)",
"author": "Sovn",
"maintainers": [
"sovn",
"github/SovnSkyrim"
],
"game": "skyrimspecialedition",
"official": true,
"tags": [
"Official",
"EnaiRim",
"Ordinator",
"Mihail/Custom Enemies",
"Custom Content"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/SovnSkyrim/Aldrnari/main/Banner-Top-Down.webp",
"readme": "https://raw.githubusercontent.com/SovnSkyrim/Aldrnari/main/README.md",
"download": "https://authored-files.wabbajack.org/Aldrnari.wabbajack_e76227e8-f701-4976-a61f-3c9f32743600",
"machineURL": "aldrnari",
"discordURL": "https://discord.gg/FAfPb9T"
},
"download_metadata": {
"Hash": "5GsnizsoY1U=",
"Size": 1867767565,
"NumberOfArchives": 2668,
"SizeOfArchives": 216673705610,
"NumberOfInstalledFiles": 424261,
"SizeOfInstalledFiles": 434071685379
},
"version": "2.2.5",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-03-23T11:38:13.3523164Z",
"repositoryName": ""
},
{
"title": "Arkay\u0027s Commandment",
"description": "A tightly balanced, immersive experience focused on delivering intense and rewarding gameplay. Experience Skyrim as the wonderful wilderness it truly is.",
"author": "fornication",
"maintainers": [
"fornication",
"github/Fornication"
],
"game": "skyrimspecialedition",
"official": true,
"tags": [
"Official",
"NeverNude",
"Requiem"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/Fornication/Arkays-Commandment/main/AClogo.webp",
"readme": "https://raw.githubusercontent.com/Fornication/Arkays-Commandment/main/README.md",
"download": "https://authored-files.wabbajack.org/Arkay\u0027s Commandment.wabbajack_74b0b6a0-8ac5-4cc0-a28a-dfcd534191ba",
"machineURL": "arkayscommandment",
"discordURL": "https://discord.gg/JycmyqzZz7"
},
"download_metadata": {
"Hash": "HCBx4kp8LWU=",
"Size": 692128244,
"NumberOfArchives": 1872,
"SizeOfArchives": 92003736336,
"NumberOfInstalledFiles": 188148,
"SizeOfInstalledFiles": 133007975877
},
"version": "4.1.1",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-01-27T21:32:28.6850727Z",
"repositoryName": ""
},
{
"title": "Slidikins\u0027 Strenuous Skyrim",
"description": "Originally an extension of The Phoenix Flavour. As implied by its name, this modlist offers a more challenging approach featuring Survival Mode, a reduced HUD, and a harsher economy among other changes intended to better engage you, the player.",
"author": "Slidikins",
"maintainers": [
"github/Amigoliath",
"slidikins"
],
"game": "skyrimspecialedition",
"official": true,
"tags": [
"Official",
"Anniversary Edition",
"SimonRim",
"Survival",
"NeverNude"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/Amigoliath/Slidikins-Strenuous-Skyrim/main/sss.webp",
"readme": "https://raw.githubusercontent.com/Amigoliath/Slidikins-Strenuous-Skyrim/main/README.md",
"download": "https://authored-files.wabbajack.org/Slidikins Strenuous Skyrim.wabbajack_adfe4d1b-7d50-4ac1-a842-5c735ba12ef7",
"machineURL": "sss",
"discordURL": "https://discord.gg/xRrHRsb5e9"
},
"download_metadata": {
"Hash": "0wYmEmKUBhM=",
"Size": 405429134,
"NumberOfArchives": 1623,
"SizeOfArchives": 91455797489,
"NumberOfInstalledFiles": 173633,
"SizeOfInstalledFiles": 127057974206
},
"version": "5.0.0",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-07-09T15:16:20.0334145Z",
"repositoryName": ""
},
{
"title": "The Bustling Valley",
"description": "The Bustling Valley is a curated modlist designed for a bigger Stardew Valley experience. It includes new villages, new NPCs, and of course a farming expansion.",
"author": "Yagisan",
"maintainers": [
"github/Yagisan",
"yagisan"
],
"game": "stardewvalley",
"official": true,
"tags": [
"Official"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/Yagisan/The-Bustling-Valley/main/assets/images/TBV_Title.webp",
"readme": "https://raw.githubusercontent.com/Yagisan/The-Bustling-Valley/main/README.md",
"download": "https://authored-files.wabbajack.org/The Bustling Valley.wabbajack_cdb63684-9d54-46fc-9aa3-206e591a6bb4",
"machineURL": "tbv",
"discordURL": "https://discord.gg/rB5RFgHhUD"
},
"download_metadata": {
"Hash": "7lmZs43aSBg=",
"Size": 16453020,
"NumberOfArchives": 188,
"SizeOfArchives": 557719746,
"NumberOfInstalledFiles": 29244,
"SizeOfInstalledFiles": 863187217
},
"version": "0.7.6",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-07-28T08:16:28.5208928Z",
"repositoryName": ""
},
{
"title": "Life in the Ruins",
"description": "A massively overhauled and finely tuned Fallout 4 experience. Designed to rebalance the game so that the challenge comes primarily from scarcity of resources, while staying true to the vanilla asthetic. With options for a more vanilla\u002B style playthrough, as well as an even more challenging survival experience.",
"author": "WhiskyTangoFox",
"maintainers": [
"whisky-tango-fox",
"github/WhiskyTangoFawks"
],
"game": "fallout4",
"official": true,
"tags": [
"Official",
"NeverNude",
"PC",
"Steam Deck",
"Lunar Fallout Overhaul",
"Survival"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": false,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/WhiskyTangoFawks/LunarFalloutPlus/main/LifeInTheRuins.png",
"readme": "https://raw.githubusercontent.com/WhiskyTangoFawks/LunarFalloutPlus/main/README.md",
"download": "https://authored-files.wabbajack.org/Life in the Ruins.wabbajack_60b90c98-fcc2-48c0-914e-45ee7c4b5326",
"machineURL": "life_in_the_ruins",
"discordURL": "https://discord.gg/HUNWVBjZPg"
},
"download_metadata": {
"Hash": "cU1ps/CRsUg=",
"Size": 310961567,
"NumberOfArchives": 1055,
"SizeOfArchives": 125275004411,
"NumberOfInstalledFiles": 107350,
"SizeOfInstalledFiles": 144721933137
},
"version": "6.3.0.2",
"dateCreated": "1970-01-01T00:00:00Z",
"dateUpdated": "2024-07-16T18:58:08.2335241Z",
"repositoryName": ""
},
{
"title": "Everfall",
"description": "A lightly modified experience for Dragon\u0027s Dogma: Dark Arisen.",
"author": "Dace617",
"maintainers": [
"github/Dace617"
],
"game": "dragonsdogma",
"official": true,
"tags": [
"Official",
"Lite",
"Vanilla Plus"
],
"nsfw": false,
"utility_list": false,
"image_contains_title": true,
"DisplayVersionOnlyInInstallerView": false,
"force_down": false,
"links": {
"image": "https://raw.githubusercontent.com/Dace617/Everfall/main/Everfall.webp",
"readme": "https://github.com/Dace617/Everfall/wiki/Readme",
"download": "https://authored-files.wabbajack.org/Everfall.wabbajack_9e1b5426-6cc3-4966-948c-410156f181c4",
"machineURL": "everfall",
"discordURL": "https://discord.gg/NdmGpGzqg8"
},
"download_metadata": {
"Hash": "/HjmneYiQfw=",
"Size": 260106631,
"NumberOfArchives": 1552,
"SizeOfArchives": 10724612995,
"NumberOfInstalledFiles": 3576,
"SizeOfInstalledFiles": 11313343063
},