This repository has been archived by the owner on Mar 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathddmc.json
3846 lines (3846 loc) · 295 KB
/
ddmc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"modID": 228,
"modDate": "2020-12-02 00:00:00.000000",
"modUpdate": "2021-01-29 11:32:57.000000",
"modStatus": "Demo",
"modName": "Poems of Death",
"modDescription": "When Monika was found hanging in her bedroom, it took the club by shock. Mahlon was one of those who found the body. But there was immediately something fishy about it. That's when they found out she didn't kill herself. She was murdered.\r\nFrom that point, Faith didn't trust anyone. Her instincts were telling her over and over again: 'Anyone could be the murderer.' She needed to find who it was. For that, she needed information.\r\nAnd it was pretty clear that Tina knew more than she let on. Avoiding everyone since the murder, she only had one goal in mind. She would protect the only other person that she has. Even if she had to resort to the thing she despised the most...\r\n\r\nEVERYONE IS A SUSPECT.\r\nDON'T TRUST ANYONE.\r\n\r\n----------\r\n\r\nPublished by the Various Artists",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://www.mediafire.com/file/3tri985vtr2aac8/PoemsOfDeathDEMO-1.3-Renpy7Mod.zip/file",
"modPlayTimeHours": 2,
"modPlayTimeMinutes": 30,
"modSearch": "'1528':4B 'anyon':57C,67C,139C 'artist':144C 'avoid':97C 'bedroom':12C 'bodi':27C 'clear':88C 'club':16C 'could':68C 'death':3A 'despis':129C 'didn':43C,54C 'even':119C 'everyon':98C,132C 'faith':53C 'find':75C 'fishi':33C 'found':8C,25C,40C 'goal':106C 'hang':9C 'immedi':31C 'inform':83C 'instinct':59C 'kill':45C 'knew':91C 'let':95C 'mahlon':19C 'mind':108C 'monika':6C 'murder':49C,71C,101C 'need':73C,82C 'one':21C,105C 'person':115C 'poem':1A 'point':52C 'pretti':87C 'protect':111C 'publish':140C 'resort':124C 'shock':18C 'sinc':99C 'someth':32C 'suspect':135C 'tell':61C 'thing':127C 'tina':90C 'took':14C 'trust':56C,138C 'various':143C 'would':110C",
"modRating": 0,
"modAuthor_id": 1528,
"modAvatar": "files/user_1528/mods/None/images/CdE5VoI92gCWlJRpM0F7QrOsoCZ6CKKydyZ1tznqhSh6thoa9N.png",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1528/mods/None/images/previews/8NgJzufzWZaeOhnofWe9kVF74liHoTIAzhwInrly7qsBtm425q.jpg",
"modPreviewImage2": "files/user_1528/mods/None/images/previews/ZoHyAJQBifaxrhols8dkJTSZImixBSlcDf1cU4Kay702gEQjBl.jpg",
"modPreviewImage3": "files/user_1528/mods/None/images/previews/8guHhi3Qqx5wNQI5rkFpXmP3hII2Fuoh7D3PXjalSiynWnnxSC.jpg",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "https://youtu.be/cTtC3c1vx64",
"modShortDescription": "Poems of Death follows the murder of Monika, and the aftermaths. The club is left in distrust while they try to figure out who was the murderer...",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 112,
"modDate": "2019-12-25 00:00:00.000000",
"modUpdate": "2020-02-20 00:24:43.000000",
"modStatus": "Full release",
"modName": "Christmas with Monika",
"modDescription": "Hi everybody! :D\r\n\r\nI just finished creating a short, wholesome little mod about Monika having a Christmas party for the Literature Club.\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/effjc8/christmas_with_monika_mod/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://mega.nz/#!uP42WCDR!n1iAOUO3DttOwi23MjUHTL6stQo75XaLbtpm445QvF0",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 10,
"modSearch": "'/r/ddlcmods/comments/effjc8/christmas_with_monika_mod/':31C '115':4B 'christma':1A,21C 'club':26C 'creat':11C 'd':7C 'everybodi':6C 'finish':10C 'hi':5C 'link':28C 'literatur':25C 'littl':15C 'mod':16C 'monika':3A,18C 'parti':22C 'reddit':27C 'short':13C 'wholesom':14C 'www.reddit.com':30C 'www.reddit.com/r/ddlcmods/comments/effjc8/christmas_with_monika_mod/':29C",
"modRating": 0,
"modAuthor_id": 115,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Hi everybody! :D\r\n\r\nI just finished creating a short, wholesome little mod about Monika having a Christmas party for the Literature Club.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 51,
"modDate": "2019-10-16 12:26:11.000000",
"modUpdate": "2019-10-16 12:26:11.000000",
"modStatus": "Full release",
"modName": "Puzzled Memories Episode 1: The Voices of Different Realities",
"modDescription": "A Mod that lets you revisit other mods and change everyone's fate be warned there are events that you will face firsthand in this mission to save everyone and alter time and space.\r\n\r\nDiscord link: qECtm4h\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/9nz7a0/puzzled_memories_episode_1_the_voices_of/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/open?id=1ljPmqC_temfbFGQVSt81MHeGQXLJuxQG",
"modPlayTimeHours": 6,
"modPlayTimeMinutes": 0,
"modSearch": "'/r/ddlcmods/comments/9nz7a0/puzzled_memories_episode_1_the_voices_of/':52C '1':4A,10B 'alter':41C 'chang':20C 'differ':8A 'discord':45C 'episod':3A 'event':28C 'everyon':21C,39C 'face':32C 'fate':23C 'firsthand':33C 'let':14C 'link':46C,49C 'memori':2A 'mission':36C 'mod':12C,18C 'puzzl':1A 'qectm4h':47C 'realiti':9A 'reddit':48C 'revisit':16C 'save':38C 'space':44C 'time':42C 'voic':6A 'warn':25C 'www.reddit.com':51C 'www.reddit.com/r/ddlcmods/comments/9nz7a0/puzzled_memories_episode_1_the_voices_of/':50C",
"modRating": 0,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/None/images/Tvsf6gUTbtAQqb9M5xK0oReRx1fpem42a3kHJBcN0NDyuZqGA2",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "A Mod that lets you revisit other mods and change everyone's fate be warned there are events that you will face firsthand in this mission to save everyone and alter time and space.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "Azrathas",
"modInternalNote": ""
},
{
"modID": 21,
"modDate": "2019-10-10 20:33:26.000000",
"modUpdate": "2019-10-10 20:33:26.000000",
"modStatus": "Full release",
"modName": "Steamed Hams but it's a Doki Doki Literature Club",
"modDescription": "Just download the mod, you don't really have to read this description to know what this mod is about...",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://mega.nz/#!g3IXQSgI!OUtylWtxBLYjWbONol-S5z2KRDjlwvXlqK0h2EXOtz8",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 3,
"modSearch": "'1':11B 'club':10A 'descript':24C 'doki':7A,8A 'download':13C 'ham':2A 'know':26C 'literatur':9A 'mod':15C,29C 'read':22C 'realli':19C 'steam':1A",
"modRating": 4,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1/mods/None/images/previews/0liAjVOVzdpyTArkoNFpJAk81Jc6WqnpuK8w7RDXWMHSMVLS1r",
"modPreviewImage2": "files/user_1/mods/None/images/previews/VJWcqe90SiLb5g7FaLsx6bWfc5KdJKspjHAbnEWZSSWoxvxmY9",
"modPreviewImage3": "files/user_1/mods/None/images/previews/SbdGhxxpg3i76IRvT1ZQBxtIz1Vw4HoUSWKhDYtGnK4UCsWANm",
"modPreviewImage4": "files/user_1/mods/None/images/previews/cNywdGsVKiL6rz8qYsAStDDis08DkjT8yNyFpjcwhMp2Darxxd",
"modPreviewImage5": "",
"modPreviewVideo": "https://www.youtube.com/watch?v=C6j8Brp9GEM",
"modShortDescription": "You call hamburgers 'steamed hams'?",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 111,
"modDate": "2019-12-12 00:00:00.000000",
"modUpdate": "2020-02-20 00:23:14.000000",
"modStatus": "Full release",
"modName": "Don't",
"modDescription": "What is this mod about?\r\n\r\n-depression\r\n\r\n-dreams\r\n\r\n-friendship\r\n\r\nMod by /u/touchme-sensei",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://mega.nz/#!UdEhyYjB!NYxk9bQ66yZOyBFgfN5_owRhlUIV3irn7dj7oLOOEew",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 20,
"modSearch": "'/u/touchme-sensei':12C '1':1B 'depress':7C 'dream':8C 'friendship':9C 'mod':5C,10C",
"modRating": 3,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_136/mods/None/images/previews/6tAoicOJxfpKO4G05LNfE1BI5x8WAWen1xoyWuTc8C9RTCZohj",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "What is this mod about?\r\n\r\n-depression\r\n\r\n-dreams\r\n\r\n-friendship",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 66,
"modDate": "2019-10-16 15:08:19.000000",
"modUpdate": "2019-10-16 15:08:19.000000",
"modStatus": "Full release",
"modName": "Doki Doki Lit Club: Repainted",
"modDescription": "You know Games Repainted? Yeah that but for DDLC.\r\n\r\nMore information here: https://purplepainters.wixsite.com/purplepainters/doki-doki-lit-club",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://purplepainters.wixsite.com/purplepainters/doki-doki-lit-club",
"modPlayTimeHours": 4,
"modPlayTimeMinutes": 0,
"modSearch": "'/purplepainters/doki-doki-lit-club':21C '1':6B 'club':4A 'ddlc':15C 'doki':1A,2A 'game':9C 'inform':17C 'know':8C 'lit':3A 'purplepainters.wixsite.com':20C 'purplepainters.wixsite.com/purplepainters/doki-doki-lit-club':19C 'repaint':5A,10C 'yeah':11C",
"modRating": 3,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "You know Games Repainted? Yeah that but for DDLC.",
"modShow": true,
"modEdited": false,
"modNSFW": true,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 237,
"modDate": "2021-03-13 00:00:00.000000",
"modUpdate": "2021-03-15 12:45:21.000000",
"modStatus": "Full release",
"modName": "Doki Doki Vigilante Chapter 2",
"modDescription": "The story continues in Chapter 2 of Doki Doki Vigilante! After joining the literature club and learning of his new powers, MC must now try to come to terms with them alongside dealing with the reveal of the club president's true identity.",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/file/d/1QZwGVeK-vrMZsmFzk8agkprwgSGcdk3K/view",
"modPlayTimeHours": 3,
"modPlayTimeMinutes": 0,
"modSearch": "'2':5A,12C '53':6B 'alongsid':38C 'chapter':4A,11C 'club':21C,45C 'come':33C 'continu':9C 'deal':39C 'doki':1A,2A,14C,15C 'ident':49C 'join':18C 'learn':23C 'literatur':20C 'mc':28C 'must':29C 'new':26C 'power':27C 'presid':46C 'reveal':42C 'stori':8C 'term':35C 'tri':31C 'true':48C 'vigilant':3A,16C",
"modRating": 0,
"modAuthor_id": 53,
"modAvatar": "files/user_53/mods/None/images/2aTaEu97Y4aHh7f4Nn12yFatgk9nvGkYTP4y4YqryVPWWDIwlA.png",
"modBackground": "",
"modBackgroundTiledStretch": "Stretched",
"modPreviewImage1": "files/user_53/mods/None/images/previews/mC9ay8W8CNNJOv1sWnQJYyzL34H6R79fVA6duX7XDjp8m12f6Y.jpg",
"modPreviewImage2": "files/user_53/mods/None/images/previews/YEWE2BZO906ZDsCD4NCMj2BZZwdiNcROmcfySQP7PC1pBSVo7u.jpg",
"modPreviewImage3": "files/user_53/mods/None/images/previews/4KDJNQ2wl0KqZOJcbr8g1kF6oSNwD3uc4BxiO719T3LHmKbJCh.jpg",
"modPreviewImage4": "files/user_53/mods/None/images/previews/jmk8eatsLCdiEgmoJcEiih3N0wF71xZr3KOHoHao1XhZ6rfvrj.jpg",
"modPreviewImage5": "files/user_53/mods/None/images/previews/YROgmoVjReYcGphEfBSlng1ZKclGPuwqXTZV3R8VVOL9VnsdPr.jpg",
"modPreviewVideo": "https://youtu.be/p09MlJLEVJs",
"modShortDescription": "Chapter 2 of Doki Doki Vigilante!",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 31,
"modDate": "2019-10-13 12:27:05.000000",
"modUpdate": "2019-10-13 12:27:05.000000",
"modStatus": "Full release",
"modName": "Doki Doki College Club",
"modDescription": "So, since this is the official release of my mod \"Doki Doki College Club\", here's a few things that you should know:\r\n\r\n- You should play the original game before playing this mod. This is really important to get the full experience. It has some references to the original.\r\n\r\n- It has a completely new story which means new dialogue. The story is mainly funny with some jokes from r/DDLC, but not limited to it. Also, MC is kind of a foreveraloner, so he tries to get close to the dokis. Will he succeed or fail?\r\n\r\n- The mod takes place in college if that wasn't obvious enough.\r\n\r\n- The dokis retain their personalities for the most part.\r\n\r\n- One thing they don't keep is their obsession with MC like in the original. To them he's just another guy at school.\r\n\r\n- MC meets each doki in classes at college with the exception of Sayori. She is still MC's childhood friend.\r\n\r\nSo, essentially everything seems to be going good for MC, but it does not stay like that.\r\n\r\nBasically, the point of the mod is to be funny. If you don't find it funny at any point during the mod then I have failed. I had always planned to make this mod short since I don't have much free time (I'm in college). In fact, I didn't even plan on releasing it (it was more of a spring break project), but people were actually interested so I decided to release it. When I posted the logo for the mod, I had finished most of it. I think I spent 50 hours on it. Regardless, I hope you have fun playing it because I had fun making it.\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/88d9fh/doki_doki_college_club_mod_full_release_its/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://www.mediafire.com/file/rqz3ep7bczz8cp9/DDCC_v1.2.1.zip/file",
"modPlayTimeHours": 1,
"modPlayTimeMinutes": 0,
"modSearch": "'/r/ddlcmods/comments/88d9fh/doki_doki_college_club_mod_full_release_its/':300C '1':5B '50':278C 'actual':252C 'also':80C 'alway':212C 'anoth':142C 'basic':183C 'break':247C 'childhood':164C 'class':151C 'close':92C 'club':4A,19C 'colleg':3A,18C,106C,153C,230C 'complet':58C 'decid':256C 'dialogu':64C 'didn':234C 'doki':1A,2A,16C,17C,95C,114C,149C 'enough':112C 'essenti':167C 'even':236C 'everyth':168C 'except':156C 'experi':47C 'fact':232C 'fail':100C,209C 'find':197C 'finish':270C 'foreveralon':86C 'free':225C 'friend':165C 'full':46C 'fun':287C,293C 'funni':69C,192C,199C 'game':34C 'get':44C,91C 'go':172C 'good':173C 'guy':143C 'hope':284C 'hour':279C 'import':42C 'interest':253C 'joke':72C 'keep':127C 'kind':83C 'know':28C 'like':133C,181C 'limit':77C 'link':297C 'logo':264C 'm':228C 'main':68C 'make':215C,294C 'mc':81C,132C,146C,162C,175C 'mean':62C 'meet':147C 'mod':15C,38C,102C,188C,205C,217C,267C 'much':224C 'new':59C,63C 'obsess':130C 'obvious':111C 'offici':11C 'one':122C 'origin':33C,54C,136C 'part':121C 'peopl':250C 'person':117C 'place':104C 'plan':213C,237C 'play':31C,36C,288C 'point':185C,202C 'post':262C 'project':248C 'r/ddlc':74C 'realli':41C 'reddit':296C 'refer':51C 'regardless':282C 'releas':12C,239C,258C 'retain':115C 'sayori':158C 'school':145C 'seem':169C 'short':218C 'sinc':7C,219C 'spent':277C 'spring':246C 'stay':180C 'still':161C 'stori':60C,66C 'succeed':98C 'take':103C 'thing':24C,123C 'think':275C 'time':226C 'tri':89C 'wasn':109C 'www.reddit.com':299C 'www.reddit.com/r/ddlcmods/comments/88d9fh/doki_doki_college_club_mod_full_release_its/':298C",
"modRating": 4.5,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/None/images/a8ekFRGv3UFyyW4YlTYw5EpyIYmq0ill10f0fZTnGYuLjn22nK",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Join the doki's in college!",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "DokiDokiStar",
"modInternalNote": ""
},
{
"modID": 43,
"modDate": "2019-10-14 15:13:10.000000",
"modUpdate": "2019-10-14 15:13:10.000000",
"modStatus": "Full release",
"modName": "The Yuri Parable",
"modDescription": "This is the story of a girl named Yuri. Yuri was a schoolgirl like any other; she would go to classes, have lunch, and meet with her friends in the literature club. While she didn't deem her life as particularly exciting, it was interesting enough for her. After all, she had plenty of things to do: Expand her knife collection, try new types of tea, and explore the world of poetry. At this point, it didn't matter what Yuri's future held for her, or how her past treated her. What matters is that Yuri... was happy.\r\n\r\nBut then one day, something peculiar happened...\r\n\r\n------------------------------------------------\r\n\r\nThe Yuri Parable is finally finished!\r\n\r\nIf you don't know what this is, it's basically a Stanley Parable inspired mod, where Yuri is the protagonist. If you don't know what the Stanley Parable is, well... you really have to see it for yourself. (Honestly I highly recommend it, definitely one of my favorite games)\r\n\r\nLike the original TSP, this mod contains many endings and also a few easter eggs/references.\r\n\r\nI hope you all enjoy it!\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/951ft0/the_yuri_parable_full_release/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/open?id=1t-BUw-p6OXIiyT2wBDzAZyQDTjA0DaGe",
"modPlayTimeHours": 4,
"modPlayTimeMinutes": 0,
"modSearch": "'/r/ddlcmods/comments/951ft0/the_yuri_parable_full_release/':193C '1':4B 'also':178C 'basic':127C 'class':25C 'club':36C 'collect':65C 'contain':174C 'day':107C 'deem':41C 'definit':162C 'didn':39C,81C 'easter':181C 'eggs/references':182C 'end':176C 'enjoy':187C 'enough':50C 'excit':46C 'expand':62C 'explor':72C 'favorit':166C 'final':115C 'finish':116C 'friend':32C 'futur':87C 'game':167C 'girl':11C 'go':23C 'happen':110C 'happi':103C 'held':88C 'high':159C 'honest':157C 'hope':184C 'inspir':131C 'interest':49C 'knife':64C 'know':121C,142C 'life':43C 'like':18C,168C 'link':190C 'literatur':35C 'lunch':27C 'mani':175C 'matter':83C,98C 'meet':29C 'mod':132C,173C 'name':12C 'new':67C 'one':106C,163C 'origin':170C 'parabl':3A,113C,130C,146C 'particular':45C 'past':94C 'peculiar':109C 'plenti':57C 'poetri':76C 'point':79C 'protagonist':137C 'realli':150C 'recommend':160C 'reddit':189C 'schoolgirl':17C 'see':153C 'someth':108C 'stanley':129C,145C 'stori':8C 'tea':70C 'thing':59C 'treat':95C 'tri':66C 'tsp':171C 'type':68C 'well':148C 'world':74C 'would':22C 'www.reddit.com':192C 'www.reddit.com/r/ddlcmods/comments/951ft0/the_yuri_parable_full_release/':191C 'yuri':2A,13C,14C,85C,101C,112C,134C",
"modRating": 3,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/None/images/iMk2S9Vh1jdTBJ25RT2WtLLOEYTiMLTSPI1f99K7v6zTpqZHS3",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Stanley Parable inspired mod, where Yuri is the protagonist.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "Animystix",
"modInternalNote": ""
},
{
"modID": 48,
"modDate": "2019-10-15 20:23:03.000000",
"modUpdate": "2019-10-15 20:23:03.000000",
"modStatus": "Full release",
"modName": "Meet the Buffsuki",
"modDescription": "A short crossover episode between DDLC and Meet the Heavy from the game Team Fortress 2.",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/file/d/1f1VH4iDskRkt0ghApynfzZUK2Dlgrkk7/view",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 30,
"modSearch": "'1':4B '2':20C 'buffsuki':3A 'crossov':7C 'ddlc':10C 'episod':8C 'fortress':19C 'game':17C 'heavi':14C 'meet':1A,12C 'short':6C 'team':18C",
"modRating": 5,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "https://www.youtube.com/watch?v=3Ip10jil49k&feature=youtu.be",
"modShortDescription": "A short crossover episode between DDLC and Meet the Heavy from the game Team Fortress 2.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "Jelli0",
"modInternalNote": ""
},
{
"modID": 132,
"modDate": "2020-04-20 00:00:00.000000",
"modUpdate": "2020-04-19 15:07:35.000000",
"modStatus": "Full release",
"modName": "Doki Doki Say Goodbye",
"modDescription": "So I made a short mod that's about Yuri, Natsuki and Monika kidnapping MC and torturing him.",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "http://www.mediafire.com/file/xav0u9sr1v4acja/Doki_Doki_Say_Goodbye-1.0.0-Mod.zip/file",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 2,
"modSearch": "'244':5B 'doki':1A,2A 'goodby':4A 'kidnap':19C 'made':8C 'mc':20C 'mod':11C 'monika':18C 'natsuki':16C 'say':3A 'short':10C 'tortur':22C 'yuri':15C",
"modRating": 0,
"modAuthor_id": 244,
"modAvatar": "files/user_244/mods/None/images/JBhkxbx6A3vCSubB5iL0mLwPyisjkd7xrwojW3sMLjwDSCaSnc",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_244/mods/None/images/previews/bLH07CFdHSr6fLXMlyeSDNu3BoajuvxOvDBYP2ElT9HxIQTYhH",
"modPreviewImage2": "files/user_244/mods/None/images/previews/wauHm0c7bUyvfCU48RVz5UHZEL0UKU5kN10LEM4eGEYs7VN3nQ",
"modPreviewImage3": "files/user_244/mods/None/images/previews/sDL1Po3R2rCwwQZB5UeIyTVPBt8Ep2zvmh4xJTRQ5JcVRxtP4c",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "What if Yuri, Natsuki and Monika kidnap MC and torture him?",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 37,
"modDate": "2019-10-13 14:24:58.000000",
"modUpdate": "2019-10-13 14:24:58.000000",
"modStatus": "Full release",
"modName": "MonikAI",
"modDescription": "Monika from DDLC keeping you company on your desktop!\r\nFun little program that lets Monika onto your PC so she can make little comments on your actions.",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "http://monik.ai/",
"modPlayTimeHours": 999,
"modPlayTimeMinutes": 0,
"modSearch": "'1':2B 'action':29C 'comment':26C 'compani':8C 'ddlc':5C 'desktop':11C 'fun':12C 'keep':6C 'let':16C 'littl':13C,25C 'make':24C 'monika':3C,17C 'monikai':1A 'onto':18C 'pc':20C 'program':14C",
"modRating": 5,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Monika from DDLC keeping you company on your desktop!",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "PiMaker101",
"modInternalNote": ""
},
{
"modID": 118,
"modDate": "2019-12-24 00:00:00.000000",
"modUpdate": "2020-02-29 14:16:41.000000",
"modStatus": "Full release",
"modName": "DDCCP (Christmas Carol Peluche)",
"modDescription": "DDCCP is a mini Christmas mod made during the Christmas mod event. It follows MC having another one of his moods and suddenly has to change himself for the better as a new person threatens his life or his dreams to become better by actually interacting on the holiday. Will MC follow suit and not risk his torment? Slip? Say nah and die or have paranoia for the rest of his life? Who is 123?",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/open?id=18_UVpwxyDh98W0FWrQzimRMy2PNuBukl",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 23,
"modSearch": "'123':80C '51':5B 'actual':50C 'anoth':22C 'becom':47C 'better':35C,48C 'carol':3A 'chang':31C 'christma':2A,10C,15C 'ddccp':1A,6C 'die':68C 'dream':45C 'event':17C 'follow':19C,57C 'holiday':54C 'interact':51C 'life':42C,77C 'made':12C 'mc':20C,56C 'mini':9C 'mod':11C,16C 'mood':26C 'nah':66C 'new':38C 'one':23C 'paranoia':71C 'peluch':4A 'person':39C 'rest':74C 'risk':61C 'say':65C 'slip':64C 'sudden':28C 'suit':58C 'threaten':40C 'torment':63C",
"modRating": 2,
"modAuthor_id": 51,
"modAvatar": "files/user_51/mods/None/images/f7vgL5iVHzhu6MYC7MMQuPg5ojjhgKS3av84B6C73dkADginou",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_51/mods/None/images/previews/76janwIuOmtMw479ijPJXCYmO1ykv57dxzOFxT0r25RkUqhv5t",
"modPreviewImage2": "files/user_51/mods/None/images/previews/D2Nl5JYWx2E7AdYSl98hduP5belxC8ihbX9fxIXSBmMMJZq2pS",
"modPreviewImage3": "files/user_51/mods/None/images/previews/C3TrgVmAu5bJ0CXcxdfxVz5lfWubVdXwglkcg9l8uTBEHs5NQ4",
"modPreviewImage4": "files/user_51/mods/None/images/previews/ph4jc0oLqBNn4YgYLbA4AtLcKqoMy32J2u7VymvhkSspen2Fec",
"modPreviewImage5": "files/user_51/mods/None/images/previews/DNe6ayGd4IYd0RcvH9Y8gqcpk2rohOqMhNA0Igyl6ZyIQNTk1S",
"modPreviewVideo": "",
"modShortDescription": "DDCCP is a mini Christmas mod made during the Christmas mod event. It follows MC having another one of his moods and suddenly has to change himself for the better as a new person threatens his life and dreams by actually interacting on the holiday.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 179,
"modDate": "2020-01-01 00:00:00.000000",
"modUpdate": "2020-11-12 00:23:59.000000",
"modStatus": "Demo",
"modName": "Doki Doki Bleak Reality",
"modDescription": "After the events of the act 4, and the game is \"done\", Monika decides to restore the world to it's original state so that the player has another chance to save the club, editing the code a bit so that the \"old\" Monika can't edit the code, unfortunately, she messes up the code a bit while doing so and makes the mc depressed as well, but doesn't realize it. Will you be able to overcome this new obstacle and save the girls one last time, or will you fail to do so and begin the cycle of torment and death of the literature club members?",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/file/d/15-aeUFfDUoy7GwbaLTV8SmNOtznTPGzG/view?usp=sharing",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 45,
"modSearch": "'1115':5B '4':12C 'abl':81C 'act':11C 'anoth':34C 'begin':102C 'bit':44C,62C 'bleak':3A 'chanc':35C 'club':39C,112C 'code':42C,54C,60C 'cycl':104C 'death':108C 'decid':19C 'depress':70C 'doesn':74C 'doki':1A,2A 'done':17C 'edit':40C,52C 'event':8C 'fail':97C 'game':15C 'girl':90C 'last':92C 'literatur':111C 'make':67C 'mc':69C 'member':113C 'mess':57C 'monika':18C,49C 'new':85C 'obstacl':86C 'old':48C 'one':91C 'origin':27C 'overcom':83C 'player':32C 'realiti':4A 'realiz':76C 'restor':21C 'save':37C,88C 'state':28C 'time':93C 'torment':106C 'unfortun':55C 'well':72C 'world':23C",
"modRating": 0,
"modAuthor_id": 1115,
"modAvatar": "",
"modBackground": "files/user_1115/mods/None/images/3zib3hvz8rNCWEqyL7ZSuzeaaR2jpKSzh1o3pjf4mpVq96TF1k.jpg",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1115/mods/None/images/previews/mw8DKyp96FkRHlgOYqJfShGimjsRkysR5SIJwUrpVAuNVQIKeN.jpg",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Monika gives the player another chance to save the girls, and edits the code so her old self can't change anything, but accidentally make the mc depressed, will you be able to overcome the new obstacle and save the girls or will you fail to do so?",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 6,
"modDate": "2019-09-26 16:00:46.000000",
"modUpdate": "2019-09-26 19:23:25.000000",
"modStatus": "Full release",
"modName": "Another Moment With You Episode 2",
"modDescription": "I am pleased to announce the full release of Episode 2 of DDLC: Another Moment With You! This episode will cover the same amount of time as Episode 1, but this time with a focus on Yuri. You'll see how Yuri's story intersects with the events of the first episode, and finally how the day of the festival plays out from her perspective.\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/9ljdwu/general_release_of_doki_doki_literature_club/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/drive/u/1/folders/1VOgj5yxuiYYL-QFqESO4GGvvYauahki-",
"modPlayTimeHours": 3,
"modPlayTimeMinutes": 0,
"modSearch": "'/r/ddlcmods/comments/9ljdwu/general_release_of_doki_doki_literature_club/':77C '1':7B,36C '2':6A,18C 'amount':31C 'announc':12C 'anoth':1A,21C 'cover':28C 'day':64C 'ddlc':20C 'episod':5A,17C,26C,35C,59C 'event':55C 'festiv':67C 'final':61C 'first':58C 'focus':42C 'full':14C 'intersect':52C 'link':74C 'll':46C 'moment':2A,22C 'perspect':72C 'play':68C 'pleas':10C 'reddit':73C 'releas':15C 'see':47C 'stori':51C 'time':33C,39C 'www.reddit.com':76C 'www.reddit.com/r/ddlcmods/comments/9ljdwu/general_release_of_doki_doki_literature_club/':75C 'yuri':44C,49C",
"modRating": 0,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1/mods/None/images/previews/OnJNUZsZ8AB8vwMW7ncAdfRunP01dijgJ0hPzRDHGwfkBa9qxI",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "https://youtu.be/Oh2_0QtI6NA",
"modShortDescription": "This episode will cover the same amount of time as Episode 1, but this time with a focus on Yuri. You'll see how Yuri's story intersects with the events of the first episode, and finally how the day of the festival plays out from her perspective.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "Guardian_Bravo",
"modInternalNote": ""
},
{
"modID": 69,
"modDate": "2019-10-16 15:27:17.000000",
"modUpdate": "2019-10-16 15:27:17.000000",
"modStatus": "Full release",
"modName": "DDLC Nightmare",
"modDescription": "Okay, Everyone recently i received a mod challenge by the YouTuber named Kuudere Ghost, he's been doing this with other devs too. The challenge was to make a mod within 48hrs and the theme given to me was, well \"HORROR\". I liked the idea and since this is a nice way to blow of steam from developing Doki Doki President Natsuki, I gladly accepted but also took it a step further.\r\n\r\n\r\nMe and my teammate /u/BoiSourish\r\n\r\nmade this mod in 9hrs!\r\n\r\nI Wrote the script and Boi did all the coding.\r\n\r\nMaking this mod was a fun experience and we may do more in the future.\r\n\r\nCreator is TrueLoverofMonika : Trueloverofmonika#5084\r\n\r\nWebsite: teamai.xyz\r\n\r\nDiscord link: https://discord.gg/zkkaHhk\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/axrhqu/a_new_mod_ready_to_play_ddlc_nightmare/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/open?id=1reMchBdW0qVJM2Afu451_VRUGMSt3M2O",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 20,
"modSearch": "'/r/ddlcmods/comments/axrhqu/a_new_mod_ready_to_play_ddlc_nightmare/':127C '/u/boisourish':80C '/zkkahhk':122C '1':3B '48hrs':35C '5084':115C '9hrs':85C 'accept':68C 'also':70C 'blow':57C 'boi':91C 'challeng':11C,28C 'code':95C 'creator':111C 'ddlc':1A 'dev':25C 'develop':61C 'discord':118C 'discord.gg':121C 'discord.gg/zkkahhk':120C 'doki':62C,63C 'everyon':5C 'experi':102C 'fun':101C 'futur':110C 'ghost':17C 'given':39C 'glad':67C 'horror':44C 'idea':48C 'kuuder':16C 'like':46C 'link':119C,124C 'made':81C 'make':31C,96C 'may':105C 'mod':10C,33C,83C,98C 'name':15C 'natsuki':65C 'nice':54C 'nightmar':2A 'okay':4C 'presid':64C 'receiv':8C 'recent':6C 'reddit':123C 'script':89C 'sinc':50C 'steam':59C 'step':74C 'teamai.xyz':117C 'teammat':79C 'theme':38C 'took':71C 'trueloverofmonika':113C,114C 'way':55C 'websit':116C 'well':43C 'within':34C 'wrote':87C 'www.reddit.com':126C 'www.reddit.com/r/ddlcmods/comments/axrhqu/a_new_mod_ready_to_play_ddlc_nightmare/':125C 'youtub':14C",
"modRating": 2.5,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "A nightmare or reality? Good Luck.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 50,
"modDate": "2019-10-15 21:20:30.000000",
"modUpdate": "2019-10-15 21:20:30.000000",
"modStatus": "Full release",
"modName": "Shattered World",
"modDescription": "A mod where Monika brings back everything after being in the void\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/9ntyt5/ddlc_shattered_world_full_release/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://mega.nz/#!yCxxxY6a!Mbb6tWwZD4dTSZBZz2v7-KL4rCAtgbJ2S1N34fmxRM4",
"modPlayTimeHours": 4,
"modPlayTimeMinutes": 0,
"modSearch": "'/r/ddlcmods/comments/9ntyt5/ddlc_shattered_world_full_release/':20C '1':3B 'back':9C 'bring':8C 'everyth':10C 'link':17C 'mod':5C 'monika':7C 'reddit':16C 'shatter':1A 'void':15C 'world':2A 'www.reddit.com':19C 'www.reddit.com/r/ddlcmods/comments/9ntyt5/ddlc_shattered_world_full_release/':18C",
"modRating": 0,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/None/images/YqwFTXAjSGxRDb4HxFxushjPVT61MkSDzD4lRNYK2ubGraoOln",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1/mods/None/images/previews/g7Qi7nRZXtwHg5uYza34bPpEsuy1775U6leTWcwe9x4m1iUF7g",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "A mod where Monika brings back everything after being in the void",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "Ocleg",
"modInternalNote": ""
},
{
"modID": 56,
"modDate": "2019-10-16 13:27:40.367067",
"modUpdate": "2019-10-16 13:27:40.367088",
"modStatus": "Full release",
"modName": "The DDLC Mod that Keeps On Modding",
"modDescription": "DDLC Mod Using a Neural Network That Mods The Game Itself\r\n\r\nI've been experimenting with neural network related stuff lately and this was one of the first projects that uses a neural network I've trained. The dialogue ends up being a mix of hilarious nonsense and terrifying nonsense (it can even add effects, change scenes, music, or even stop music altogether!)\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/9xqttd/ddlc_mod_using_a_neural_network_that_mods_the/\r\nGithub link: https://github.com/stephwag/doki-rnn",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://github.com/stephwag/doki-rnn.git",
"modPlayTimeHours": 999,
"modPlayTimeMinutes": 0,
"modSearch": "'/r/ddlcmods/comments/9xqttd/ddlc_mod_using_a_neural_network_that_mods_the/':76C '/stephwag/doki-rnn':81C '1':8B 'add':62C 'altogeth':71C 'chang':64C 'ddlc':2A,9C 'dialogu':47C 'effect':63C 'end':48C 'even':61C,68C 'experi':23C 'first':36C 'game':18C 'github':77C 'github.com':80C 'github.com/stephwag/doki-rnn':79C 'hilari':54C 'keep':5A 'late':29C 'link':73C,78C 'mix':52C 'mod':3A,7A,10C,16C 'music':66C,70C 'network':14C,26C,42C 'neural':13C,25C,41C 'nonsens':55C,58C 'one':33C 'project':37C 'reddit':72C 'relat':27C 'scene':65C 'stop':69C 'stuff':28C 'terrifi':57C 'train':45C 'use':11C,39C 've':21C,44C 'www.reddit.com':75C 'www.reddit.com/r/ddlcmods/comments/9xqttd/ddlc_mod_using_a_neural_network_that_mods_the/':74C",
"modRating": 1,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1/mods/None/images/previews/LLEgtg2RchNGAFQQgTLmLxSYwAXXXdESzXxdBJOGNzuBcq8AnU",
"modPreviewImage2": "files/user_1/mods/None/images/previews/aMho2WqJFRq51af4A46ILf6MI6d9eNoyTeIz0KmmTGhZOgTzdX",
"modPreviewImage3": "files/user_1/mods/None/images/previews/7GiXuTE2y1d1npm81AdtpGbfCnawMh74vy3OkMcl9Is7OXLi0T",
"modPreviewImage4": "files/user_1/mods/None/images/previews/vUdfqCRKG2O2AZxgZOIngFnazFw3mkrzZBssCJCQCe4HyLMtXT",
"modPreviewImage5": "",
"modPreviewVideo": "https://www.youtube.com/watch?v=WrrrUQUd3mI",
"modShortDescription": "It uses a recurrent neural network that continuously writes code for the game to execute.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 156,
"modDate": "2020-08-02 00:00:00.000000",
"modUpdate": "2020-08-14 17:34:52.000000",
"modStatus": "Demo",
"modName": "Chad MC",
"modDescription": "Basically, it's a remake of act 1 but the MC is a stereotypical douche. He's about 20x denser, and much more of a jerk than ever before!",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/drive/folders/1QojGDEgVG1ChFdsF0RTw7-9kgQCwTqRA?usp=sharing",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 30,
"modSearch": "'1':11C '20x':22C '679':3B 'act':10C 'basic':4C 'chad':1A 'denser':23C 'douch':18C 'ever':31C 'jerk':29C 'mc':2A,14C 'much':25C 'remak':8C 'stereotyp':17C",
"modRating": 5,
"modAuthor_id": 679,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Basically, it's a remake of act 1 but the MC is a stereotypical douche. He's about 20x denser, and much more of a jerk than ever before!",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 191,
"modDate": "2020-12-31 00:00:00.000000",
"modUpdate": "2021-01-01 03:11:11.000000",
"modStatus": "Full release",
"modName": "DDMMP",
"modDescription": "Part of the New Year's Mod Challenge. A somewhat comic relief of 2020 by the club themselves for you for a better 2021.\r\n\r\nThis mod is available for Android and PC/Mac/Linux",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/drive/folders/1omYSpARbW9iONDoVvrYdlQCHPMP83hrB?usp=sharing",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 30,
"modSearch": "'2020':16C '2021':26C '51':2B 'android':32C 'avail':30C 'better':25C 'challeng':10C 'club':19C 'comic':13C 'ddmmp':1A 'mod':9C,28C 'new':6C 'part':3C 'pc/mac/linux':34C 'relief':14C 'somewhat':12C 'year':7C",
"modRating": 1,
"modAuthor_id": 51,
"modAvatar": "files/user_51/mods/None/images/NUauVM5IxNVaVbEJvVRIF1qGv01VUlkiXvR3ZI5ei9qoKydeLC.png",
"modBackground": "files/user_51/mods/None/images/PR2TNH7DJWiwQxGN0YyjL7zvx0zn6Pzak1dht5oaOVNb0B5v6r.jpg",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_51/mods/None/images/previews/EqAU3hbz6T2U9DBO8eDfpeFgAkniwXN0nZCZrLmFrXltFZSXKC.jpg",
"modPreviewImage2": "files/user_51/mods/None/images/previews/AmlKj29ps07k3vAV7PnWzM6OQVhrUEivvEug08wIVhy5vCqYN5.jpg",
"modPreviewImage3": "files/user_51/mods/None/images/previews/ORcnzQY7K2eTOzv6A30Wq37LMv5rnsxp1EVv3TASuozlgQcJGQ.jpg",
"modPreviewImage4": "files/user_51/mods/None/images/previews/SqVbh8NAnHt9uQSOX5LdspKJ76vmNuzBdnL60jY36Cv9XgHQfw.jpg",
"modPreviewImage5": "files/user_51/mods/None/images/previews/BKHl9iElGbY83SSp1gP0QFS8dd5ghYGJhQkgaSiWh8V9dwEE5H.jpg",
"modPreviewVideo": "",
"modShortDescription": "Comic relief of 2020 by the club members for a better 2021. Android-workable mod.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 230,
"modDate": "2021-02-05 00:00:00.000000",
"modUpdate": "2021-02-05 20:47:45.000000",
"modStatus": "Demo",
"modName": "DDLC: Green Passion DEMO",
"modDescription": "DDLC: Green Passion is a Doki Doki Literature Club Mod that bases itself around Monika.\r\n\r\nDemo 1 Background:\r\nIt's the first day of the new semester for your final year in high school. Your old friend and crush, Monika is creating a club and asks if would like to join along. She tells you your childhood friend Sayori and a few others she knows, Natsuki and Yuri, are joining.\r\n\r\nDive into a world safe from sentience where you join and live your days as part of the newly formed Literature Club. Work to rekindle your friendship with Monika, and building new ones with Natsuki and Yuri.\r\n\r\nWho knows what would unfold in Green Passion.",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/drive/folders/1gDY2Nuks2ZpSSwMV0F7gbcmH9a0OjVmI",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 45,
"modSearch": "'1':22C '1553':5B 'along':57C 'around':19C 'ask':51C 'background':23C 'base':17C 'build':106C 'childhood':62C 'club':14C,49C,97C 'creat':47C 'crush':44C 'day':28C,89C 'ddlc':1A,6C 'demo':4A,21C 'dive':76C 'doki':11C,12C 'final':35C 'first':27C 'form':95C 'friend':42C,63C 'friendship':102C 'green':2A,7C,119C 'high':38C 'join':56C,75C,85C 'know':70C,114C 'like':54C 'literatur':13C,96C 'live':87C 'mod':15C 'monika':20C,45C,104C 'natsuki':71C,110C 'new':31C,107C 'newli':94C 'old':41C 'one':108C 'other':68C 'part':91C 'passion':3A,8C,120C 'rekindl':100C 'safe':80C 'sayori':64C 'school':39C 'semest':32C 'sentienc':82C 'tell':59C 'unfold':117C 'work':98C 'world':79C 'would':53C,116C 'year':36C 'yuri':73C,112C",
"modRating": 0,
"modAuthor_id": 1553,
"modAvatar": "files/user_1553/mods/None/images/ph2pnPzRShBfpZ9MxGkIXs4JZOZ3Yxyrdn7hiWVUoG1U55bLcZ.png",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1553/mods/None/images/previews/WMDsGyqI95cpAeoa80xxh83vhqzqALvc2hKvicOGMXJv1Sli9o.jpg",
"modPreviewImage2": "files/user_1553/mods/None/images/previews/JNX5XoYHnf2YjOmzU1NPz1L6LK72tZhWcKSjIZ4qf0aONS5VGf.jpg",
"modPreviewImage3": "files/user_1553/mods/None/images/previews/DxAOExYhXiqJy3satoa29OwhVOCWVx8vVrBWkj0qhORXHrNf1F.jpg",
"modPreviewImage4": "files/user_1553/mods/None/images/previews/lzSrEFEmMsW0PSiZZuxJe6sl0ICRzLQnoHPlrfk7YZgyHKvqTu.jpg",
"modPreviewImage5": "files/user_1553/mods/None/images/previews/9L1NG0LIWjs3xY29n7vQaXuBQyDxolCUSGEgshaC2oXtIMakir.jpg",
"modPreviewVideo": "",
"modShortDescription": "Green Passion DEMO focuses on Monika and MC's rekindling of their friendship through the Literature Club.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 39,
"modDate": "2019-10-13 15:05:02.000000",
"modUpdate": "2019-10-13 15:05:02.000000",
"modStatus": "Full release",
"modName": "Focus On Me",
"modDescription": "This is the first mod i have ever made and i hope you like it\r\n\r\nI do not really know how to describe the game so just play it to find out\r\n\r\nAlso i worked really really hard on this\r\n\r\nThere is multiple endings and routes so please explore them all\r\n\r\nI AM UNSURE WHETHER THIS IS FINISHED OR NOT BUT IT PROBABLY IS\r\n\r\nTHERE IS A SEQUEL AFTER THIS LINK IN THIS POST TO THE SEQUEL\r\n\r\nDELETE \"FIRSTRUN\" IN THE GAME FILES TO CHANGE NAME\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/8m5uwz/focus_on_me_mod/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "http://www.mediafire.com/file/pw4ar4ab6d5vtbb/FOMV1.rar/file",
"modPlayTimeHours": 1,
"modPlayTimeMinutes": 0,
"modSearch": "'/r/ddlcmods/comments/8m5uwz/focus_on_me_mod/':93C '1':2B 'also':35C 'chang':87C 'delet':80C 'describ':25C 'end':46C 'ever':10C 'explor':51C 'file':85C 'find':33C 'finish':60C 'first':6C 'firstrun':81C 'focus':1A 'game':27C,84C 'hard':40C 'hope':14C 'know':22C 'like':16C 'link':73C,90C 'made':11C 'mod':7C 'multipl':45C 'name':88C 'play':30C 'pleas':50C 'post':76C 'probabl':65C 'realli':21C,38C,39C 'reddit':89C 'rout':48C 'sequel':70C,79C 'unsur':56C 'whether':57C 'work':37C 'www.reddit.com':92C 'www.reddit.com/r/ddlcmods/comments/8m5uwz/focus_on_me_mod/':91C",
"modRating": 0,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "I don't really know what this mod is about, I'm struggling to add something here",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "NitrosGaming",
"modInternalNote": ""
},
{
"modID": 33,
"modDate": "2019-10-13 13:20:44.000000",
"modUpdate": "2019-10-13 13:20:44.000000",
"modStatus": "Full release",
"modName": "Doki Doki Easter Hunt",
"modDescription": "Let\u2019s pretend it\u2019s Easter still.\r\n\r\nDo you want to go on a cute easter hunt?\r\nDo you want to go on a cute easter hunt with the dokis?\r\n\r\nHere\u2019s the mod for you - I present to you...\r\n\r\nDoki Doki Easter Hunt!\r\nBear in mind this is a short mod that I made in a short amount of time.\r\n\r\nSo what does it entail, you ask?\r\n\r\nPlay and find out!\r\n\r\n(not for those who find certain parts of DDLC upsetting.)\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/895r3o/doki_doki_easter_hunt/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/drive/folders/1XJRGOWaWaOlUweIESjtTUsUF7J6Im472",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 30,
"modSearch": "'/r/ddlcmods/comments/895r3o/doki_doki_easter_hunt/':92C '1':5B 'amount':64C 'ask':73C 'bear':50C 'certain':83C 'cute':20C,30C 'ddlc':86C 'doki':1A,2A,35C,46C,47C 'easter':3A,11C,21C,31C,48C 'entail':71C 'find':76C,82C 'go':17C,27C 'hunt':4A,22C,32C,49C 'let':6C 'link':89C 'made':60C 'mind':52C 'mod':39C,57C 'part':84C 'play':74C 'present':43C 'pretend':8C 'reddit':88C 'short':56C,63C 'still':12C 'time':66C 'upset':87C 'want':15C,25C 'www.reddit.com':91C 'www.reddit.com/r/ddlcmods/comments/895r3o/doki_doki_easter_hunt/':90C",
"modRating": 0,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/None/images/jKG6mjIok3qG52Q1b7lGeAyC8WBNJtxT6x2lPh3BEcq00VDNp4",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "This a little gift from me to you, especially for this Easter...\r\nWow, isn't it funny that Easter is on April Fools day?\r\nHm...",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "EVM02",
"modInternalNote": ""
},
{
"modID": 80,
"modDate": "2019-07-04 12:48:34.000000",
"modUpdate": "2019-10-17 12:48:34.000000",
"modStatus": "Full release",
"modName": "Longer Roads",
"modDescription": "The end of the road is finally here\u2026\r\n\r\nAlmost 5 months, 144 days later\u2026 Longer Roads is FINALLY finished! Longer Roads is a multi-route mod with 4 total routes (one for each doki) and 10 total endings. Each route dives into the life of a certain doki and it\u2019s up to MC to be the change in their lives. The full release picks up where the demo left off, the end of chapter 3 (Honest Hearts), and continues through chapter 6.\r\n\r\n(WARNING: This mod DOES deal with dark themes and not all the endings are happy ever after, you have been warned\u2026)\r\n\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/kgm2bd/doki_doki_longer_roads_is_back_download_link_in/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://mega.nz/file/7WYXgK5D#tAn2CN9q2ZIqxO33-yrCPq2X0lTpnPhxyw5_r1IF5YM",
"modPlayTimeHours": 4,
"modPlayTimeMinutes": 0,
"modSearch": "'/r/ddlcmods/comments/kgm2bd/doki_doki_longer_roads_is_back_download_link_in/':113C '1':3B '10':40C '144':15C '3':80C '4':32C '5':13C '6':87C 'almost':12C 'certain':51C 'chang':62C 'chapter':79C,86C 'continu':84C 'dark':94C 'day':16C 'deal':92C 'demo':73C 'dive':45C 'doki':38C,52C 'end':5C,42C,77C,100C 'ever':103C 'final':10C,21C 'finish':22C 'full':67C 'happi':102C 'heart':82C 'honest':81C 'later':17C 'left':74C 'life':48C 'link':110C 'live':65C 'longer':1A,18C,23C 'mc':58C 'mod':30C,90C 'month':14C 'multi':28C 'multi-rout':27C 'one':35C 'pick':69C 'reddit':109C 'releas':68C 'road':2A,8C,19C,24C 'rout':29C,34C,44C 'theme':95C 'total':33C,41C 'warn':88C,108C 'www.reddit.com':112C 'www.reddit.com/r/ddlcmods/comments/kgm2bd/doki_doki_longer_roads_is_back_download_link_in/':111C",
"modRating": 4,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/None/images/C9mnNcXyD7D31HKM3jKjPEiG6IcRu0DpAsSd8UBmDrGPECUGBU",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1/mods/80/images/previews/yDlrx7ON06PSJ4taoenwGvYGE5LVQc9OtOlPDZ2gdwSYmn1446.jpg",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Longer Roads features dozens of hours of new content with criss-crossing choices that lead to ten different endings. Will you help the girls with their issues? Or will you be dragged down with them? Your choices will determine your fate.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": "Taken down on the subreddit. | No longer is, https://www.reddit.com/r/DDLCMods/comments/kgm2bd/doki_doki_longer_roads_is_back_download_link_in/"
},
{
"modID": 114,
"modDate": "2019-12-25 00:00:00.000000",
"modUpdate": "2020-02-20 00:29:48.000000",
"modStatus": "Full release",
"modName": "Special Days: Christmas Act",
"modDescription": "A short DDLC Christmas mini-mod. No description is given.\r\n\r\nMod by /u/Wyrmcastt\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/efd71z/special_days_christmas_act_teaser/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://www.dropbox.com/s/j5gzuezwcgf71qy/sd_christmas_v1-release.zip?dl=0",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 10,
"modSearch": "'/r/ddlcmods/comments/efd71z/special_days_christmas_act_teaser/':24C '/u/wyrmcastt':19C '1':5B 'act':4A 'christma':3A,9C 'day':2A 'ddlc':8C 'descript':14C 'given':16C 'link':21C 'mini':11C 'mini-mod':10C 'mod':12C,17C 'reddit':20C 'short':7C 'special':1A 'www.reddit.com':23C 'www.reddit.com/r/ddlcmods/comments/efd71z/special_days_christmas_act_teaser/':22C",
"modRating": 4,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_136/mods/None/images/previews/o5JpmJbsmGhUhk6tUXzeFme8az7M5koYewqOtSez4Es8X2kYXe",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "A short DDLC Christmas mini-mod. No description is given.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 16,
"modDate": "2019-10-03 12:41:47.000000",
"modUpdate": "2019-10-03 13:42:00.596199",
"modStatus": "Full release",
"modName": "Doki Simulator",
"modDescription": "This mod is just porting a video interactive series by SMG4 called Mario Simulator Interactive which he made back when he hit 500,000 subs. However due to no annotations on YouTube anymore this YouTube interactive can only be viewed via it's playlist. https://www.youtube.com/playlist?list=PLqtXS2zBPMiTCrDc-LSWr03fJSx916ko\r\n\r\nReddit post - https://old.reddit.com/r/DDLCMods/comments/cxzwke/doki_simulator/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/open?id=1NFIdGtdyh-da8xCvO0rrVCr9fgAyUz_1",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 35,
"modSearch": "'/playlist?list=plqtxs2zbpmitcrdc-lswr03fjsx916ko':50C '/r/ddlcmods/comments/cxzwke/doki_simulator/':55C '000':27C '49':3B '500':26C 'annot':33C 'anymor':36C 'back':22C 'call':15C 'doki':1A 'due':30C 'hit':25C 'howev':29C 'interact':11C,18C,39C 'made':21C 'mario':16C 'mod':5C 'old.reddit.com':54C 'old.reddit.com/r/ddlcmods/comments/cxzwke/doki_simulator/':53C 'playlist':47C 'port':8C 'post':52C 'reddit':51C 'seri':12C 'simul':2A,17C 'smg4':14C 'sub':28C 'via':44C 'video':10C 'view':43C 'www.youtube.com':49C 'www.youtube.com/playlist?list=plqtxs2zbpmitcrdc-lswr03fjsx916ko':48C 'youtub':35C,38C",
"modRating": 3,
"modAuthor_id": 49,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "This is essentially a choice-based mod off of a now dead YouTube Interactive by SMG4.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 41,
"modDate": "2019-10-14 14:13:03.695195",
"modUpdate": "2019-10-14 14:13:03.695212",
"modStatus": "Full release",
"modName": "Doki Doki (Google Translated) Literature Club!",
"modDescription": "A mod of the game Doki Doki Literature Club which translates the game's text into every available language using Google Translate. That's 104 languages (including English) that this mod contains translations and support for.\r\n\r\nTranslations can be switched on-the-fly from the game's Settings menu. This allows you to easily compare how hilariously bad the translations are between different languages.",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://github.com/stephwag/DDGTLC",
"modPlayTimeHours": 4,
"modPlayTimeMinutes": 0,
"modSearch": "'1':7B '104':32C 'allow':59C 'avail':25C 'bad':66C 'club':6A,16C 'compar':63C 'contain':39C 'differ':71C 'doki':1A,2A,13C,14C 'easili':62C 'english':35C 'everi':24C 'fli':51C 'game':12C,20C,54C 'googl':3A,28C 'hilari':65C 'includ':34C 'languag':26C,33C,72C 'literatur':5A,15C 'menu':57C 'mod':9C,38C 'on-the-fli':48C 'set':56C 'support':42C 'switch':47C 'text':22C 'translat':4A,18C,29C,40C,44C,68C 'use':27C",
"modRating": 4,
"modAuthor_id": 1,
"modAvatar": "",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Translates the games text into every available language using Google Translate",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 152,
"modDate": "2020-08-01 00:00:00.000000",
"modUpdate": "2020-08-03 08:55:26.000000",
"modStatus": "Full release",
"modName": "Scattered Stars",
"modDescription": "This story of two siblings begins at a high school. Arito, who has made himself an outcast among his peers. And Monika who is desperately trying to keep her brother in line while also managing the Literature club. With the appearance of a mysterious, purple-haired girl their lives become much more complicated.",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/file/d/10lq7iOocZRdJJQiGcW1J7qfcPVVQ-tj1/view?usp=sharing",
"modPlayTimeHours": 2,
"modPlayTimeMinutes": 30,
"modSearch": "'643':3B 'also':37C 'among':21C 'appear':44C 'arito':14C 'becom':54C 'begin':9C 'brother':33C 'club':41C 'complic':57C 'desper':28C 'girl':51C 'hair':50C 'high':12C 'keep':31C 'line':35C 'literatur':40C 'live':53C 'made':17C 'manag':38C 'monika':25C 'much':55C 'mysteri':47C 'outcast':20C 'peer':23C 'purpl':49C 'purple-hair':48C 'scatter':1A 'school':13C 'sibl':8C 'star':2A 'stori':5C 'tri':29C 'two':7C",
"modRating": 4,
"modAuthor_id": 643,
"modAvatar": "files/user_643/mods/None/images/f9CHqn997ORlYce0tMoAU6twuy0hXKqgCgsBpz5cM1IuOLp9lB",
"modBackground": "files/user_643/mods/None/images/GwIgY2D3CPOpBdGCmkOji4pV9oz5tTTsEQlCUO6C1YDaiEFrSP",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_643/mods/None/images/previews/IZWoZixLzWyXcJnJX5ZfSO1KcXYIB8vPmV3MbpQyFhtipP4I7k",
"modPreviewImage2": "files/user_643/mods/None/images/previews/usLbDx7Eoo56WIcnDLXygyJacieNAdSdVhkGs6BwszURTUnuN8",
"modPreviewImage3": "files/user_643/mods/None/images/previews/APs5dBdRdR0N7RkmwW9oo4GQlTVGHbpa4zUorhHO5TCiZsjf5o",
"modPreviewImage4": "files/user_643/mods/None/images/previews/teDWBgzUUmTQjmLk3oXIErY8CChraM6kK84ZxUxLoMm3Aj3tn3",
"modPreviewImage5": "files/user_643/mods/None/images/previews/qouVeo87v2Fo8n9NDTUg3kheRMjDaIxuub6u8V9m942Q3K2Hfx",
"modPreviewVideo": "",
"modShortDescription": "Scattered Stars is urban fantasy mixed with sci-fi. Each character has their own unique abilities and attributes. While some are from a different species. Scattered Stars has 4 seasons each one focusing on a doki and the overall plot.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 84,
"modDate": "2019-09-13 13:14:32.000000",
"modUpdate": "2019-10-17 13:14:32.000000",
"modStatus": "Full release",
"modName": "Doki Doki In a Nutshell",
"modDescription": "Its just the DDLC plot in less than 10 minutes.\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/d3tbaj/doki_doki_in_a_nutshell_full_release/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/drive/folders/1ylNqUSUFvPK5ucivnumnBzexChugYr8c?usp=sharing",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 10,
"modSearch": "'/r/ddlcmods/comments/d3tbaj/doki_doki_in_a_nutshell_full_release/':21C '1':6B '10':15C 'ddlc':10C 'doki':1A,2A 'less':13C 'link':18C 'minut':16C 'nutshel':5A 'plot':11C 'reddit':17C 'www.reddit.com':20C 'www.reddit.com/r/ddlcmods/comments/d3tbaj/doki_doki_in_a_nutshell_full_release/':19C",
"modRating": 4.5,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/None/images/iFWYLAqhfFPm4NuaAUWKow7PnXYPtfbY7ExNPKIKMrwSntmCWh",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Its just the DDLC plot in less than 10 minutes.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 35,
"modDate": "2019-10-13 14:12:37.000000",
"modUpdate": "2019-10-13 14:12:37.000000",
"modStatus": "Full release",
"modName": "Doki Heika Banzai",
"modDescription": "This is the project I've worked on for the last couple weeks. It's a comedy set in WW2 Imperial Japan and it's like half an hour long!\r\n\r\nI can't really reveal much of the plot without giving away too much, but I can tell you that MC and the Dokis are going to war in this one and whacky adventures are ensured! The mod is a bit NSFW.\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/8ad88l/full_release_doki_heika_banzai_comedy_mod_set_in/",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "http://www.mediafire.com/file/in1xdvc78v11f64/DokiHeikaBanzai+2.0.zip",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 30,
"modSearch": "'/r/ddlcmods/comments/8ad88l/full_release_doki_heika_banzai_comedy_mod_set_in/':81C '1':4B 'adventur':68C 'away':46C 'banzai':3A 'bit':75C 'comedi':21C 'coupl':16C 'doki':1A,58C 'ensur':70C 'give':45C 'go':60C 'half':31C 'heika':2A 'hour':33C 'imperi':25C 'japan':26C 'last':15C 'like':30C 'link':78C 'long':34C 'mc':55C 'mod':72C 'much':40C,48C 'nsfw':76C 'one':65C 'plot':43C 'project':8C 'realli':38C 'reddit':77C 'reveal':39C 'set':22C 'tell':52C 've':10C 'war':62C 'week':17C 'whacki':67C 'without':44C 'work':11C 'ww2':24C 'www.reddit.com':80C 'www.reddit.com/r/ddlcmods/comments/8ad88l/full_release_doki_heika_banzai_comedy_mod_set_in/':79C",
"modRating": 0,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/None/images/ESSICFLNezkwbxOT2QXX0P0rsWq9pKnArErWwVbFsRJWPTcF1H",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "Comedy mod set in WW2 Imperial Japan",
"modShow": true,
"modEdited": false,
"modNSFW": true,
"modRedditAccount": "chankamaster",
"modInternalNote": ""
},
{
"modID": 9,
"modDate": "2019-09-26 16:32:12.000000",
"modUpdate": "2019-09-26 19:20:17.000000",
"modStatus": "Full release",
"modName": "RainClouds",
"modDescription": "Hello everybody, CykaDev here!\r\n\r\nAs most of you may know, I've been working REALLY hard on Doki Doki! RainClouds. For those of you who don't know what it is about, let me enlighten you!\r\nIn this fan game/mod, you get to play through DDLC's original Act I... With Sayori's point of view.\r\nYou'll be able to see things as she saw them, in a brand new experience, including the all of original game, but with A LOT of new scenes, and an entire extra day!\r\n\r\nWell then, enough about the game itself. I'd like to thank this community for supporting me in my project since the start. I can't tell you how thankful I am for all the nice words and the advice I've gotten from you all.\r\nI really hope you will all enjoy this adventure. Let's make those rainclouds disappear! \r\n\r\nPatron: https://patreon.com/cykadev\r\nDiscord: https://discord.gg/TDPN4c8\r\n\r\nReddit link: https://www.reddit.com/r/DDLCMods/comments/7zr9qr/doki_doki_rainclouds_is_officially_released/",
"modWebsite": "https://cykadev.com/rainclouds/",
"modUpload": "",
"modUploadURL": "https://cykadev.com/rainclouds/",
"modPlayTimeHours": 4,
"modPlayTimeMinutes": 0,
"modSearch": "'/cykadev':157C '/r/ddlcmods/comments/7zr9qr/doki_doki_rainclouds_is_officially_released/':166C '/tdpn4c8':161C '1':2B 'abl':62C 'act':51C 'adventur':147C 'advic':132C 'brand':72C 'communiti':106C 'cykadev':5C 'd':101C 'day':92C 'ddlc':48C 'disappear':153C 'discord':158C 'discord.gg':160C 'discord.gg/tdpn4c8':159C 'doki':20C,21C 'enjoy':145C 'enlighten':37C 'enough':95C 'entir':90C 'everybodi':4C 'experi':74C 'extra':91C 'fan':41C 'game':80C,98C 'game/mod':42C 'get':44C 'gotten':135C 'hard':18C 'hello':3C 'hope':141C 'includ':75C 'know':12C,30C 'let':35C,148C 'like':102C 'link':163C 'll':60C 'lot':84C 'make':150C 'may':11C 'new':73C,86C 'nice':128C 'origin':50C,79C 'patreon.com':156C 'patreon.com/cykadev':155C 'patron':154C 'play':46C 'point':56C 'project':112C 'raincloud':1A,22C,152C 'realli':17C,140C 'reddit':162C 'saw':68C 'sayori':54C 'scene':87C 'see':64C 'sinc':113C 'start':115C 'support':108C 'tell':119C 'thank':104C,122C 'thing':65C 've':14C,134C 'view':58C 'well':93C 'word':129C 'work':16C 'www.reddit.com':165C 'www.reddit.com/r/ddlcmods/comments/7zr9qr/doki_doki_rainclouds_is_officially_released/':164C",
"modRating": 4.2,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/9/images/UuuzHcxA9acoZgxAr2CxwZ6CDKEdqBCZuwCxAhqSiR8a9wyedx.png",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1/mods/None/images/previews/R01Keq03zi0DQG24DSAeveAj6CKcSUSnVMGsGq7Bq5DvsrFeYu",
"modPreviewImage2": "files/user_1/mods/None/images/previews/z8MKk3UgVHjYxEkPo5ith5C352u0MFQ7jIktvx50AsgIdRs4CX",
"modPreviewImage3": "files/user_1/mods/None/images/previews/406wMMdGgHP9YkNiRkftkQ5q3JEUCIc5VQf9VJgpdWgcA4tfAH",
"modPreviewImage4": "files/user_1/mods/None/images/previews/MMefziujPRNsWINZyaTqfeKX23Y6kWuNJPiVQVeNUClTZtvFl5",
"modPreviewImage5": "files/user_1/mods/None/images/previews/sMbcjuAFmtNmlYNS16PHe0Kj6GvYUkNrGHVcjP0NX7k5quWWta",
"modPreviewVideo": "https://www.youtube.com/watch?v=Lzipilx1k8c",
"modShortDescription": "In this fan game/mod, you get to play through DDLC's original Act I... With Sayori's point of view.",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "paulchartres",
"modInternalNote": ""
},
{
"modID": 149,
"modDate": "2019-02-16 00:00:00.000000",
"modUpdate": "2020-07-26 10:25:42.000000",
"modStatus": "Demo",
"modName": "Sayonara: Dreams of Letting Go",
"modDescription": "Short mod that takes place after the death of Sayori. It covers how MC handles life without her.",
"modWebsite": "",
"modUpload": "",
"modUploadURL": "https://drive.google.com/file/d/1vF89ZYOPR-ByXtVnpBMD1DwgTWgAiyIE/view?usp=sharing",
"modPlayTimeHours": 0,
"modPlayTimeMinutes": 30,
"modSearch": "'1':6B 'cover':18C 'death':14C 'dream':2A 'go':5A 'handl':21C 'let':4A 'life':22C 'mc':20C 'mod':8C 'place':11C 'sayonara':1A 'sayori':16C 'short':7C 'take':10C 'without':23C",
"modRating": 3,
"modAuthor_id": 1,
"modAvatar": "files/user_1/mods/149/images/zoAPbv0X8UjYRaeNr5Zdn9hypm9q508qV3pFtCQzu9GB0NJyG9",
"modBackground": "",
"modBackgroundTiledStretch": "Tiled",
"modPreviewImage1": "files/user_1/mods/None/images/previews/QtLe3031oGLY7ZXRKEVD69JaJE7cHeQ2kD3iiuTHlAzD7iefsN",
"modPreviewImage2": "",
"modPreviewImage3": "",
"modPreviewImage4": "",
"modPreviewImage5": "",
"modPreviewVideo": "",
"modShortDescription": "How will you be able to face life without her?",
"modShow": true,
"modEdited": false,
"modNSFW": false,
"modRedditAccount": "",
"modInternalNote": ""
},
{
"modID": 236,
"modDate": "2020-06-24 00:00:00.000000",
"modUpdate": "2021-03-10 20:10:01.000000",
"modStatus": "Full release",
"modName": "my turn",
"modDescription": "monika loses her console and mc becomes self aware and mc is making monika pay for what she did to him, she must rely on a special character who can save her and the dokis",