forked from Alexofp/BDCCMods
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathallmods.json
More file actions
2020 lines (2020 loc) · 182 KB
/
Copy pathallmods.json
File metadata and controls
2020 lines (2020 loc) · 182 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"mods": [
{
"name": "Holiday Sweaters",
"description": "Killers, whores and thieves.. MERRY CHRISTMAS! this mod adds holiday sweaters.",
"author": "Fantos (Code), Max-Maxou (Graphics)",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Inmate_Holiday_Sweaters.zip"
},
{
"name": "Contraband Clothes",
"description": "Add a variety of clothes and accessories. should fit the game style (PS: Updated for the new sex engine)",
"author": "Fantos (Code), Max-Maxou (Graphics)",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Contraband_Clothes.zip"
},
{
"name": "Contraband Clothes 2 (Electric Boogaloo)",
"description": "More simple piece of clothes. (PS: Updated for the sex engine)",
"author": "Fantos (Code), Max-Maxou (Graphics)",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Contraband_Clothes_2.zip"
},
{
"name": "Thigh Highs",
"description": "Keep those legs warm sluts (adapt to every leg in the base game)",
"author": "Fantos (Code), Max-Maxou (Graphics)",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ThighHighs.zip"
},
{
"name": "Dildo!",
"description": "Cheat Item. Adds a 100 cred dildo to the general vendomat for purchase to knock down any pesky dom that need to learn how to sub. ",
"author": "Sority Arikua",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Dildo.zip"
},
{
"name": "Horny Bat",
"description": "Adds a new hidden bat to the game for people to find and use. The bat can be used on self or opponent to remove lust and add some pain.",
"author": "Sority Arikua",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Horny_Bat_v1_.20.zip"
},
{
"name": "Elf Ears",
"description": "Elf ear for human and demon species.",
"author": "Fantos (Code), Max-Maxou (Graphics)",
"modversion": "1.2",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ElfEar.zip"
},
{
"name": "Harrow",
"description": "This is, for now, an encounter that can occur if the player is in the stocks, with a slightly modified second encounter. Hoping to make more of these in the future!",
"author": "Exceeder",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HarrowMod.zip"
},
{
"name": "Chet Encounter",
"description": "A prototype with a dom cellmate named Chet involving permanent chastity. The cage is removed after the module's story is complete.\nChangelog:\n* more Chet events added\n* Chet's cage is no longer sold by the announcer\n* Chet's cage should be no longer placeable by other npcs\n* Chet events should no longer happen as frequently",
"author": "Poofy",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ChetMod0.1.zip"
},
{
"name": "n76-ultrapack",
"description": "Add and replaces characters images, now every static (not procedural) character in the game has its own avatar. Also some errors have been fixed in this package, thx to Failas. Preview without spoilers, I'll add link to the preview with names and descriptions later.\nInstallation: Download mod -> Launch with mods -> Options -> Check if n76 above Rahi in the Imagepack section (if not move it up by the arrow) -> Play\n[url=https://media.discordapp.net/attachments/1021686418512289792/1109492849667485806/preview.png]Click for Preview[/url]",
"author": "newtown76",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/n76-ultrapack.zip"
},
{
"name": "Eevee Species",
"description": "Now play a fluff and cute creature! Include a face with and without eye and a second body with fluff (use it at your own risk).\nDisclaimer : This is a test version a better version will be released later. Thank Fantos for the big help!\n[url=https://media.discordapp.net/attachments/1021686418512289792/1115776532846223520/Capture_decran_2023-06-07_005304.png]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/EeveeSpecieVer0.1.zip"
},
{
"name": "Umbreon Species",
"description": "Play as you favorite cute and dark anthro creature! Dark as a shadow but still very cute! Includes two face types, with and without eyes.\nMod update : Corrected a bug where the head without the eyes didn't show up in the creation menu.\n[url=https://media.discordapp.net/attachments/1021686418512289792/1116135816608088104/umbreonmale.png]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.3",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/UmbreonSpeciesVer0.3.zip"
},
{
"name": "Jolteon Species",
"description": "Now play as your favorite yellow fluffball!\nInclude two faces types with and without eyes, and two body with and without fur.\n[url=https://media.discordapp.net/attachments/1021686418512289792/1116522067769167933/jolteonmale.png]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/JolteonSpeciesVer0.1.zip"
},
{
"name": "Puro Species",
"description": "Play now as the sticky boy (or girl if you want) in the prison!\nInclude two faces types with eyes and without eyes.\nDISCLAIMER : All right of the design go to Dragonsnow, I didn't created this character or his design.\n[url=https://media.discordapp.net/attachments/1021686418512289792/1119429310189682738/PuroMale.png]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.2",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/PuroSpeciesVer0.2.zip"
},
{
"name": "Renamon Species",
"description": "Play now as your favorite yellow creature!\nIncludes two faces, with and without eyes, a normal body and a fur body with marking.\n[url=https://media.discordapp.net/attachments/1021686418512289792/1119766031779496056/Renamonmale.png]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/RenamonSpeciesVer0.1.zip"
},
{
"name": "Ori Species",
"description": "Play now as your white and bright creature!\nInclude two faces, with and without eyes.\n[url=https://media.discordapp.net/attachments/1021686418512289792/1120137536577208421/OriMale.png]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/OriSpeciesVer0.1.zip"
},
{
"name": "Protogen Species",
"description": "Play now as your favorite electronical fluff!\nInclude two faces (normal and small). The protogen body need to be selected in the bodies type category when your making the character. Also include a default shark tail. You can change the tail with the tails from the base game and others mods\n[url=https://media.discordapp.net/attachments/1021686418512289792/1129920333198139533/ProtgenMale.PNG]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ProtogenSpeciesVer0.1.zip"
},
{
"name": "Shark Species",
"description": "Play now as your water species!\nInclude 4 faces (Big and small head, with and without eyes) Also include a special shark pen and a shark body.\n[url=https://media.discordapp.net/attachments/1021686418512289792/1131017541079281794/SharkFemale.PNG]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/SharkSpeciesVer0.1.zip"
},
{
"name": "Flareon Species",
"description": "Play now as your fire fluffball!\nInclude 2 faces (With and without eyes).\n[url=https://media.discordapp.net/attachments/1021686418512289792/1131375011664494683/FlareonFemale.PNG]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/FlareonSpeciesVer0.1.zip"
},
{
"name": "Glaceon Species",
"description": "Play now as your ice fluff!\nInclude 2 faces (With and without eyes).\n[url=https://media.discordapp.net/attachments/1021686418512289792/1131744788102795344/GlaceonFemale.PNG]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/GlaceonSpeciesVer0.1.zip"
},
{
"name": "Vaporeon Species",
"description": "Guys did you know in term of...\nInclude 2 faces (With and without eyes).\n[url=https://media.discordapp.net/attachments/1021686418512289792/1132124006812766298/VaporeonMale.PNG]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/VaporeonSpeciesVer0.1.zip"
},
{
"name": "Gardevoir Species",
"description": "Now play as you tall looking creature\nInclude 2 faces (With and without eyes).\n[url=https://media.discordapp.net/attachments/1021686418512289792/1133557184232423464/GardevoirFemale.PNG]Click for Preview[/url]",
"author": "Eurygrey",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/GardevoirSpeciesVer0.1.zip"
},
{
"name": "Newtown76 collar",
"description": "Replaces the collar with the one based on newtown76's style\n[url=https://media.discordapp.net/attachments/1021686418512289792/1141409251684782140/collar_preview.png]Click for Preview[/url]",
"author": "panzertigre",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/collar_newtown76.zip"
},
{
"name": "Fluffy parts",
"description": "Add a fluffy skin body part in the game. Supported species: fox, wolf, dog\nwork still in progress\n[url=https://media.discordapp.net/attachments/1021686418512289792/1142196087113912512/image.png]Click for Preview[/url]",
"author": "panzertigre",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/furskinV1.zip"
},
{
"name": "Hologlass",
"description": "Adds a pair of glasses buyable in vendomat\n[url=https://media.discordapp.net/attachments/1021686418512289792/1142895667329634324/image.png]Click for Preview[/url]",
"author": "panzertigre",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HologlassV1.zip"
},
{
"name": "Inmate Hoodie",
"description": "Hoodie with color matching the uniform. This is a fix cause turned out the mod never worked properly.\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/hoodie.png]Click for Preview[/url]",
"author": "Fantos (Code), Max-Maxou (Graphics)",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Inmate_Hoodie.zip"
},
{
"name": "Nova Sub Training",
"description": "Warning: Heavy focus on impregnation fetish.\nMod to train Nova to be more submissive during modified scenes.\n\nAdds a new flag called 'NovaSub' which affects modified scenes. Modified scenes can increase or decrease this flag. There are four stages of submissiveness currently with breakpoints at 0, 37, 67, and 91.\n\nModified Scenes:\n- FuckSubbyNovaScene.gd\n-- Uses all four stages of submissiveness\n--- Slight variations while Nova is already pregnant\n- NovaPetPlayScene.gd\n-- Replaces the original prompt when at >=67 submissiveness\n--- Slight variations at >= 91\n--- Includes a special guest appearance..",
"author": "JakeJames",
"modversion": "0.3",
"gameversion": "0.1.0",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/NovaSubTraining.zip"
},
{
"name": "RNGPerks",
"description": "This mod adds 2 perks\n1) Dramaturgy (tier 2, cost 4 points, in Combat)\n - Randomly roll effect for either good buff, near down experience, and a item from custom list in a battle, is inside specials\n2) Gambler Cum Stud (tier 3, cost 3 points, in Breeder)\n - Get your balls fill up to the brim after you cum with 30% chance\n\nand a Dramaturgy's exclusive item:\n**- Flashlight**\n - A weapon use in combat to instantly blind any foe (totally did not check if the opponent have a blindfold or not), is inside specials\n - only have 2 charges\n\nchangelog:\n * fixed crashing for new version (0.1.1)\n * fixed chance being 100% (how did i missed this??????)\n * hopfully has mod info in the json named the same as zip",
"author": "CanInBad",
"modversion": "0.5",
"gameversion": "0.1.1",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/RNGPerksv0.5.zip"
},
{
"name": "Straitjacket woc",
"description": "Just the straitjacket but without the chasity (woc) bc someone asked me to do x3\n\nYou only can get it through the debug menu; A buyable version coming later\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/straitjacket.png]Click for preview[/url]",
"author": "Red Tiger",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Straitjacketmod.zip"
},
{
"name": "Chasitiybelt",
"description": "Just the Chasitiybelt from the normal Straitjacket; Again bc someone requestet it\n\nYou only can get it through the debug menu; A buyable version coming later",
"author": "Red Tiger",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Chasitybeltmod.zip"
},
{
"name": "Portal Expansion Mod",
"description": "Adds additional portal equipment and new content based around portals. Currently on an early test version, so please give feedback. More is planned to be added.\n\nChangelog:\n0.0.1: Fixed crash when attempting to 'lose' the improved portal panties, fixed portal rings so they should now stack when taken off. Fixed crash when retrieving portals. Added a couple more scenes.\n\n0.0.2: Fixed softlock when attempting certain actions.\n\n0.0.3: Fixed crashes when attempting rollback. Fixed portal ring variations being obtainable when not intended. Added some messages when attaching portal rings. Added differing effects when multiple linked rings are attached. Fixed incorrectly triggering sleeping and shower scenes when no portal items were equipped.\n\n0.0.4: Added conditions to various buttons so that you should no longer be able to view scenes for bodyparts that you don't have.\n\n0.0.5: Fixed portal panties so they should now show random scenes correctly.\n\n0.0.6: Fixed some scenes not working correctly.\n\n0.1.0: Fixed crash when attempting to access vendomat (again), added more scenes.\n\n0.1.1: Fixed crash when attempting to attach portal rings.\n\n0.1.2: Fixed crash when attempting to attach portal rings (again).",
"author": "ranchar",
"modversion": "0.1.2",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/PortalExpansionMod.zip"
},
{
"name": "Human legs only",
"description": "this mod replaces all the main NPCs penis (if they have one) with a human one, also replaces legs to be plantigrade. this works with generated NPCs too (ONLY VAILLIA SPEICES WILL ONLY HAVE THESE CHANGES, I MIGHT ADD IN SUPPORT FOR MODDED SPEICES LATER) (also changed avy to like big cocks now cause why not lol, if u don't want it u can edit AvyCharacter.gd in the files of the mod and replace the npcLustInterests and interestVerbalReaction with the one from the vanilla file)\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/humanlegspreview.PNG]Click for preview[/url]",
"author": "NatRobloxian",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Humanlegsonly.zip"
},
{
"name": "More Drugs Mod",
"description": "Adds new items that grant buffs but can also cause potentially undesirable side effects if abused.\b - Added Toughness Booster\n ↳ Improves block defense but lowers dodge chance\n ↳ Can cause side effect, Paralysis: Your body occasionally seizes up, leaving you vulnerable to being taken advantage of\n\nNote: This update is incomplete. The item is mechanically functional, but there is a scene that contains only placeholder text.",
"author": "ButNotTooGay/Makarov",
"modversion": "v0.04a",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/MoreDrugsMod-v0.04a.zip"
},
{
"name": "Stock Events",
"description": "(Requires Rat Species mod!) This is a mod where you can find different characters randomly in the main hall public punishment area. So far there is only one character but planning to expand it, and if you are interested to help expanding the mod, please DM me. It comes in two version, one come with Rat Species module included since the mod depend on it, but if you have it just use the other version.",
"author": "Fantos (Code), Zaxon Rapial (Scenes)",
"modversion": "1.2hotfix",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Stock_events.zip"
},
{
"name": "Stock Events + Rat Species",
"description": "This is a mod where you can find different characters randomly in the main hall public punishment area. So far there is only one character but planning to expand it, and if you are interested to help expanding the mod, please DM me. It comes in two version, one come with Rat Species module included since the mod depend on it, but if you have it just use the other version.",
"author": "Fantos (Code), Zaxon Rapial (Scenes)",
"modversion": "1.2hotfix",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Stock_events__Rat_species.zip"
},
{
"name": "Human cocks and legs only",
"description": "this mod replaces all the main NPCs penis (if they have one) with a human one, also replaces legs to be plantigrade. this works with generated NPCs too\n[b]UPDATE: Ace's protogen mod is now supported[/b]\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/humanlegspreview.PNG]Click for preview[/url]",
"author": "NatRobloxian",
"modversion": "0.4.5",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Humancocksandlegsonlyv2.zip"
},
{
"name": "Toilet slave mod",
"description": "[b]!!!!THIS MOD CONTAINS WATERSPORTS CONTENT!!!![/b]\n\nLittle mod what add a event to toilets like slutwall or stocks.",
"author": "Reggie",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ToiletSlaveMod.zip"
},
{
"name": "Clothes Megapack",
"description": "Add a lot of clothes in the game, the list is:\n- Crop top\n- Fingerless Gloves\n- Hoodie (White streak and 3 inmate color variant)\n- Kitty Panties\n- Leather Jacket\n- Short uniform (3 inmate color variant)\n- Thigh High (3 inmate color variant)\nAnd every one of these have a white variant too!\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/ClothesMegapackPreview.png]Click for Preview[/url]",
"author": "Fantos",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Clothes_Megapack.zip"
},
{
"name": "Hypertus Species Compat Layers but only human cocks and legs",
"description": "a modified verison of CanInBad's Hypertus Species Compat Layers that only allows to generated characters to have human cocks and legs",
"author": "NatRobloxian",
"modversion": "1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/hyperspeciesHCLO.zip"
},
{
"name": "More Drugs V2",
"description": "A rebuild of ButNotTooGay's New drugs. You have 6 pills in total:\n-Dominance/Submission pills\n-Obedience/Bratty Pills\n-Perceptive/Naive Pills",
"author": "ButNotTooGay/Makarov",
"modversion": "2.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Newdrugsv2.zip"
},
{
"name": "PlusCombat",
"description": "4 new weapons, listed below:\n-Glass Shard, a single-use item that causes the enemy to bleed for 10 turns.\n-Lock Sock, a high damage weapon that costs stamina to use but has a chance to knock the enemy down. Not actually made with a lock.\n-Metal Bat, an aluminum baseball bat that costs a small amount of stamina to use and has a chance to stun the enemy.\n-Scrap Derringer, a makeshift, single-use gun that deals an enormous amount of pain but only has a 1 in 4 chance to fire properly.\nKnown Issues:\n-The Metal Bat and Lock Sock are supposed to have attack animations, but I'm too stupid to make the animations work.\n-All 4 weapons can only be obtained through the debug menu since I have no idea how to add them to enemy loot.\n-There is a non-zero chance that I fucked up when making the .zip archive.",
"author": "Czarro",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/PlusCombat_1.0.zip"
},
{
"name": "Domcity",
"description": "Domcity Makes all the npc's fetishes dominant, they love giving hate taking.",
"author": "Makarov",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Domcity.zip"
},
{
"name": "Pillowprincess",
"description": "Domcity Makes all the npc's fetishes dominant, they love giving hate taking. Pillowprincess is the exact opposite, they love receiving and hate giving.",
"author": "Makarov",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Pillowprincess.zip"
},
{
"name": "Lopunny Species",
"description": "Add a special bunny species that come with an eyes or without eyes option\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/LopunnyPreview.png]Click for preview[/url]",
"author": "trashbox_52161",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/LopunnySpeciesVer1.zip"
},
{
"name": "DomSub",
"description": "Allows you to switch between Pillowprincess, and Domcity (feat: Makarov).\nYou choose from a 'Loose Panel' in you cell.",
"author": "Darth",
"modversion": "1.0",
"gameversion": "0.1.3",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/DomSub.zip"
},
{
"name": "Breasts and Penis size - Small",
"description": "[b]PLEASE only install one of these 3 or Hypertus!\nThey will collide![/b]\n\nChanges the size of Random npcs breasts, from small average to large average. I've basically taken Caninbad's hypertus mod and deconstructed it so some features from his mod. Let me know if you see anything off. Will not change currently active npcs breasts.",
"author": "Makarov",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/smallbreastsandpenis.zip"
},
{
"name": "Breasts and Penis size - Normal",
"description": "[b]PLEASE only install one of these 3 or Hypertus!\nThey will collide![/b]\n\nChanges the size of Random npcs breasts, from small average to large average. I've basically taken Caninbad's hypertus mod and deconstructed it so some features from his mod. Let me know if you see anything off. Will not change currently active npcs breasts.",
"author": "Makarov",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Normalbreastsandpenis.zip"
},
{
"name": "Breasts and Penis size - Large",
"description": "[b]PLEASE only install one of these 3 or Hypertus!\nThey will collide![/b]\n\nChanges the size of Random npcs breasts, from small average to large average. I've basically taken Caninbad's hypertus mod and deconstructed it so some features from his mod. Let me know if you see anything off. Will not change currently active npcs breasts.",
"author": "Makarov",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Largebreastsandpenis.zip"
},
{
"name": "Rat Species",
"description": "It add the bigger and more dangerous of the cheese lover species, the rat. Now with skin support!\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/RatPreview.png]Click for Preview[/url]",
"author": "Fantos",
"modversion": "2.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Rat_Species_2.1.zip"
},
{
"name": "Breast Pump on Torso",
"description": "Switches the breast pump and advanced breast pump items from being worn on the upper body slot to the torso slot, thus not interfering with the perks related to being nude. This disallows wearing a pump and a harness at the same time, however.",
"author": "Vyklade",
"modversion": "1.0",
"gameversion": "0.1.3",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Vyk_Torso_Pump.zip"
},
{
"name": "Cursed Equipment",
"description": "Adds cursed Equipment to the game. where do you find it? Who knows.\nThis mod was made in a way to make it easier to make more cursed equipment, but if you just want a start on the idea, this is it.\nFixxes:\nA problem with the dickeater and the milkinator not doing their autopump\npossibly some crashes\nMilkinator being clased as clothing",
"author": "Darth",
"modversion": "1.1",
"gameversion": "0.1.3",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/CursedEquipment.zip"
},
{
"name": "Portal Panties Plus",
"description": "Lets you use the portal panties to walk around with your dick in someone, or someone's dick in you.\nMay have compatiblity porblems with later versions, or other portal panties mods\nAdded:\nThe ability to drug through portals\nFixxed:\nA few bad checks with the older code",
"author": "Darth",
"modversion": "2.0",
"gameversion": "0.1.3",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/PortalPantiesPlus.zip"
},
{
"name": "NPC Claimer",
"description": "Allows you to brand NPCs, claiming them for yourself.\n Should be usable on newer versions\nNew content:\nBuffs can now be applied to the branding iron making the resulting brand do some fun things\nFixxes:\nProblem when removing characters resolved",
"author": "Darth",
"modversion": "2.6",
"gameversion": "0.1.3",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/NPCclaimer.zip"
},
{
"name": "Dynamic Stocks",
"description": "Allows you to find Dynamic NPCs stuck in the stocks\n\nAdditions\nNPCs once they win can now lock you in the stocks\n(only under the chance you just let them free and pissed them off)\nA change in the chance of enchontering NPCs stuck in the stocks",
"author": "Darth",
"modversion": "1.5",
"gameversion": "0.1.3",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/DynamicStocks.zip"
},
{
"name": "Drug Injector",
"description": "Makes and handles an item that lets you drug oponents in combat.\n Should be usable on newer versions\nAdded A new mode to the injector, DNA mode, takes the species of a 'sample' and makes hybrids\nFixxes:\nErrors being loaded at startup",
"author": "Darth",
"modversion": "2.1",
"gameversion": "0.1.3",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/DrugInjector.zip"
},
{
"name": "Laquine Species (Breed Edition)",
"description": "Rabbit-Horse hybrids.\nUpdated: has more mods compatblity (npc spawns with moddded bodyparts)\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/LaquineSpeciesPreview2.png]Click for Preview[/url]\n\n[b]Breed edition[/b]: Make all Laquine NPC spawn with anus womb.\n[b]DO NOT USE BOTH VERSION AT ONCE![/b] Please use one or the other!",
"author": "Raznaak",
"modversion": "1.5",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Laquine_SpeciesVer1.5-B.zip"
},
{
"name": "Laquine Species",
"description": "Rabbit-Horse hybrids.\nUpdated: has more mods compatblity (npc spawns with moddded bodyparts)\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/LaquineSpeciesPreview2.png]Click for Preview[/url]\n\n[b]DO NOT USE BOTH VERSION AT ONCE![/b] Please use one or the other!",
"author": "Raznaak",
"modversion": "1.5",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Laquine_SpeciesVer1.5.zip"
},
{
"name": "Fenrir's Custom Console Commands (FensCCC)",
"description": "This mod adds custom console commands.\n\nCurrent commands:\n- no_kids | Clears the nursery database\n- species_encounter_chance <default, none, number> | Sets the encounter chance for all species (0.0 -> 10.0)\n- gender_encounter_chance <male, female, shemale, herm, peachboy, all | default, none, number> | Sets the encounter rate for either a single gender, or all genders (0.0 -> 1.0)\nset_name <characterID | name> | Change the name if any given character within the game\n\nNotes:\nAdded the ability to change the name of any character (You need to know their ID first. Player's ID is 'pc')",
"author": "Fenrir",
"modversion": "a0.0.03",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/0_FensCCC.zip"
},
{
"name": "Loona mod",
"description": "Loona mod needed for a Loona data pack",
"author": "surrealdeal",
"modversion": "1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/LoonaMod.zip"
},
{
"name": "Hypertus - shouldPrint CONF",
"description": "Download this to make hypertus split out logs either in console or cout if you run the game in terminal emulator.",
"author": "CanInBad",
"modversion": "R1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HypertusShouldPrint.zip"
},
{
"name": "Hypertus - speciesForceBreed CONF",
"description": "Download this to make all species added by Hypertus to have anus womb by default, does not replace existing NPC.",
"author": "CanInBad",
"modversion": "R1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HypertusSpeciesForceBreed.zip"
},
{
"name": "Hypertus - Hyperable Lycanroc Species",
"description": "This mod requires Hypertus (if the name doesn't give it away)\nReplace Lycanroc species (3 variants) with hyperable version, and adds 2 bodyparts from the mod",
"author": "CanInBad",
"modversion": "R1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/LycanrocHypertusCompatR1.zip"
},
{
"name": "Hypertus - Hyperable Hellhound Species",
"description": "This mod requires Hypertus (if the name doesn't give it away)\nReplace vanilla demon/ace's hellhound with hyperable hellhound\ndoes not actually require the hellhound mod",
"author": "CanInBad",
"modversion": "R1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HellhoundHyperable-R1.zip"
},
{
"name": "Improved Inmate Cuffs",
"description": "Tired of your slaves always finding a way to slip those cuffs? Well rest easy with the new and improved Inmate cuffs. These enhanced sets of wrist and ankle cuffs have been developed to all but guarantee those pesky slaves will never get them off. Each one is modified with the patented locking system that makes the those snazzy collars from the BDCC so infamous.\nAvailable now for a limited time only at your nearest Vendomat for whopping bargain of only 6 work credits.\n\nSeriously thou. I made these after a pesky slave was actually making progress in removing a lv 999 wrist cuffs.\nThey are a modified pair of Iron wrist Cuffs and Iron ankle Cuffs with the Impossible to remove effect added. \n\nYou can buy them from the Vendomat for 6 creds each under the names: Improved Iron Wrist Cuffs and Improved Iron Anle Cuffs. \n\nWhy 6 credits? Because I'm feeling vindictive and want slaves to suffer as I did figuring out how to get this mod to work.\n\nSpecial thanks to Brevman for inspiring me to get off my lazy butt and figure out how to make these. And to CanInBed who went out of their way to help me fix a issue that was preventing me from getting this to work.\n\n-Edit-\nSlaves wearing this and chained up does not seem to work now. The game acts as if there are no restraints. Still seems to work on other npc's though. Going to need to investigate further. ",
"author": "Senriku Axon",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ImprovedCuffs.zip"
},
{
"name": "Race Bonus",
"description": "This adds different buffs to different species in original game. Actually, this mod is inspired by the another excellent game called Lilith Throne where every race have their own ability. So I just simply reproduce this function in BDCC.\nI'm not a professional game designer, so there might be some balance issue. Feel free to DM me if you have any suggestion or bug report. And have fun\nAlso, feel free to edit this mod structure for your own species, I'm really excited to see if there's more species with their unique abilities! owo",
"author": "Humoiww",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/RaceBonusMod.zip"
},
{
"name": "Equine Penis Barbs & Knots Edition",
"description": "This is a splice of Ace's Barbed Equine and Knotty Equine penis mods adding a character creation option for a barbed and knotty equine penis. All art assets are knicked from Ace's mods and restitched back together to make a bigger better penis!\n\nChangelog: Now has skins available like the other equine options\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/BarbedandKnottedEquinePenis.png]Click for preview[/url]",
"author": "Avery Winters",
"modversion": "1.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/BarbedandKnottedEquinePenis.zip"
},
{
"name": "Bluespace Reality Alterator (BRA)",
"description": "-Lore: One morning, you find a small device in the engineering section of the station, with a small screen, a keyboard and a standard memory connector, with the letters \"BRA\" stenciled on the back.\nRight now it seems empty of programmed modules, but looking a bit in the pile of junk, you find a memory stick with \"CaninePussy\" written on it, and after plugging it and fiddling a bit with the controls, you notice that your fellow Canine prisoners suddenly all have animalistic pussies instead of humanoid ones. Surprisingly, noone seems to notice the difference but you...\nAre... are you able to alter reality with this device? You must find other modules, stat!\n\n-Description: This is what I managed to hack together to make in-game options for mods possible, since having multiple versions of the same mod for different options is fucking annoying for the modders and for the users, and it's basically impossible to add custom options to the base game Options without releasing a custom build.\nAlone, this mod does nothing, but with mods using compatible scene files, more options are going to get added dynamically, for the users they just need to have this mod and the (future) compatible mods will add themselves to the options available (check the pictures for an example with the Canine Pussy mod).\nRight now only text boxes and scene buttons can be used to change mods, as I still haven't managed to include checkboxes and dropdown lists, but perhaps I'll manage one day.\n\nFor modders, check all the files in the following Canine Pussy mod to understand how to make one for your mod, I added comments to help you, and I will happily answer questions, it's both not hard and a bit finicky...\nWhat's important is using flags in your module.gd and you MUST have a [YourMod]/Scenes/ModsOptionsScenes folder with the scene inside for it to register. You don't have to name the scene as I did, but it will help with what shows in game.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/ModsOptions.png]Click for Preview[/url]",
"author": "Raznaak",
"modversion": "0.2",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ModsOptions.zip"
},
{
"name": "Striped Clothes",
"description": "Add striped clothing:\n- Stockings (2 options) (only for digitigrade feet);\n- Long Gloves (2 options);\n- Panties.\nSold in the laundry in the vendomat.\n\nChangelog:\n- Added stockings without socks, gloves without fingers;\n- Stockings became narrower (I redrew them).\n\n[b][color=red]**Warning!**[/color][/b]\nOld clothes will be deleted, you can save them and change the values in the save file using Notepad++:\n1. Call the search (Ctrl+F);\n2. Select the `Replace` tab;\n3. Enter in the first line `\"id\": \"Phobos_Striped_Stockings\"` or `\"id\": \"Phobos_Striped_Long_Gloves\"` , in the bottom `\"id\": \"Phobos_Striped_Stockings_1\"` or `\"id\": \"Phobos_Striped_Gloves_1\"` ;\n4. Click the `Replace All` button;\n5. Repeat with other items, if any.",
"author": "Phobos",
"modversion": "2.5",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Striped_Clothes.zip"
},
{
"name": "Body Writing (Skin)",
"description": "Added as a workaround to not seeing tally marks and body writings. (Works best on humans).\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/BodyWriting.png]Click for preview[/url]",
"author": "Bursa",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/BodyWriting.zip"
},
{
"name": "RaceAndHeat",
"description": "Originally I wanted to adapt the mod by the author @Humoiww to my own preferences, but thanks to a few suggestions from users who I will mention by name later and the control work of @Raznaak, I would like to pass the idea on to others.\nThe mod aims, as by the author Humoiww, to give the individual races specific bonuses or debuffs with the addition of an additional buff for the heat state. Thanks to @Raznaak he was able to make the mod a little better so that it fits better with the base game\n\nI really don't want any credit for the little work I did, if there are any ideas for further buffs for races and heats, I'm happy to add them\n\nIf I did anything wrong here regarding posting, please tell me and adjust it",
"author": "Humoiww, Raznaak, Nathan_Ray",
"modversion": "0.3",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/RaceAndHeat.zip"
},
{
"name": "Big Boss",
"description": "Add headgear resembling Big Boss to the director in tavi's flashback\ndoes not require PartOrientPicker and phantom of the boss\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/bigbossPreview.png]Click for Preview[/url]\n\n\n\n\n",
"author": "CanInBad",
"modversion": "Large Executive",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HugeShareholder.zip"
},
{
"name": "Hair Replacer",
"description": "Replaces 4 of the hair types I dislike.\nCombed back is bald.\nCool Hair and Long hair is Ferri hair\nPonytail 2 is ponytail 1 hair.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/HairRemoval.png]Click for preview[/url]",
"author": "MakoDaShark",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HairRemoval.zip"
},
{
"name": "The Flamehearts",
"description": "(This Mod was made with help from 'Zko12' as a Mod Tester) & (Thanks to Plasma Serval for the Cafe Addition to my Mod!): This Mod That Adds Phoenix and her Sister with now two more quests added~ Totaling 3 normal quests and 1 quest on both paths, the path is dictated from the Transmitter Quest\n\nChangelog:\nthe cafe is mostly complete, aside from the coffee machine being down for the player, the player can be a waiter/waitress! Now able to serve inmates, in both ways~ For some extra money~ be careful however as you may slide into the spotlight, and cause some unwanted attention to you~ (Note the system for the fame is half working just nothing happens when getting high levels of fame... for now ;3)\n\nThis seems like a semi-final update for the cafe, a bit of it still needs to be either added or changed but for now here are the drinks that y'all have been waiting for :3 hopefully y'all enjoy them and, what's this? you get some sort of scrap after drinking the coffee? how peculiar...\n\nAside from that i have replied to an older post so y'all can post jump to my older version if y'all wanna try to get the secret item w/o cheating it in lol and the next update should be 0.5 :3, DM me any bugs or issues or atleast @ me so I can try to help~",
"author": "Bloxborne (A.K.A Phoenix)",
"modversion": "v0.4",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/TheFlameheartsV0.4.zip"
},
{
"name": "Sniffing Mod",
"description": "Initial version of the sniffing fetish mod. Adds new sniffing sex category, fetishes, and sex goals.\nCurrently, only anus sniffing is available and uses the same animations as rimming. Plans to add taint, balls, and vagina sniffing.\nCurrent descriptions are basic and subject to change, and I am not the best at writing descriptions, so if anyone wants to help out please reach out!\nAlso special thanks to Fox2Code for his modding tools and helping out!",
"author": "c1charge",
"modversion": "0.0.5",
"gameversion": "0.1.6",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Sniffing_mod_v0.0.5.zip"
},
{
"name": "Expanded Plastic Bottle",
"description": "An upgraded plastic bottle. The special bottle lining expands, allowing it to store more than the normal plastic bottle could have otherwise. Selling price depends on the contents.\n\nYou can find it in the same place where the plastic bottle is sold at, the medical vendomatts\n\nFuture plans: May add a new sprite or icon to help differentiate this new version of the bottle.\nSuggestion: The mod can help with the extra fluids created from Hypertus mod.",
"author": "Justtry123",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ExpandedPlasticBottle.zip"
},
{
"name": "Borzoi, Canine Head and Ears",
"description": "[i]I did it for you[/i]\n\nBorzoi style Head and Ears customization. Found under Canine species.\n\n• Snoot clipping in some oral animations (obviously)\n• Blindfolds look a bit off but there's nothing I can do about it (game limitation)\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/borzoi_preview.png]Click for Preview[/url]",
"author": "Lucci",
"modversion": "1.0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/BorzoiVer1.0.1.zip"
},
{
"name": "Rue lanesra skin",
"description": "This is really just needed files and add ons for my 'Rue lanesra' datapack ;p",
"author": "Pokey<3",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/rueshairskin.zip"
},
{
"name": "Slutwall Cuffs",
"description": "Visible cuffs for wrists/ankles when locked in the Slutwall.\nChains are no longer skewered directly to flesh and bone.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/SlutwallCuffs.png]Click for Preview[/url]",
"author": "Lucci",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/SlutwallCuffs.zip"
},
{
"name": "Inconvenient Showers",
"description": "A small, simple mod focused on making bodywritings more inconvenient to remove.\nGenerally makes the game harder.\n\nA basic shower now costs 1 workcredit, and only restores stamina and removes bodyfluids.\nUsing soap costs an extra 3 credits in order to remove bodywritings.\n\n\nThis mod overwrites TakingAShowerScene, so it will have compatibility problems with anything that also overwrites it...\n\nMod Features:\n• expensive ass soap.",
"author": "Calumny",
"modversion": "0.1",
"gameversion": "0.1.6",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/InconvenientShowers.zip"
},
{
"name": "Intimidate",
"description": "First quick draft of something that I wanted for a long time (and I'm sure I'm far from the only one): to remove an NPC from the game after an encounter, without needing to go through the habitual hassle.\nThis first version is more of a proof of concept, it adds an \"Intimidate\" button when you talk to someone or after you defeat them (it's in the first spot for some reason, I'll check if I can put it elsewhere in a future version), and after a confirmation the NPC runs away and never is seen again.\n\nThe dialogs are practically nonexistent right now and you always succeed, but I plan to add to this mod eventually (I just wanted to share it right now for those who want something like that, then expand it as I get used with the systems I'm not yet used to):\n\nThe next versions will be taking into account your relevant reputation versus theirs (Alpha and Inmate/Staff) to make things have more or less chance to work depending on the difference, the relation between you two (an Ally wouldn't want to lose you and a Nemesis would want to take revenge, people inbetween care less), and you'd have more chance to make them flee after you've won a fight than just by talking. Perhaps even bribing or other less aggressive methods for people who don't plan to be dominant in their playthrough.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/Intimidate.png]Click for preview[/url]",
"author": "Raznaak",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Intimidate_v0.1.zip"
},
{
"name": "NPC Anus Womb",
"description": "This adds a copy of the anus womb to the dynamic NPC generation so that approximately half the boys (any NPC without a vagina) and about a quarter of the girls (any NPC with a vagina) spawn with one\nNote: it shows up in character creation and I dont have time to fix it.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/NPCAnalWomb.png]Click for Preview[/url]",
"author": "Avery Winters",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/NPCAnalWomb.zip"
},
{
"name": "Water Pistol",
"description": "A water gun - water not included\n\nAdds a new weapon that can store and shoot fluids.\nFunctionally, a Plastic Bottle with a multi-use Throw Condom attack.\n\nNew attack listed under Special when in combat.\n\nVisit/talk to the Nurse in the Nursery to get one for free.\n-- Randomly drops from defeated Nurses\n-- Randomly appears when you loot Medical Storage\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/WaterPistol.png]Click for Preview[/url]",
"author": "Lucci",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/WaterPistolVer1.0.0.zip"
},
{
"name": "BallsExtra",
"description": "Adds extra settings for balls in character creation that have actual impact and tweaks the dynamic npcs to also have varied balls settings (configurable if FoxLib installed).\n\nIncompatible with Hyperus.\nIf you want to use a custom dick, make sure their script extends \"res://Modules/BallsExtraModule/Base/BodypartBetterPenis.gd\" instead of BodypartPenis.\nYou can edit this yourself or beg a dev to add it for you.",
"author": "NatiM6",
"modversion": "1.4.1",
"gameversion": "0.1.6,0.1.7,0.1.8,0.1.9,0.1.10,0.1.11",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/BallsExtra.zip"
},
{
"name": "CumSpill",
"description": "Adds cum-through to the generic sex scenes when cumming inside during anal. (Fluid transfer not implemented yet, purely visual)",
"author": "NatiM6",
"modversion": "0.1.0",
"gameversion": "0.1.6",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/CumSpill.zip"
},
{
"name": "Nekomimi",
"description": "Simply replaces all base heads with the human model, while leaving all other furry bits as-is. \nI furry faces unappealing, so made this as an alternative to forcing only human encounters. For those who play Lilith's Throne, this makes it more like the lesser furry option in that. This should retroactively change all existing NPCs, as well as any datapacks which use the vanilla faces.\n\nThis does not support any modded races, as I do not use them, but I may make a patch if there is interest in it.\n\nThank you to @AverageAce, Unofficial HeadAdmin for inspiring me to make this, as I didn't realize it was so easily done.",
"author": "Karenb",
"modversion": "1.0",
"gameversion": "0.1.6",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Nekomimi.zip"
},
{
"name": "NoPretendSex",
"description": "Makes the sex actually real. Compatible with Hyperus (if 50cm is not enough for you).\n\n\"Ah yes, your person-sized penis 'feels' so good 'inside' me and definitely 'not' at my side in the 'camera blindspot' that I'm too small to completely cover.\"",
"author": "NatiM6",
"modversion": "1.0",
"gameversion": "0.1.6",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/NoPretendSex.zip"
},
{
"name": "Wings Static",
"description": "Adds 4 wings. They are purchasable from laundry vendermat.\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/WingStaticPreview.png]Click for Preview.[/url]",
"author": "CanInBad",
"modversion": "R1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/WingStaticR1.zip"
},
{
"name": "Non-permanent, Flat Chastity Cage",
"description": "Adds a removable flat chastity cage as a separate item (item_id ChastityCageFlat).",
"author": "AlexVSharp",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ChastityCageFlat.zip"
},
{
"name": "Non-permanent, Flat Chastity Cage",
"description": "Adds a removable flat chastity cage as a separate item.\n\nThis is a remix of AlexVSharps's flat chatity cage mod that doesn't get removed by the debug menu and is a bit harder to remove.\nThanks fenrir for the code",
"author": "AlexVSharp / slightly femboy",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ChastityCageFlatRemix.zip"
},
{
"name": "Force Anus Womb",
"description": "You get an anus womb, you get an anus womb, everyone gets an anus womb!!!\n\nSometimes I may have a tendency to overcomplicate things... For once, this updated version actually has less stuff than the previous one, because most of that stuff wasn't really needed... 😅 Instead of changing the behaviour of the anus womb or whatever I did previously, this mod now replaces the regular anus for one with an anus womb. This mod also doesn't do anything with FoxOptions anymore, as these options were kinda superfluous...\nAs this replaces the basic-ass anus (pun intended), this will also force it onto ALL characters, including every static ones, and the PC too. Literally every characters will have an anus womb capable of pregnancy if you can have anal sex with that character. Why? Because!\nAs it doesn't remove the normal anus womb, anything that already has an anus womb still stays the same, but now everyone else has one too instead of the vanilla one.\n\nIf you have Hypertus it will also replace all normal Hyper Anus into ones with wombs.\n\nThis doesn't even conflict with Ace's mods that makes some NPCs \"breedable\", like BreedableAvy and BreedableCheckpointGuard, as these mods already give the vanilla anus womb, so nothing much will happen if you want to keep them too, as mine only touches the regular anus.\nphrasing...\nThis may conflict with any other mod that could interact the vanilla anus, but there are no others ones yet AFAIK, and unless a new mod also want to overwrite it, eh 🤷♂️\nAnd after some testing, if any NPC is pregnant and you remove the mod (so they get back the vanilla anus without womb), the potential fetus(es) just get sent to the Shadow Realm together with the womb without any incident, so no worries of crashing if you want to remove this mod...\n\nAs usual, if you find any bug or have any comment, don't hesitate to @ me.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/ForceAnusWomb.png]Click for Preview[/url]",
"author": "Raznaak",
"modversion": "1.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ForceAnusWomb_v1.1.zip"
},
{
"name": "MorePenisPump",
"description": "Add 2 more penis pumps. The first one is PenisPumpMK3, you can buy it at a Medical Vendomat. And a second one is PenisPumpGold, you can get it from the debug menu only. (I just want to try modding, That's all.)",
"author": "N",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/MorePenisPump.zip"
},
{
"name": "More Starting Perks",
"description": "Adds new starting parks to choose from during character creation. Don't take them all at once, or do, I'm a description, not a cop.",
"author": "Raknar",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/MoreStartingPerks.zip"
},
{
"name": "ForceFuck",
"description": "Adds forced fucking (and more forceful deepthroating), and improved Knot Fucking (including when riding a sub), based on Mindstormsman's KnotFucking mod.\nAlso functions as a patch to fix an issue with sensitivity .Edits Sex activity, so compatibility is your luck. Not compatible with Mindstormsman's KnotFucking, or my Sensitivity bugfix.\nFixed: AI getting caught in a knotfucking loop (fingers crossed this time).",
"author": "Raknar",
"modversion": "0.3",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/ForceFuck.zip"
},
{
"name": "BodyDrugs",
"description": "Allows you to change body parts and proportions with pills.\nShould be usable on newer versions\nFixxes:\nChanged mod ID as the old one broke for some reason\nGave pills their own debug catagory to help with testing... and cheating.",
"author": "Darth",
"modversion": "2.1",
"gameversion": "0.1.7",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Bodydrugs.zip"
},
{
"name": "More Scenes",
"description": "This mod adds a new scene to be used in modding/datapack building. This version is just one scene with five character's standing together with the same options as the solo or duo animations.\n\nBig thanks to everyone who helped me get this figured out along the way.",
"author": "FurWolfriex",
"modversion": "1.0",
"gameversion": "0.1.7",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/MoreScenes.zip"
},
{
"name": "Corset Mod",
"description": "Mod adds puppy suit corset as wearable clothing (you can buy it in laundry vendomat), inspired by goo corset from Goo Bondage mod by Jaycred.\nIt's my first mod, so there might be problems, but it's just one item , so hopefully it'll be ok.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/CorsetMod.png]Click for preview[/url]",
"author": "mks",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/CorsetMod.zip"
},
{
"name": "Auto Lube",
"description": "Adds tier 4 cum lover perk that makes holes self lubricate on sex start. Heavily inspired by Hypertus sex toy perk. [b]REQUIRES FOXLIB.[/b]\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/AutoLubeMod.png]Click for preview[/url]",
"author": "mks",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/AutoLubeMod.zip"
},
{
"name": "Nano Revolution",
"description": "CONTENT WARNING: This mod has some force transformation content. This will warn you when it is about to happen.\nSo this mod is inspired by one of the in-game scenes, where you check the unfinished nano android program, and Sentinel-X, the prototype trying to transform you into the nano android. Unfortunately, this program was stopped by Captain, and Sentinel-X lost its power before full transformation.\nNow, let's imagine what if Alex persuaded Captain to continue that program. Introducing Nano Revolution Mod, this mod realizes the nano android program.\n\nCurrent Features:\n-A new semi-playable specie, nano android. Usually, these androids are perfect guards, following every command and easy to manage. \n(You cannot choose this race in the start of the game, but maybe something terrible (or exciting for some people) could happen when entering a certain room in the engineering bay.)\n-A new dynamic npc type, the nano android. Will frisk you and force tougher punishment if you keep refusing their request. Be careful\n-A semi completed new skill tree that is closely related to confronting these nano guards.\n\nFuture plan (rank by priority):\nFully developed nano engineering skill tree. You can make something really powerful with this skill.\nMore nano android type. nano engineers, nurses, and even android sextoys, enrich the BDCC life.\nMature nano species side path. A new skill tree that is closely related to how to use your new body.\nSince Alex is in charge of this program, more story line and interaction with Alex when you accidentally turn into nano android.\n\nHave fun with these nano androids~ If you have any suggestions, bug reports, typo reports, and even story suggestions, feel free to send me these messages. They will be very helpful for my future development. XD\n\nvHi! Sorry for such a long time after the last update. I've finally got some time to continue this work. \n\nv0.5.0 Update - Nano Interaction Continued:\n-Fully make use of the new interaction system. Two new pawn types! Nano sex doll and guard. They will randomly spawn in BDCC, interact with other inmates and NPCs. Specifically Sex doll will offer sex, and the nano guard will frisk the inmate once per day.\n\n-New skill tree unlocked! Once you activate your nano transformation, you'll gain access to some truly fascinating abilities—including the power to convert others into nano-androids. But be warned: this process will fully erase target identity. The choice is yours.\n\n-Humoi can now offer you some hints to help you progress your nano journey! “Talk” with her and check her “Suggestion”.\n\n-Add a small perk to Nano Engineering Skill\n\n-Temporarily remove some old scenes, will add back in the future.\n\nFuture plan (rank by priority):\n-Since Alex is in charge of this program, more story line and interaction with Alex when you accidentally turn into nano android. \n\n-Fully matured nano skill trees. You can make something really powerful with these skills.\n\n-Even More nano android types. nano engineers, nurses, and servers fully under your command , enrich the BDCC life. \n\n-Mature nano species side path. Extend a new skill tree that is closely related to how to use your new body.\n\nSome Extra Stuff:\nYea, finally figuring out how to work with Rahi’s excellent interaction system. To be honest, this system has really high potential. So, I want to use this update to show how we can use this new system to create a more dynamic BDCC environment. \n\nBug Report, Suggestion? Always welcome!\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/NanoRevolutionPoster.png]Click for preview[/url] [url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/NanoRevolutionPoster2.png]Preview 2[/url] [url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/NanoRevolutionPoster3.png]Preview 3[/url]",
"author": "Humoiww",
"modversion": "0.5.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/NanoRevolutionMod_v0.5.0.zip"
},
{
"name": "Suzanne",
"description": "im feeling depressed so have this monkey cosmetic, colorable with baked in shadow\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/SuzanneHeadCosmetic.png]Click for Preview[/url]",
"author": "CanInBad",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/SuzanneHeadCosmetic.zip"
},
{
"name": "B.O.O.P",
"description": "Behold! The B.O.O.P. (body operational optimization pult). For only for ♂️300 bucks♂️ , allows you to change npcs body. (be honest, it's a rewritten character creator). \n\nIt works simply: put it on the target character, take it back and press a button. Since it's considered as BDSM item, there are no restrictions on npcs, but in the case of static and key characters there may be problems, which I can't vouch for (please don't).\n\nAnd a few technical points: there are no species bindings for body parts here, and neither is resetting them to standard after changing species. And no, personality, fetishes, etc. cannot be overwritten (yet).\n\nSmall update due to a bug found.\nChanged the way to use it, as the old one broke a lot . Now all you have to do is put the pult on yourself, talk to the npc and voila. Now the editor works stably with static npcs, but unfortunately can not change the thickness and femininity (it is statically built into the character, extra thick ginger cat canceled).\n\nSold by Alex Rynard.",
"author": "DrDurka",
"modversion": "0.6",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/B.O.O.P.zip"
},
{
"name": "Gavin the Void Boss",
"description": "Character and his moveset required for the \"Battle in The Void\" datapack.",
"author": "Sumobear50",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/GavinTheVoidBoss.pck"
},
{
"name": "Tavi Dom Plus Demo",
"description": "A little Addition for Tavi, starts when you get her Corruption to 200% or 0%~ And then she will give you a nice little rewards for \"Fixing\" her.\nWhat it adds: Adds a few encounters with Tavi, after doing the above mentioned thing currently you can find her in the Canteen as you eat, in the yard while you wander about, and the greenhouse for a little teasing minigame~.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/TaviDomPlus.png]Click for Preview[/url]",
"author": "Phoenix",
"modversion": "0.5fixed2",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/TaviDomPlus.zip"
},
{
"name": "Bubble Butt body",
"description": "Adds a body that has a huge ass. Good only for being a naked human, as tails and clothing breaks with it.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/BubbleButtBody.png]Click for Preview[/url]",
"author": "Amewsing",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/BubbleButtBody.zip"
},
{
"name": "Hypnosis Testing - NeuroJammer",
"description": "First mod! Adds an intense version of a hypnovisor that isn't a clear glass screen (just Socket's visor down)",
"author": "JokeMysterious",
"modversion": "1fixed1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/NeuroJammerModule.zip"
},
{
"name": "Gardevoir Species",
"description": "Adds in the pokemon species Gardevoir, this is an update of Eurygrey's mod. Please download the related Datapack for the skin.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/Gardevoir.png]Click for Preview[/url]",
"author": "Amewsing",
"modversion": "1.01",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Gardevoir1.01.zip"
},
{
"name": "Manga Head",
"description": "Adds a Manga style version of the human head with Colorable Eyes (red: Skin, green: Sclera, blue: Iris).\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/MangaHead.png]Click for preview[/url]",
"author": "Master Lorian",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/MangaHead.zip"
},
{
"name": "Lorian Hair",
"description": "Adds 5 Hairstryles\nv0.25 changelog:\nJust updated the json for 0.1.8, removed useless files, and adjusted some of the hairstyles to be a bit closer to vanilla.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/LorianHair.png]Click for preview[/url]",
"author": "Master Lorian",
"modversion": "0.25",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/LorianHair.zip"
},
{
"name": "Humanoid Ears",
"description": "Adds an Elf species and more human ears\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/HumanoidEars.png]Click for preview[/url]",
"author": "Amewsing",
"modversion": "1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HumanoidEars1.zip"
},
{
"name": "Amusing Pokemon Pack Volume 1 (APPV1)",
"description": "Adds in the species Charizard, Mew, Nido Queen/King and Raichu.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/APPV1.png]Click for Preview[/url]",
"author": "Amewsing",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/APPV1.zip"
},
{
"name": "Absols",
"description": "Adds absols as a playable species. Hair and horns can be used separately. Arms and legs can use the included pattern, or the universal skins.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/Absols.png]Click for Preview[/url]",
"author": "Amewsing",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Absols.zip"
},
{
"name": "Barbed Knot",
"description": "First and probably last time posting, This terrible edit I made using AVERAGE ACE's Knotted equine Mod where I just changed the sprite and the name it works fine and even has the condom sprite it dose not work with the original mod because I did not want to have to change all the names.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/BarbedKnot.png]Click for Preview[/url]",
"author": "Sket",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/BarbedKnot.zip"
},
{
"name": "Sheep Species",
"description": "This mod adds the sheep species. The mod isn't amazing, but it's okay... I think XD\nDesigns by The Galtor\nCode by Avery Winters.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/TheGaltorSheepSpecies.png]Click for Preview[/url]",
"author": "The Galtor",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/TheGaltorSheepSpecies.zip"
},
{
"name": "Sheathed Human Penis",
"description": "Helping Ace in their continued effort to remove humanity from the game, I edited the sheathed human penis\n\"It does exactly what you think it do, human penis with a sheath on it\" -Average Ace\nNow replaces the normal human one entirely\nOriginal by: Average Ace \nCode change by: Me and a ton of help from Avery Winters\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/SheathHumanPenis.png]Click for preview[/url]",
"author": "Winter 'Eira",
"modversion": "2.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/SheathHumanPenisVer2.zip"
},
{
"name": "Hairs!",
"description": "Original mod by Sority. Adds hairs to the game. Updated to use the new skin(pattern) system.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/hair.png]Click for preview[/url]",
"author": "Amewsing",
"modversion": "1.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Hair1.1.zip"
},
{
"name": "Rabbit Species",
"description": "Add The Jumping Animal for all the lola and bugs bunny lovers. It has 3 Ears Variant type and 2 Tails variant. Work with skin system, with default patterns, and custom pattern variants for ears, head and tails\n\nFixed issues with skins/patterns on legs\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/RabbitPreview.png]Click for Preview[/url]",
"author": "Fantos (Code), Max-Maxou (Graphics)",
"modversion": "2.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/Rabbit_Species.zip"
},
{
"name": "Winters Rabbit Penis Patch",
"description": "Requirements: Fantos' Rabbit Species\nA patch for the Rabbit Species to change the default penis for Dynamic Rabbit NPCs to the Barbed & Knotted Equine Penis. Should default to the base equine penis if you dont have the expanded equine penis mod. Created in response to Johnvic's continued efforts to erase humanity.\n\nProbably needs to be loaded after rabbits.",
"author": "Avery Winters",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/WintersRabbitPenisPatch.zip"
},
{
"name": "Goo Bondage",
"description": "Adds new restraints with custom effects. If you like weird and goopy bondage things, you might like this. These are added to the pool of NPC restraints and The Announcer's shop.\nMouth:\nGoo Mask\nTorso:\nGoo Boobs\nGooey Corset\nGooey Vest\nGooey Lingerie\nPenis:\nNull Bulge (P)\nSentinel Cage\nVagina:\nNull Bulge (V)\nSentinel Plug (V)\nAnus:\nSentinel Plug (A)\n\nNon-restraint versions of some of the torso items are also sold in the vendomat.\n\nGoo Boobs and Goo Mask are designed to alter one of the character's body parts on equip and restore it when unequipped, but the on-equip code is only called if you manually \"Put On\" in the inventory or have it forced on you in sex. Debug commands (i.e. \"Force Smart Lock\") and the checkpoint guard won't call it. These items will be missing some effects/visuals in those cases, so I've excluded them from the checkpoint guard's available restraints. Could probably fix with an override, but I'm avoiding overrides with this mod.\n\nWhat's new in version 2.1.0:\nAdded a vaginal variant of Sentinel Plug and renamed the original to differentiate the two\nUpdated Sentinel Plugs, Null Bulges, and Goo Boobs to give sensitivity-related (de)buffs\nAdded the Sentinel Cage, a faux-chastity cage/bulge that encases the penis and leaves it accessible but empty.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/GooBondage.png]Click for preview[/url]",
"author": "Jaycred",
"modversion": "2.1.0",
"gameversion": "0.1.9",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/GooBondage.zip"
},
{
"name": "Winters Pokemon Collection",
"description": "A grouped mod for the various pokemon eeveelutions in a single file updated to handle being coloured and skins.\nIncluded: Eevee, Espeon, Flareon, Glaceon, Jolteon, Leafeon, Sylveon, Umbreon, Vaporeon\nCredit: Original Mods by Eurygrey\nChangelog: Finished Sylveon and reached 1.0 release and marked mod as no longer WIP.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/WintersPokemonCollection.png]Click for Preview[/url]",
"author": "Avery Winters",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/WintersPokemonCollectionV1.0.zip"
},
{
"name": "Rigging God",
"description": "Adds tier 4 BDSM skill that further enhances rigging skills.\n[b]WARNING[/b]: THIS MOD REQUIRES FOXLIB\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/RiggingGodMod.png]Click for preview[/url]",
"author": "mks",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/RiggingGodMod.zip"
},
{
"name": "Hypno Blindfold",
"description": "Adds a combined Hypnovisor/Blindfold restraint. Roughly equivalent to the MK1 hypnovisor. Can be bought in the same way as the MK1, can be forced on in stocks/by guards",
"author": "Eden",
"modversion": "0.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HypnoBlindfold.zip"
},
{
"name": "HeelsSuit",
"description": "Adds a new suit with high heeled boots to the outfit vendomat. Features three different states of damage.\n\nAdapted from a poorly-cropped image of a clothing design by @MISS-TRINITY. I do not claim ownership of the original design.\n\nPlease review the attached readme file before contacting the author with questions.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/HeelsSuit.png]Click for Preview[/url]",
"author": "MOONHALO",
"modversion": "1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/HeelsSuit.zip"
},
{
"name": "Winters Canine Barbed Penis",
"description": "A canine variant penis with barbs ideal for a canine/feline hybrid.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/WintersCanineBarbedPenis.png]Click for Preview[/url]",
"author": "Avery Winters",
"modversion": "1.1",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/WintersCanineBarbedPenisV1.1.zip"
},
{
"name": "Animal Pussies",
"description": "This adds various animal pussies to the game, in this version there are:\n-Canine\n-Equine\n-Feline\n-Cloaca (including anus)\n-Sergal (if you have the Sergal species active)\n\n[b]IMPORTANT[/b]!: This replaces both Canine Pussy and Equine Pussy mods, remove them from your list before playing.\n\nEach pussy has different descriptions, elasticity, resistance, capacity and comfortable insertion values. There are no visible bodyparts, but this is for people who want some variety. The cloaca is difficult do with how the game works, a bodypart can only be one type of orifice, but pretend that they're combined.\n\nBy default, only the base species will spawn with their respective pussies, and will always spawn with one instead of the regular vagina. At character creation, only these species will have the respective pussy available. If you want more species to spawn with them, you must use FoxLib, but FoxLib isn't required.\n\nHypertus compatibility:\nIf you have Hypertus active, all new hyper characters will spawn with a hyper pussy. \n\nSpecies mod compatibility:\n-If you have the Sergal species (not the Southern one), the Sergal pussy will be added to the list. It technically has a prehensile clitoris, even if nothing can be done with it (yet).\n-Laquine will spawn with the Equine pussy.\n-Nano Android will spawn with the pussy corresponding to their species if available.\n-If you have the Human Replacer Bits mod, Furless Felines will spawn with a feline pussy.\n\nFoxLib ModsOptions compabibility:\nIf you have FoxLib, you can set a few options:\n-You can choose to use any pussy with any species at character creation.\n-You can choose to have relatively equal chances for the normal vagina to spawn instead of always the animal pussies.\n-You can customize every species to have NPCs have the pussy you want (in the \"advanced\" options), it's only a checkbox instead of percentages, a species can have more than one pussy available. \n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/AnimalPussies.png]Click for Preview[/url]",
"author": "Raznaak",
"modversion": "3.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/AnimalPussies_v3.0.zip"
},
{
"name": "Crotchless Chastity Belt",
"description": "Adds a chastity belt that will allow access to the wearer's genitals, but not their anus. It works, but lacks an icon and does not display on the doll.\n\nCannot be worn alongside a chastity cage or it will likely break your game, because this is the first time I've used Godot and had to piggyback off that item to make it work. Hopefully I'll be able to figure out how to fix this in the future. Anyone and everyone has my permission to edit the mod to fix it themselves if they want.",
"author": "Helix",
"modversion": "0.1.0",
"gameversion": "*",
"download": "https://raw.githubusercontent.com/Alexofp/BDCCMods/main/mods/AnChastityBelt.zip"
},
{
"name": "EZ-Meet",
"description": "Adds two new buttons to the \"Me\" menu to quickly start an encounter with dynamic NPCs. \"Find Random\" finds an existing NPC, while \"Meet New\" creates a new one. You then get the option to interact with them or leave them alone. When creating a new NPC, you also get the option to avoid them (removing them from the game).\nChanged in v0.1.1: Fixed description when pulling up an NPC you have offspring with.\n\n[url=https://raw.githubusercontent.com/Alexofp/BDCCMods/main/previews/EZMeet.png]Click for Preview[/url]",
"author": "Sightglass",
"modversion": "0.1.1",
"gameversion": "*",