-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathdatapacks.json
More file actions
4254 lines (3789 loc) · 119 KB
/
datapacks.json
File metadata and controls
4254 lines (3789 loc) · 119 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
{
"datapacks": [
{
"id": "pandaskin",
"name": "Panda skin datapack",
"author": "Rahi",
"version": "1.0",
"description": "Adds a panda skin!",
"contains": "Contains: 1 skin",
"download": "datapacks/pandaskin.res",
"lastedit": 1719845351,
"filesize": 102787,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/pandaskin.PNG"
},
{
"id": "luciodemonicsindustriesclassified",
"name": "Luc....no idea why",
"author": "Luc",
"version": "1.0",
"description": "the gayass catto!\nWarning: it is not balanced for early game and is meant for when you atleast know what you're doing",
"contains": "Contains: 1 character",
"download": "datapacks/luciodemonicsindustriesclassified.res",
"lastedit": 1719898695,
"filesize": 7400,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/luciodemonicsindustriesclassified.png"
},
{
"id": "ashgreyheartavali",
"name": "AshGreyheart",
"author": "Moonpaws",
"version": "1.0",
"description": "Exhibitionist Avali girl who hates the very concept of restrictions. Gurads knew that so they bounded her up. Altough she manage to break most of them...",
"contains": "Contains: 1 character",
"download": "datapacks/ashgreyheartavali.res",
"lastedit": 1719950105,
"filesize": 6299,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/ashgreyheartavali.png"
},
{
"id": "one_hole_ona",
"name": "Ona",
"author": "thesea251",
"version": "1.0",
"description": "A very simple datapack. Adds Ona, a person with no genitals.",
"contains": "Contains: 1 character",
"download": "datapacks/one_hole_ona.res",
"lastedit": 1719950114,
"filesize": 4404,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/one_hole_ona.PNG"
},
{
"id": "peanutsfursona",
"name": "Peanuts' fursona",
"author": "Peanuts",
"version": "1.0",
"description": "Peanuts, the masochistic bunny",
"contains": "Contains: 1 character",
"download": "datapacks/peanutsfursona.res",
"lastedit": 1719951642,
"filesize": 5793,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/peanutsfursona.png"
},
{
"id": "Natalia",
"name": "Natalia",
"author": "Rocky",
"version": "1.0",
"description": "adds a new female fox inmate Required mods: Prosthetic parts",
"contains": "Contains: 1 character",
"download": "datapacks/Natalia.res",
"lastedit": 1719954048,
"filesize": 5890,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/Natalia.png"
},
{
"id": "fhSisters",
"name": "The Flameheart Sisters",
"author": "Phoenix (A.K.A Bloxborne)",
"version": "1.0",
"description": "This is Phoenix and her sister Jay. Both of them are guards.",
"contains": "Contains: 2 characters",
"download": "datapacks/fhSisters.res",
"lastedit": 1719987357,
"filesize": 14025,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/fhSisters.png"
},
{
"id": "Kisa",
"name": "New pack",
"author": "Donshadowwolf",
"version": "1.0",
"description": "No description provided",
"contains": "Contains: 1 character",
"download": "datapacks/kisa.res",
"lastedit": 1719987453,
"filesize": 1337464,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/kisa.png"
},
{
"id": "Straight girls",
"name": "My first bit of characters",
"author": "Kuran",
"version": "1.0",
"description": "A bundle of of unique straight women, from a human supremacist power house, to a very slutty kitty, each of these four women have their own stories, but weather or not you care is up to you.",
"contains": "Contains: 4 characters",
"download": "datapacks/Straight girls.res",
"lastedit": 1719987613,
"filesize": 5779480,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
]
},
{
"id": "brevmanscharacterpack1",
"name": "Brevman Character Pack V3",
"author": "Brevman",
"version": "3.0",
"description": "A assortment of characters that I've made!\nTries to have a variety of all types, inmates, guards, engineers, nurses, etc. From the kind and gentle, to the utterly brutal. From the submissive to those that will crush you under their boot.\nEvery single character is highly customised, with unique attacks, loot tables, and detailed descriptions with backstory.\n16 fem, 12 male, 6 andro II 20 inmates, 7 guards, 4 engineers, 3 nurses\nMost of them are higher level, 8-50 so far. Most are 20+ (Plus a single lvl 80 \"boss\") The pack is meant to make the early levels rough, and lvl20+ no longer trivial.\nCan you handle the challenge? ;P",
"contains": "Contains: 34 characters",
"download": "datapacks/brevmanscharacterpack1.res",
"lastedit": 1719987628,
"filesize": 938090,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/brevmanscharacterpack1.png"
},
{
"id": "wintereira",
"name": "Winter 'Eira the Lustful",
"author": "Sethix'Ria",
"version": "1.0",
"description": "Thought I'd add my succubus paladin to the game. As a very nice lust based guard who'll get what she wants probably. Likely isnt a hard fight for most.",
"contains": "Contains: 1 character",
"download": "datapacks/wintereira.res",
"lastedit": 1719987687,
"filesize": 7385,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/wintereira.png"
},
{
"id": "gooba",
"name": "Gura",
"author": "Raznaak",
"version": "1.0",
"description": "Same-chan",
"contains": "Contains: 1 character",
"download": "datapacks/gooba.res",
"lastedit": 1719997882,
"filesize": 1208409,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/gooba.png"
},
{
"id": "Ryan",
"name": "Ryan Pack",
"author": "No author",
"version": "1.1",
"description": "No description provided",
"contains": "Contains: 1 character",
"download": "datapacks/Ryan.res",
"lastedit": 1719997917,
"filesize": 4309,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/Ryan.png"
},
{
"id": "rebecca",
"name": "New pack",
"author": "Makarov",
"version": "1.0",
"description": "An absolute sexual defiant and an attempt at hyena",
"contains": "Contains: 1 character",
"download": "datapacks/rebecca.res",
"lastedit": 1719997934,
"filesize": 5958,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/rebecca.png"
},
{
"id": "jacob",
"name": "New pack",
"author": "Makarov",
"version": "1.0",
"description": "No description provided",
"contains": "Contains: 1 character",
"download": "datapacks/jacob.res",
"lastedit": 1719997956,
"filesize": 4280,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/jacob.png"
},
{
"id": "comedyhappens42069",
"name": "Syna Emery",
"author": "Aedyn Walkr",
"version": "0.1",
"description": "A character that has lore I've been planning on turning into a mod for a while now. Once that scene creation feature drops I'll finally be able to get that shit done. (Requires Dragons+ and the Cybernetic Skin.)",
"contains": "Contains: 1 character",
"download": "datapacks/synaemery.res",
"lastedit": 1720075631,
"filesize": 8162,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
]
},
{
"id": "brevmanmoddedpack1",
"name": "Brevman's Modded Character Pack V1",
"author": "Brevman",
"version": "1.0",
"description": "Contains characters that are modded. Varied types but with a strong leaning towards breeding kinks.\nPretty loose with realism, quite a few demons, some bots. whatever I think is hot.\nAll characters have custom attacks, personalities, loot drops, backstory descriptions and more. All in line with their personality.\nMost are high level.\n2 Fem I 11 Male I 1 peach II 9 inmates I 2 guards I 1 engineer I 2 nurses\nDependencies: Scalie Expansion, Skull Dogs, Sergals, Avali, Protogen, Synths, Barbed Equine Penis, Spined Dragon Penis. Ace's unreleased Skins pack.",
"contains": "Contains: 14 characters",
"download": "datapacks/brevmanmoddedpack1.res",
"lastedit": 1720158659,
"filesize": 88868,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/brevmanmoddedpack1.png"
},
{
"id": "equinesubsquad",
"name": "The Herd",
"author": "Katz",
"version": "1.2",
"description": "6 mares with a comfortable variety of fetishes for you to enjoy, and one stallion lurking around the guard areas. Watch out for him!",
"contains": "Contains: 7 characters",
"download": "datapacks/equinesubsquad.res",
"lastedit": 1720158686,
"filesize": 45547,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/equinesubsquad.PNG"
},
{
"id": "kingdragon",
"name": "Alexander, Dragon King",
"author": "Katz",
"version": "3.0",
"description": "Introduce an unstoppable dom into your world. Be prepared to become his bitch.\nHeavy focus on non-con breeding and bondage fetishes with the ocasional lactation, recommended for submissive female characters.",
"contains": "Contains: 1 character",
"download": "datapacks/kingdragon.res",
"lastedit": 1720197906,
"filesize": 8829,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/kingdragon.PNG"
},
{
"id": "maledergs",
"name": "Male Dragon Wing",
"author": "Katz",
"version": "1.0",
"description": "Treat yourself to a squad of dominant male scalies in all fields of work.\n\nand Snively, but we all hate Snively",
"contains": "Contains: 5 characters",
"download": "datapacks/maledergs.res",
"lastedit": 1720197931,
"filesize": 29946,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/maledergs.PNG"
},
{
"id": "thesea251_pack",
"name": "thesea251_pack",
"author": "thesea251",
"version": "1.0",
"description": "A small collection of 7 characters.\n3 male / 2-ish female / 2 herms\n5 inmates / 1 guard / 1 nurse\nCharacters are varied in strength, with various fetishes, and some are meant to tease parts of the game.\nNo mods.",
"contains": "Contains: 7 characters",
"download": "datapacks/thesea251_pack.res",
"lastedit": 1720217074,
"filesize": 40286,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/thesea251_pack.png"
},
{
"id": "roar_tigerclaw_oc",
"name": "Roarpack",
"author": "Roar",
"version": "1.0",
"description": "No description provided",
"contains": "Contains: 4 characters, 3 skins",
"download": "datapacks/roar_tigerclaw_oc.res",
"lastedit": 1720249987,
"filesize": 2559360,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/roar_tigerclaw_oc.png"
},
{
"id": "Natalie",
"name": "Natalie Pack",
"author": "Makarov",
"version": "1.0",
"description": "No description provided",
"contains": "Contains: 1 character",
"download": "datapacks/natalie.res",
"lastedit": 1720252953,
"filesize": 4743,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/natalie.png"
},
{
"id": "Femdergs",
"name": "Female Dragon Wing",
"author": "Katz",
"version": "0.1 Untested",
"description": "A whole flight of powerful ladies to dominate, or get dominated by.\n\nPlease be gentle with Snowdrop",
"contains": "Contains: 5 characters",
"download": "datapacks/Femdergs.res",
"lastedit": 1720338625,
"filesize": 34253,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/Femdergs.PNG"
},
{
"id": "sltlizcharacter",
"name": "Liz Character",
"author": "SentientLinuxTerminal",
"version": "1.0",
"description": "adds my female oc, Liz\npretty self explanatory\nno mods needed",
"contains": "Contains: 1 character",
"download": "datapacks/sltlizcharacter.res",
"lastedit": 1720338642,
"filesize": 6959,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/sltlizcharacter.PNG"
},
{
"id": "computerwolfskins",
"name": "Roxy",
"author": "ComputerWolf",
"version": "1.0",
"description": "Adds a sex robot named Roxy. It was once a sex toy in a popular brothel, but due to a murder there, all the toys were thrown into the trash. Roxy decided to take revenge, but nothing came of it. She was thrown into this prison for killing a man. Roxy is a very difficult opponent due to her robotic qualities. If you defeat her, you have a chance to take her exoskeleton. (She has a dick and a vagina)",
"contains": "Contains: 1 character",
"download": "datapacks/computerwolfskins.res",
"lastedit": 1720374405,
"filesize": 457871,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/computerwolfskins.png"
},
{
"id": "tastyicecream",
"name": "Vanilla Ice pack",
"author": "MalDragon",
"version": "1.0",
"description": "Vanlla character pack",
"contains": "Contains: 4 characters",
"download": "datapacks/tastyicecream.res",
"lastedit": 1720422500,
"filesize": 18828,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/tastyicecream.png"
},
{
"id": "loona",
"name": "Loona datapack",
"author": "SurrealDeal",
"version": "1.0",
"description": "Hell Hound from Helluva Boss.",
"contains": "Contains: 1 character",
"download": "datapacks/loona.res",
"lastedit": 1720433281,
"filesize": 6354,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/loona.png"
},
{
"id": "Steel",
"name": "Steel",
"author": "Potatoes",
"version": "1.0",
"description": "Holds my fursona if i was to remake them on how id have them shaped up today, kinda",
"contains": "Contains: 1 character",
"download": "datapacks/steel.res",
"lastedit": 1720461897,
"filesize": 8161,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/steel.png"
},
{
"id": "krystalpack",
"name": "KrystalPack",
"author": "Ghosty",
"version": "1.0",
"description": "Cerinian Fox Krystal, includes character and skin.\nThanks to AverageAce, for allowing me to modify some of their skins so I could make the Krystal skin. ^^",
"contains": "Contains: 1 character, 1 skin",
"download": "datapacks/krystalpack.res",
"lastedit": 1720598502,
"filesize": 163547,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/krystalpack.png"
},
{
"id": "Juniper Character",
"name": "Juniper",
"author": "weebiest",
"version": "1.0",
"description": "A humanoid-feline android harboring the memories of a soldier transferred into this body.",
"contains": "Contains: 1 character",
"download": "datapacks/Juniper Character.res",
"lastedit": 1721086075,
"filesize": 7940,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/Juniper Character.PNG"
},
{
"id": "silbycharacter",
"name": "Silby Character",
"author": "Silby",
"version": "1.0",
"description": "Adds an infertile submissive hybrid inmate. Can be found in engineering. REQUIRES the following mods:\n- Deer Species (by AverageAce/Fantos/Max-Maxou)\n- Hyena Parts (by AverageAce)\n- Sabertooth Heads (by AverageAce)",
"contains": "Contains: 1 character, 1 skin",
"download": "datapacks/silbycharacter.res",
"lastedit": 1721086115,
"filesize": 83527,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/silbycharacter.png"
},
{
"id": "usagisdatapack",
"name": "Usagi's Character Pack",
"author": "Usagi Fang",
"version": "1.0",
"description": "clothes mods as we as Rabbit Species, canine pussy, Knotted Horse cock, laquine species, and fluffy body mods are required.",
"contains": "Contains: 5 characters",
"download": "datapacks/usagisdatapack.res",
"lastedit": 1721114466,
"filesize": 40958,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/usagisdatapack.png"
},
{
"id": "FennyOC",
"name": "Shannon",
"author": "FennyFenFen",
"version": "1.0",
"description": "Wanted to make my oc in the game, I believe she is manageable to fight but she is strong",
"contains": "Contains: 1 character",
"download": "datapacks/FennyOC.res",
"lastedit": 1721114489,
"filesize": 7830,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/FennyOC.png"
},
{
"id": "usagischaracterpack2",
"name": "Usagi's Character Pack 2",
"author": "Usagi Fang",
"version": "1.0",
"description": "No description provided",
"contains": "Contains: 8 characters",
"download": "datapacks/usagischaracterpack2.res",
"lastedit": 1721219807,
"filesize": 68450,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/usagischaracterpack2.png"
},
{
"id": "B-AY",
"name": "Ayb",
"author": "DOOMPOISON",
"version": "1.0",
"description": "Ay-B an easygoing, 👫 relatively slutty, Nonbinary engineer.",
"contains": "Contains: 1 character",
"download": "datapacks/B-AY.res",
"lastedit": 1721464230,
"filesize": 6639,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/B-AY.png"
},
{
"id": "fennysocs",
"name": "Fenny's OC Character Pack",
"author": "FennyFenFen",
"version": "1.0",
"description": "Just wanted to make more of my OC's into the game, I hope you treat them nice :3\n\nYou'll need Clothes Mega Pack, More Uniforms and Protogen species mods if you want to download it",
"contains": "Contains: 6 characters",
"download": "datapacks/fennysocs.res",
"lastedit": 1721978085,
"filesize": 45782,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/fennysocs.png"
},
{
"id": "Kiana",
"name": "Kiana",
"author": "Makarov",
"version": "1.0",
"description": "This deviant inmate has an unusual obssession with being owned, before her arrest she was a prolific content creator who advertised to those of a feminine lifestyle that being a sex slave was the best lifestyle you could ever have. Frankly, she seems obsessive over this ideology and will likely become a slave immediately once she is inducted into Broken Dreams.",
"contains": "Contains: 1 character",
"download": "datapacks/kiana.res",
"lastedit": 1721993276,
"filesize": 7451,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/kiana.png"
},
{
"id": "Tyler",
"name": "Tyler Pack",
"author": "Makarov",
"version": "1.0",
"description": "Tyler is a the worst kind of sexual deviant, so much so he has been classified as a high security inmate. He has no respect forthose of feminine appearance and will rape any and all women and herms without discretion. If you're a man he might not enjoy It but his record shows he's claimed a few men in his crime spree. We hope his time at Broken dreams correctional facility canbe \"productive\" and bring forth a possible outcome of his rehabilitation. ",
"contains": "Contains: 1 character",
"download": "datapacks/tyler.res",
"lastedit": 1721993285,
"filesize": 6989,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/tyler.png"
},
{
"id": "maledergsmod",
"name": "Modded Male Dragon Wing",
"author": "Katz",
"version": "2.1",
"description": "Treat yourself to a squad of dominant male scalies in all fields of work. Maximum level of 75\n\nRequires two mods\nScalieExpansion and DragonsPlus ",
"contains": "Contains: 6 characters",
"download": "datapacks/maledergsmod.res",
"lastedit": 1722407030,
"filesize": 35036,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/maledergsmod.PNG"
},
{
"id": "Femdergsmod",
"name": "Modded Female Dragon Wing",
"author": "Katz",
"version": "2.1",
"description": "A whole flight of powerful ladies to dominate, or get dominated by. Maximum level of 50\nPlease be gentle with Snowdrop\n\nRequires two mods\nScalieExpansion and DragonsPlus ",
"contains": "Contains: 6 characters",
"download": "datapacks/Femdergsmod.res",
"lastedit": 1722407033,
"filesize": 40418,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/Femdergsmod.PNG"
},
{
"id": "jace",
"name": "Jace - The Babbit No One Asked for!",
"author": "Jace",
"version": "1.0",
"description": "Adds a Notoriously Stupid Bat-Rabbit Hybrid to your Prison Experience! Featuring Holes to Fill, A Fluffy Tail to touch, And a Skull so empty it could be used as storage space.\n\nSubmissive and Breedable, Because let's face it. The Prison can Always use more of them.\n\nRequirements;\nBat Species\nRabbit Species\nHair v1\nFluffy Body Parts",
"contains": "Contains: 1 character",
"download": "datapacks/jace.res",
"lastedit": 1722446028,
"filesize": 6846,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
]
},
{
"id": "q43rt70ipjaylin",
"name": "Jaylin my Original character I made on my playthrough.",
"author": "[REDACTED]#0293",
"version": "1.0",
"description": "Adds my O-character, you can randomly encounter her.\nEnjoy\nShe will dominate you unless you somehow manage to dare challenge her.\nWill absolutely mess you up if you aren't prepared. GL trying to enslave her.",
"contains": "Contains: 1 character",
"download": "datapacks/q43rt70ipjaylin.res",
"lastedit": 1722493174,
"filesize": 10946,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
],
"preview": "datapack_previews/q43rt70ipjaylin.png"
},
{
"id": "Frostbun",
"name": "Frosty Bunny",
"author": "Dracovile",
"version": "1.0",
"description": "A bunny inmate who's in for selling her infertile body on the streets",
"contains": "Contains: 1 character",
"download": "datapacks/Frostbun.res",
"lastedit": 1722619315,
"filesize": 1092243,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
"Rabbit_Species.zip",
"HypertusR4.zip",
"StockEvents.zip",
"Stock_events.zip"
],
"preview": "datapack_previews/Frostbun.png"
},
{
"id": "03082024oc1",
"name": "A-25",
"author": "Tell me more, about love.",
"version": "1.0",
"description": "Hyper futanari, OC a-25,",
"contains": "Contains: 1 character",
"download": "datapacks/03082024oc1.res",
"lastedit": 1722721092,
"filesize": 9466,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
"KnottedEquinePenisVer3.zip"
],
"preview": "datapack_previews/03082024oc1.PNG"
},
{
"id": "brevmancosmeticsurgery",
"name": "Cosmetic Surgery",
"author": "Brevman",
"version": "1.0",
"description": "Allows you to get cosmetic surgery at the doctors office.",
"contains": "Contains: 1 scene",
"download": "datapacks/brevmancosmeticsurgery.res",
"lastedit": 1722721095,
"filesize": 105879,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
]
},
{
"id": "brevmanscharacterpack2",
"name": "Brevman Mega Pack V4",
"author": "Brevman",
"version": "4.0",
"description": "A assortment of characters & scenes that I've made!\nTries to have a variety of all types. From the kind and gentle, to the utterly brutal. From the submissive to those that will crush you under their boot.\nEvery single character is highly customised, with unique attacks, loot tables, and detailed descriptions with backstory.\nTotal: 35 II 16 fem, 13 male, 6 andro II 21 inmates, 7 guards, 4 engineers, 3 nurses\nLevels 8-50 so far. Most are 20+ (Plus a single lvl 80 \"boss\")\nQuestlist:\nHelp Katherine get her clothes back. Feat: 13 custom sex scenes. Breeding, somnophilia, dubcon, violence, light prostitution\nScene list: (not counting scenes tied directly to quests)\nWIP Sleep under the yard tree. Feat 0/? sex scenes.\nWIP Chat with Katherine (got to complete her clothing quest first)",
"contains": "Contains: 36 characters, 7 scenes, 1 quest",
"download": "datapacks/brevmanscharacterpack2.res",
"lastedit": 1722721098,
"filesize": 6254759,
"requiredDatapacks": [
],
"reqDatapackToName": {
},
"requiredMods": [
]
},
{
"id": "god",
"name": "I made god",
"author": "luciodemonics",
"version": "any?",
"description": "it's god",
"contains": "Contains: 1 character",
"download": "datapacks/god.res",
"lastedit": 1722843552,
"filesize": 6760,
"requiredDatapacks": [
],