-
Notifications
You must be signed in to change notification settings - Fork 25
/
internal_manifest.json
1668 lines (1575 loc) · 45.5 KB
/
internal_manifest.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
[
// Please keep sorted by Name.
{
"Name": "AddedFeats",
"Author": "Telyl",
"Id": {
"Id": "AddedFeats",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Telyl",
"RepoName": "AddedFeats"
}
},
"About": "Adds additional features for animal companions and PCs.",
"HomepageUrl": "https://github.com/Telyl/AddedFeats",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Additional Hotkeys",
"Author": "apocc",
"Id": {
"Id": "ApoccHotkeys",
"Type": "UMM"
},
"Service": {
"Nexus": {
"ModID": "68"
}
},
"About": "Adds the option to assign hotkeys for each Weapon Set, Stealth, Quick Slot items, and more.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/68",
"Tags": [ "UserInterface", "Utilities" ]
},
{
"Name": "Allow Modded Achievements",
"Author": "Xenofell",
"Id": {
"Id": "AllowModdedAchievements",
"Type": "UMM"
},
"Service": {
"Nexus": {
"ModID": "119",
"DownloadMirror": "https://github.com/Pathfinder-WOTR-Modding-Community/WrathModsMirror"
}
},
"About": "Enables achievements when mods are enabled.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/119",
"Tags": [ "Miscellaneous", "Utilities" ]
},
{
"Name": "Alternate Racial Traits",
"Author": "Microsoftenator",
"Id": {
"Id": "AlternateRacialTraits",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "microsoftenator2022",
"RepoName": "AlternateRacialTraits"
}
},
"About": "Some alternate racial features for Humans and some other races",
"HomepageUrl": "https://github.com/microsoftenator2022/AlternateRacialTraits",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Automatic Bonus Progression",
"Author": "WittleWolfie",
"Id": {
"Id": "AutomaticBonusProgression",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "WittleWolfie",
"RepoName": "AutomaticBonusProgression"
}
},
"About": "An item rebalance mod based on Pathfinder's Automatic Bonus Progression ruleset.",
"HomepageUrl": "https://github.com/WittleWolfie/AutomaticBonusProgression",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Auto Mount",
"Author": "zepheon",
"Id": {
"Id": "AutoMount",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "zephe0n",
"RepoName": "AutoMount"
}
},
"About": "Mount all your animal companions automatically with a customizable keybind.",
"HomepageUrl": "https://github.com/zephe0n/AutoMount",
"Tags": [ "UserInterface" ]
},
{
"Name": "Baphomet Rides Deskari",
"Author": "Nenio",
"Id": {
"Id": "NenioMod",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "YLMstring",
"RepoName": "NenioMod"
}
},
"About": "They take Nenio's advice.",
"HomepageUrl": "https://github.com/YLMstring/NenioMod",
"Tags": [ "Gameplay" ]
},
{
"Name": "Battle Scion Extra Rage Powers Fix",
"Author": "DanScallion",
"Id": {
"Id": "WOTR_BattleScionExtraRagePowers",
"Type": "Owlcat"
},
"Service": {
"Nexus": {
"ModID": "574"
}
},
"About": "For some reason Battle Scion cannot take Extra Rage Powers feat, which he should as he does have rage powers. This mod enables you to take it if you have battle prowess which is battle scions rage power ability.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/574/",
"Tags": [ "Bugfix" ]
},
{
"Name": "BOAT BOAT BOAT",
"Author": "Balkoth",
"Id": {
"Id": "WOTR_BOAT_BOAT_BOAT",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Balkoth-dev",
"RepoName": "WOTR_BOAT_BOAT_BOAT"
}
},
"About": "BOAT BOAT BOAT",
"HomepageUrl": "https://github.com/Balkoth-dev/WOTR_BOAT_BOAT_BOAT",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Bubble Buffs",
"Author": "Bubbles",
"Id": {
"Id": "BubbleBuffs",
"Type": "UMM"
},
"Service": {
"Nexus": {
"ModID": "195",
"DownloadMirror": "https://github.com/Pathfinder-WOTR-Modding-Community/WrathModsMirror"
}
},
"About": "Like auto/buff/bot but simpler and easier to use. Imagine if setting up an auto buffing mod was easy enough you don't need a PhD, and integrated enough you don't need to open a UMM gui to configure it?",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/195",
"Tags": [ "Gameplay", "UserInterface" ]
},
{
"Name": "Bubble Tweaks",
"Author": "Bubbles",
"Id": {
"Id": "BubbleTweaks",
"Type": "UMM"
},
"Service": {
"Nexus": {
"ModID": "177"
}
},
"About": "Non-gameplay tweaks and enhancements to improve quality of life features. Fits into the base game without looking like a mod.",
"HomepageUrl": "https://github.com/factubsio/BubbleTweaks",
"Tags": [ "Gameplay", "UserInterface" ]
},
{
"Name": "Buffbot",
"Author": "Balkoth",
"Id": {
"Id": "WrathBuffBot",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Balkoth-dev",
"RepoName": "BuffBot-Wrath"
}
},
"About": "Auto buffing solution that uses the UMM menu instead of an in-game UI.",
"HomepageUrl": "https://github.com/Balkoth-dev/BuffBot-Wrath",
"Tags": [ "Gameplay", "Miscellaneous" ]
},
{
"Name": "Centipede Companions Corrupt",
"Author": "Sly",
"Id": {
"Id": "CentipedeCorruptor",
"Type": "Owlcat"
},
"Service": {
"GitHub": {
"Owner": "SlyDevil",
"RepoName": "Centipede-Corruptor"
}
},
"About": "Owlmod patch to give Centipede animal companions Mythic Corruptor",
"HomepageUrl": "https://github.com/SlyDevil/Centipede-Corruptor",
"Tags": [ "Gameplay", "Homebrew" ]
},
{
"Name": "Champion Feats Anew",
"Author": "lynnpye",
"Id": {
"Id": "ChampionFeatsAnew",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "lynnpye",
"RepoName": "Champion-Feats"
}
},
"About": "Adds a number of configurable, scaling powerful feats to build your perfect commander.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/384",
"Tags": [ "Gameplay" ]
},
{
"Name": "Character Options+",
"Author": "WittleWolfie",
"Id": {
"Id": "CharacterOptionsPlus",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "WittleWolfie",
"RepoName": "CharacterOptionsPlus"
}
},
"About": "Adds character build options from the tabletop ruleset.",
"HomepageUrl": "https://github.com/WittleWolfie/CharacterOptionsPlus",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Combat Relief 2024",
"Author": "AlterAsc",
"Id": {
"Id": "AlterAsc.CombatRelief",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "alterasc",
"RepoName": "CombatRelief"
}
},
"About": "This mod suppresses random encounters and automatically wins crusade battles. Either can be disabled in the UMM menu.",
"HomepageUrl": "https://github.com/alterasc/CombatRelief",
"Tags": [ "Gameplay" ]
},
{
"Name": "DarkCodex",
"Author": "Fumihiko",
"Id": {
"Id": "DarkCodex",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Truinto",
"RepoName": "DarkCodex"
}
},
"About": "New feats and abilities for various classes with a focus on Kineticist and Mythic abilities.",
"HomepageUrl": "https://github.com/Truinto/DarkCodex",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Deceiver Buff",
"Author": "CascadingDragon",
"Id": {
"Id": "deceiverbuff",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "CasDragon",
"RepoName": "deceiverbuff"
}
},
"About": "Extends spellbook progression for Deceiver, allows spellbook merging with Deceiver, and adds new spells to Deceiver's spell list",
"HomepageUrl": "https://github.com/CasDragon/deceiverbuff",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Demonology",
"Author": "Big Daddy Shmee",
"Id": {
"Id": "Demonology",
"Type": "UMM"
},
"Service": {
"Nexus": {
"ModID": "637"
}
},
"About": "Allows you to take feats from level 1 that gives you the ability to summon demons, that grows in power as you level, giving you access quickly to very powerful summons for your level.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/637",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Dextrous Carnage",
"Author": "Madlampy",
"Id": {
"Id": "DexCarn",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Evilvonbek",
"RepoName": "DexCarn"
}
},
"About": "Simple Rework of Deadly Carnage to allow Dex based Characters to have access to the mechanic, with altered name and description for Flavour.",
"HomepageUrl": "https://github.com/Evilvonbek/DexCarn",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "DragonFixes",
"Author": "CascadingDragon",
"Id": {
"Id": "DragonFixes",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "CasDragon",
"RepoName": "DragonFixes"
}
},
"About": "DragonFixes is a mod for Pathfinder: Wrath of the Righteous that fixes several bugs",
"HomepageUrl": "https://github.com/CasDragon/DragonFixes",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Earlier Mythic level ups",
"Author": "AlterAsc",
"Id": {
"Id": "EarlierMythicLevelUps",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "AlterAsc",
"RepoName": "EarlierMythicLevelUps"
}
},
"About": "Gives some mythic level ups earlier than normal",
"HomepageUrl": "https://github.com/alterasc/EarlierMythicLevelUps",
"Tags": [ "Gameplay" ]
},
{
"Name": "Enduring Reworks",
"Author": "AlterAsc",
"Id": {
"Id": "EnduringRework",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "alterasc",
"RepoName": "EnduringRework"
}
},
"About": "Changes Enduring spells and Greater Enduring Spells mythic abilities",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/497",
"Tags": [ "Gameplay" ]
},
{
"Name": "Expanded Content",
"Author": "Kadyn & Bittercranberry",
"Id": {
"Id": "ExpandedContent",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "ka-dyn",
"RepoName": "ExpandedContent"
}
},
"About": "This mod seeks to expand and add upon the content in the game. New classes, Religions, mechanics, backgrounds, traits and more. All features are toggleable in UMM UI",
"HomepageUrl": "https://github.com/ka-dyn/ExpandedContent",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Expanded Epilogue",
"Author": "Ranadiel",
"Id": {
"Id": "RanEpilogue",
"Type": "UMM"
},
"Service": {
"Nexus": {
"ModID": "545"
}
},
"About": "A mod that expands the epilogue to provide endings to new topics and to increase the reactivity to some existing topics.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/545",
"Tags": [ "Content", "Gameplay"]
},
{
"Name": "Finessable Sabers",
"Author": "Stoyan",
"Id": {
"Id": "FinessableSabers",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "StoyanKucarov",
"RepoName": "FinessableSabers"
}
},
"About": "Sabers are classed as both light and finesse weapons, not strictly tabletop as they should be light only for TWF purposes but eh i choose to consider it an owlcat oversight, adds finesse training for sabers to rogues",
"HomepageUrl": "https://github.com/StoyanKucarov/FinessableSabers",
"Tags": [ "Gameplay" ]
},
{
"Name": "Finnean Tweaks",
"Author": "Barley",
"Id": {
"Id": "FinneanTweaks",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "BarleyFlour",
"RepoName": "FinneanTweaks"
}
},
"About": "Tweaks finnean's progression so that he scales according to chapter instead of quests. Allows you to choose enchants, a lower tier one from the start of chapter 2 & a higher tier one at the start of Chapter 4.",
"HomepageUrl": "https://github.com/BarleyFlour/FinneanTweaks",
"Tags": [ "Gameplay" ]
},
{
"Name": "Full Bore Bismuth",
"Author": "Badger",
"Id": {
"Id": "FullBoreBismuth",
"Type": "Owlcat"
},
"Service": {
"Nexus": {
"ModID": "536"
}
},
"About": "Makes Bismuth a tad more useful by rearranging what feats he learns and making him not take the -4 level penalty.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/536",
"Tags": [ "Gameplay" ]
},
{
"Name": "Gracious Friendships",
"Author": "Gvenewour & Ameistris",
"Id": {
"Id": "GraciousFriendships",
"Type": "Owlcat"
},
"Service": {
"Nexus": {
"ModID": "430"
}
},
"About": "'Gracious Friendships' is a lore-friendly narrative mod that adds new dialogue options for companions and NPCs. It expands character interactions throughout the game and fixes some issues with romance flags.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/430",
"Tags": [ "Content", "Gameplay"]
},
{
"Name": "Great Radiance",
"Author": "BurlyWurly",
"About": "Changes Radiance from a Longsword into a Greatsword. There are nearly thirty alternate versions including Starknife, Bastard Sword, Falcata, Longspear, and Dueling Sword. Don't see your MC's preferred weapon? Just ask.",
"Id": {
"Id": "GreatRadiance",
"Type": "Owlcat"
},
"Service": {
"Nexus": {
"ModID": "143"
}
},
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/143",
"Tags": [ "Content", "Gameplay"]
},
{
"Name": "Homebrew Archetypes",
"Author": "Sigurd",
"About": "Adds archetypes/classes/feats from the Table Top. If an archetype doesn't align with it's TT version some homebrew modifications are made to help it fit in the game. Now includes the Ninja mod",
"Id": {
"Id": "HomebrewArchetypes",
"Type": "Owlcat"
},
"Service": {
"Nexus": {
"ModID": 279
}
},
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/279",
"Tags": [ "Content", "Gameplay"]
},
{
"Name": "Kinetic Archetypes",
"Author": "NosVladimir",
"Id": {
"Id": "KineticArchetypes",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "NosVladimir",
"RepoName": "KineticArchetypes"
}
},
"About": "A mod for Pathfinder: Wrath of the Righteous, focused on making more kineticist archetypes and other class archetypes that use kinetic blasts.",
"HomepageUrl": "https://github.com/NosVladimir/KineticArchetypes",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Kineticist Elements Expanded",
"Author": "SpenceZilla",
"Id": {
"Id": "KineticistElementsExpanded",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "SpencerMycek",
"RepoName": "KineticistExpandedElements"
}
},
"About": "Adds expanded element choices for the Kineticist class as well as blast types, infusions, wild talents, and more.",
"HomepageUrl": "https://github.com/SpencerMycek/KineticistExpandedElements",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Level 1 Companions",
"Author": "CascadingDragon",
"Id": {
"Id": "lvl1companions",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "CasDragon",
"RepoName": "lvl1companions"
}
},
"About": "Sets all companions recruit levels to 1 (if they weren't already). This should allow for better compatibility with Barley's Respec mod, and also Toybox gestalt.",
"HomepageUrl": "https://github.com/CasDragon/lvl1companions",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Levelable Aivu",
"Author": "pheonix99",
"Id": {
"Id": "LevelableAivu",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "pheonix99",
"RepoName": "LevelableAivu"
}
},
"About": "A mod to make Aivu's levelups controllable.",
"HomepageUrl": "https://github.com/pheonix99/LevelableAivu",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Lich Decree Reductions",
"Author": "Sly",
"Id": {
"Id": "LichDecreeReductions",
"Type": "Owlcat"
},
"Service": {
"GitHub": {
"Owner": "SlyDevil",
"RepoName": "LichDecreeReductions"
}
},
"About": "Owlmod patches to reduce Act 3 Lich decree times.",
"HomepageUrl": "https://github.com/SlyDevil/LichDecreeReductions",
"Tags": [ "Gameplay" ]
},
{
"Name": "Literate Companions",
"Author": "AlterAsc",
"Id": {
"Id": "LiterateCompanions",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "alterasc",
"RepoName": "LiterateCompanions"
}
},
"About": "Converts books that grant permanent bonuses to main character into single use usable items that can be used by any member of the party.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/699",
"Tags": [ "Gameplay" ]
},
{
"Name": "Madison's Metagaming",
"Author": "ultramaddie",
"Id": {
"Id": "MadisonsMetagaming",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "madisoncfallin",
"RepoName": "MadisonsMetagaming"
}
},
"About": "Small content mod for WOTR.",
"HomepageUrl": "https://github.com/madisoncfallin/MadisonsMetagaming",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Making Friends (Summoner Mod)",
"Author": "Balkoth",
"Id": {
"Id": "WOTR_MAKING_FRIENDS",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Balkoth-dev",
"RepoName": "WOTR_MAKING_FRIENDS"
}
},
"About": "Adds the Summoner class from Pathfinder to the game",
"HomepageUrl": "https://github.com/Balkoth-dev/WOTR_MAKING_FRIENDS",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Max Squads and Master of Maneuver Adjustments",
"Author": "Sly",
"Id": {
"Id": "MaxSquadsAdjustment",
"Type": "Owlcat"
},
"Service": {
"GitHub": {
"Owner": "SlyDevil",
"RepoName": "MaxSquadsAdjustment"
}
},
"About": "Owlmod patch to allow the player to reach army sizes of 14 squads and field all of them",
"HomepageUrl": "https://github.com/SlyDevil/MaxSquadsAdjustment",
"Tags": [ "Gameplay", "Homebrew" ]
},
{
"Name": "Mewsifer Console",
"Author": "WittleWolfie & Bubbles",
"Id": {
"Id": "MewsiferConsole.Mod",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Pathfinder-WOTR-Modding-Community",
"RepoName": "MewsiferConsole",
"ReleaseFilter": "MewsiferConsole\\.Mod"
}
},
"About": "A tool for debugging problems with WotR, especially when playing with mods.",
"HomepageUrl": "https://github.com/Pathfinder-WOTR-Modding-Community/MewsiferConsole",
"Tags": [ "Utilities" ]
},
{
"Name": "Mewsifer Console Menu",
"Author": "WittleWolfie",
"Id": {
"Id": "MewsiferConsole.Menu",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Pathfinder-WOTR-Modding-Community",
"RepoName": "MewsiferConsole",
"ReleaseFilter": "MewsiferConsole\\.Menu"
}
},
"About": "Adds a mod menu entry for Mewsifer Console with a cute illustration and a button you can use to generate a bug report to share with mod creators when reporting issues.",
"HomepageUrl": "https://github.com/Pathfinder-WOTR-Modding-Community/MewsiferConsole",
"Tags": [ "Utilities" ]
},
{
"Name": "Microscopic Content Expansion",
"Author": "AlterAsc",
"Id": {
"Id": "MicroscopicContentExpansion",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "alterasc",
"RepoName": "MicroscopicContentExpansion"
}
},
"About": "Adds Antipaladin class, some feats and spells. And some optional homebrew changes.",
"HomepageUrl": "https://github.com/alterasc/MicroscopicContentExpansion",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Misc Tweaks and Fixes",
"Author": "Microsoftenator",
"Id": {
"Id": "MiscTweaksAndFixes",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "microsoftenator2022",
"RepoName": "MiscTweaksAndFixes2"
}
},
"About": "Small(ish) tweaks and fixes for things that bothered me.",
"HomepageUrl": "https://github.com/microsoftenator2022/MiscTweaksAndFixes2",
"Tags": [ "Miscellaneous", "Gameplay" ]
},
{
"Name": "Mod Menu",
"Author": "WittleWolfie/Kurufinve",
"Id": {
"Id": "ModMenu",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "CasDragon",
"RepoName": "ModMenu"
}
},
"About": "Adds a new page to the game options for mods. This allows mods to easily use the native settings UI, no more UMM window!",
"HomepageUrl": "https://github.com/CasDragon/ModMenu",
"Tags": [ "UserInterface", "Utilities" ]
},
{
"Name": "More Font Sizes",
"Author": "cookEsandcream",
"Id": {
"Id": "MoreFontSizes",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "cookEsandcream",
"RepoName": "MoreFontSizes"
}
},
"About": "Adjusts the font size slider to allow a much wider range of values for fun or accessibility.",
"HomepageUrl": "https://github.com/cookEsandcream/MoreFontSizes/",
"Tags": [ "UserInterface", "Utilities" ]
},
{
"Name": "More Party Slots",
"Author": "ADDB",
"Id": {
"Id": "MorePartySlots",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "xADDBx",
"RepoName": "MorePartySlots"
}
},
"About": "Increase the amount of party slots (this does not affect visual slots; it will only allow adding more members to the party).",
"HomepageUrl": "https://github.com/xADDBx/MorePartySlots/",
"Tags": [ "UserInterface", "Utilities" ]
},
{
"Name": "MorePartyViewSlots",
"Author": "Bubbles and ADDB",
"Id": {
"Id": "MorePartyViewSlots",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "xADDBx",
"RepoName": "MorePartyViewSlots"
}
},
"About": "Increases the number of Party View Slots from 6 to 8.",
"HomepageUrl": "https://github.com/xADDBx/MorePartyViewSlots/",
"Tags": [ "UserInterface", "Utilities" ]
},
{
"Name": "Morvarch's Playstyle Expansions",
"Author": "Morvarch Princess",
"Id": {
"Id": "MorvarchsPlaystyleExpansions",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "MorvarchPrincess",
"RepoName": "MorvarchsPlaystyleExpansions"
}
},
"About": "A mod focused on adding new ways to build characters.",
"HomepageUrl": "https://github.com/MorvarchPrincess/MorvarchsPlaystyleExpansions",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Multiple Archetypes",
"Author": "Vek17",
"Id": {
"Id": "MultipleArchetypes",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Vek17",
"RepoName": "WrathMods-MultipleArchetypes"
}
},
"About": "Allows archetype stacking using tabletop's standard rules.",
"HomepageUrl": "https://github.com/Vek17/WrathMods-MultipleArchetypes",
"Tags": [ "Gameplay" ]
},
{
"Name": "Mythic Arcanist",
"Author": "Llisandur",
"Id": {
"Id": "MythicArcanist",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Llisandur",
"RepoName": "MythicArcanist"
}
},
"About": "This mod adds an new homebrew mythic ability and several 3rd Part Publisher spells. Once a game is saved with this mod is enabled it will require this mod to be present to load so do not remove or disable the mod once enabled. You can however disable any feature of the mod at will without breaking saves.",
"HomepageUrl": "https://github.com/Llisandur/MythicArcanist",
"Tags": [ "Content", "Gameplay" ]
},
{
"Name": "Mythic Magic Mayhem",
"Author": "string, Bakaryu",
"Id": {
"Id": "MythicMagicMayhem",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "YLMstring",
"RepoName": "Mythic-Magic-Mayhem"
}
},
"About": "Introduce a better mythic magic system, along with other tweaks.",
"HomepageUrl": "https://github.com/YLMstring/Mythic-Magic-Mayhem",
"Tags": [ "Gameplay" ]
},
{
"Name": "Mythic Spellbook Tweaks",
"Author": "Vek17",
"Id": {
"Id": "MythicSpellbookTweaks",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "Vek17",
"RepoName": "WrathMods-MythicSpellbookTweaks"
}
},
"About": "Mythic Class spell books currently scale on mythic rank. This mod adds the ability to change that scaling in a variety of ways.",
"HomepageUrl": "https://github.com/Vek17/WrathMods-MythicSpellbookTweaks",
"Tags": [ "Gameplay" ]
},
{
"Name": "Mythic Path Power Swapper",
"Author": "AlterAsc",
"Id": {
"Id": "MythicPathPowerSwapper",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "alterasc",
"RepoName": "MythicPathPowerSwapper"
}
},
"About": "Allows changing mythic powers to powers from another path, or playing without mythic powers at all.",
"HomepageUrl": "https://github.com/alterasc/MythicPathPowerSwapper",
"Tags": [ "Content" ]
},
{
"Name": "Mythic Spell Flexibility",
"Author": "AlterAsc",
"Id": {
"Id": "MythicSpellFlexibility",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "alterasc",
"RepoName": "MythicSpellFlexibility"
}
},
"About": "Allows casting special mythic spells from your normal spellbooks.",
"HomepageUrl": "https://www.nexusmods.com/pathfinderwrathoftherighteous/mods/601",
"Tags": [ "Content" ]
},
{
"Name": "Nine Swords",
"Author": "V0idhead",
"Id": {
"Id": "VoidHeadWOTRNineSwords",
"Type": "UMM"
},
"Service": {
"GitHub": {
"Owner": "V0idhead",
"RepoName": "WOTRNineSwords"
}
},
"About": "An implementation of the classes found in Tome of Battle: The Book of Nine Swords.",