-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparsed_data.json
More file actions
4135 lines (4135 loc) · 258 KB
/
parsed_data.json
File metadata and controls
4135 lines (4135 loc) · 258 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
[
{
"title": "Jagged Shard",
"author": "danifinn",
"description": "To the Depths and beyond. Laanda’s led her weary people across endless mountains in search of a new home. Jagged Shard has everything they need: deep mountain tunnels, ready-made infrastructure, and a wealth of hotiron that will secure her clan’s future. It must be theirs. Skiti’s seen her Queen like this before. Obsessed. Desperate. Willing to risk everything for her people. But Jagged Shard was abandoned for a reason. If Skiti can’t protect Laanda from herself, she risks losing her forever. Their bonds tighten as they delve side by side into the many dangers and wonders of this forgotten place. Only together can they solve the puzzle of Jagged Shard and of their own reticent hearts. Jagged Shard is a high-octane, high-steam lesbian dungeon crawler romance with a butch 4 butch pairing and a BFFs-with-occasional-benefits-to-lovers arc. Content warnings: This book is intended for adult audiences. It contains numerous scenes of violence and consensual sex scenes. This book can be read as a standalone, as the second in a duology after The Delve , or as the second in series along with The Delve, Wings so Soft, and Cloti's Song.",
"price": "$2.99 USD",
"triggers": [
"This book is intended for adult audiences. It contains numerous scenes of violence and consensual sex scenes."
],
"trigger_tags": [
"adult",
"audiences",
"book",
"consensual",
"contains",
"intended",
"numerous",
"scenes",
"sex",
"violence"
],
"genre_tags": [
"fantasy",
"romance",
"slice_of_life"
],
"other_tags": [
"",
"book",
"fantasy-romance",
"lgbt",
"sapphic",
"sicko-lesbians"
],
"cover_image": "https://img.itch.zone/aW1nLzE4MzQ3MzE0LnBuZw==/347x500/OnES6h.png",
"origin_url": "https://danifinn.itch.io/jagged-shard",
"final_url": "https://danifinn.itch.io/jagged-shard"
},
{
"title": "The Living Waters",
"author": "danifinn",
"description": "When two painted-faced nobles take a guided raft trip on a muddy river, they expect to rough it for a few weeks before returning to their life of sheltered ease, but when mysterious swirls start appearing in the water even their seasoned guides get rattled. The mystery of the swirls lures them on to seek the mythical wetlands known as the Living Waters. They discover a world beyond their imagining, but stranger still are the worlds they find inside their own minds as they are drawn deep into the troubles of this hidden place. The Living Waters is a Sword-Free Fantasy novel featuring an ethereal love story, meditation magic, and an ancient book with cryptic marginalia. Content warnings: This story contains a scene that may be uncomfortable for readers with trypophobia. This book can be read as a standalone, as the first in a duology along with The Isle of a Thousand Worlds, or as the first in series along with The Isle of a Thousand Worlds, Unpainted, and The World Within .",
"price": "$2.99 USD",
"triggers": [
"This story contains a scene that may be uncomfortable for readers with trypophobia."
],
"trigger_tags": [
"contains",
"may",
"readers",
"scene",
"story",
"trypophobia",
"uncomfortable"
],
"genre_tags": [
"fantasy"
],
"other_tags": [
"",
"adult",
"book",
"lgbt",
"nature",
"romantic-fantasy",
"sapphic"
],
"cover_image": "https://img.itch.zone/aW1nLzE4NDQ0NTI1LnBuZw==/347x500/btr0hh.png",
"origin_url": "https://danifinn.itch.io/the-living-waters",
"final_url": "https://danifinn.itch.io/the-living-waters"
},
{
"title": "Barrow Maid",
"author": "danifinn",
"description": "Crela’s unlife is dull and lonely. Apart from the occasional scream or “No, gods no!” she hasn’t talked to a living soul since she crossed over. Everything changes for Crela halfway through killing and eating a group of graverobbers. This pale woman she’s holding by the throat asks her name. They talk. Crela laughs. She laughs. She hasn’t laughed since… Winelan is so tender, so kind, so vital . She’s everything Crela loves…to eat. Maybe there’s a way to make this work if she can just keep her big mouth shut. Barrow Maid is a short, sweet, and gory lesbian necromance starring a graveyard ghoul and a bookish necrologist. It’s not a steamy tale, but it is quite romantic. Treat yourself to some graveyard yuri tonight! This story is intended for an adult audience. Content warnings include graphic violence, murder, gore, and necrophagy (eating of human corpses).",
"price": "$1.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"romance"
],
"other_tags": [
"",
"book",
"horror-romance",
"horror-short-story",
"lgbt",
"romance-short-story",
"sapphic",
"short-story",
"sicko-lesbians"
],
"cover_image": "https://img.itch.zone/aW1nLzE5NDA1NDY3LnBuZw==/347x500/wnaN3R.png",
"origin_url": "https://danifinn.itch.io/barrow-maid",
"final_url": "https://danifinn.itch.io/barrow-maid"
},
{
"title": "Memory of Olympus",
"author": "Maria Ying",
"description": "Before the rampage of the colossi, before the killer cyborg Persephone was made... there was the rule of the Titans. Under the iron fists of the Twelve Titans, Elysium glitters, casting its cruel light upon the face of Olympus. The city grows in leaps and bounds, the terraforming projects expand by the day, and the Titan's children—organic and otherwise—are each tasked with conquering the planet in the Titans' name. But unbeknownst to them, their children chafe under their tyranny, and little by little the flickers of revolt ignite... Memory of Olympus is a collection of short stories taking place during the Titans' rule and after the Titanomachy, where the gods find themselves, establish themselves—and go to war against their makers. This also includes a preview of the next Gunmetal Olympus book, The Persephone Effect . This listing is a preorder, and the book currently has a release date of 25 June 2025 .",
"price": "$3.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"sci-fi"
],
"other_tags": [
"",
"book",
"cyberpunk",
"lgbt",
"lgbtqia",
"mecha",
"sapphic",
"sicko-lesbians",
"trans"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMzI0Njc0Ny8xOTM4NzkwMC5qcGc=/347x500/ezBYXK.jpg",
"origin_url": "https://mariaying.itch.io/memory-of-olympus",
"final_url": "https://mariaying.itch.io/memory-of-olympus"
},
{
"title": "Eating at Chain Restaurants in the Future",
"author": "aka: Cayce Kolodny",
"description": "Harley has already escaped once. Leaving home should never have been so hard to do, but she risked everything to leave an abusive home life behind. Now, stuck in a dead end job and forced to stare down a future devoid of meaning, she risks everything to return, hoping things have improved since she left only to realize her friends are scattered and her sister's in prison. Now she's struggling to understand what she's even supposed to do. The future is what we make it with what has been left to us. Harley doesn't have to know what her own future will be to know she won't abandon her sister again. What comes after, she'll leave to the future to decide. What she didn't expect were the anarchists, the diamond companies, the private investigators snooping around, or navigating the deteriorating post suburban landscape of the midwest.",
"price": "$7.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"sci-fi"
],
"other_tags": [
"",
"book",
"cyberpunk",
"lgbtqia",
"literature"
],
"cover_image": "https://img.itch.zone/aW1nLzE2MDYxMDU2LmpwZw==/347x500/mrAQcq.jpg",
"origin_url": "https://null-convention.itch.io/eating-at-chain-resta",
"final_url": "https://null-convention.itch.io/eating-at-chain-resta"
},
{
"title": "FilmCow Novelette Bundle",
"author": "FilmCow",
"description": "This bundle includes all five currently published FilmCow novelettes, including: Somebody Keeps Wife Swapping My Wife Professor Toothy: The Final Lesson Well, I Was Murdered in a Lake Again Jessica the Wizard Eats a Third Horse Where Is All the Goo Download includes both an EPUB e-book file and a PDF for each novelette.",
"price": "$10.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [],
"other_tags": [
"",
"book",
"comedy",
"filmcow",
"goo",
"horses",
"jason-steele",
"murder",
"novelette",
"professor-toothy",
"wife",
"wife-swap"
],
"cover_image": "https://img.itch.zone/aW1nLzExNjAxMjUxLmpwZw==/347x500/CqKd4i.jpg",
"origin_url": "https://filmcow.itch.io/filmcow-novelette-bundle",
"final_url": "https://filmcow.itch.io/filmcow-novelette-bundle"
},
{
"title": "The Gunrunner and Her Hound",
"author": "Maria Ying",
"description": "Viveca Hua, arms-dealer ...is driven by three things: the certainty of steel, the need to win, and the compulsion to possess. Yves, bodyguard ...hunts for the place she belongs, and she might just have found it in the captivating Viveca, who offers her a new organization, an answer—and a collar.\r\nBut their world is violent. It is unpredictable. Luck alone will not shield them. Together they must survive assassins, rival gunrunners, and their own lethal attraction. The Gunrunner and Her Hound is an F/F/F mosaic novella (40,000 words) built from short stories connected by an overarching plot. Part romance (happy ever after included), part thriller, this is a high-heat love story set in contemporary Hong Kong, where passion burns between a ruthless ice queen and an ex-soldier who fled a ruined empire. Though it's book one in the series , both books can be read as standalones. An audio narration of the first chapter, \"At Her Rightful Place\", can be found here . Many thanks to Ash!",
"price": "$3.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"romance",
"slice_of_life"
],
"other_tags": [
"",
"audiobook",
"book",
"crime",
"lgbt",
"lgbtqia",
"no ai",
"sapphic",
"sicko-lesbians",
"toxic-yuri",
"trans"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMTQ5Nzk1My8xODg5OTg5MS5wbmc=/347x500/4CCXwS.png",
"origin_url": "https://mariaying.itch.io/the-gunrunner-and-her-hound",
"final_url": "https://mariaying.itch.io/the-gunrunner-and-her-hound"
},
{
"title": "Serious Weakness",
"author": "xrafstar",
"description": "What could be more interesting to ruin than a beautiful painting? ✦ kindle and paperback cover art by Sloane main site (tags, retrospective, AU)",
"price": "$9.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"horror"
],
"other_tags": [
"",
"achillean",
"book",
"dark",
"halloween",
"lgbt",
"male protagonist",
"psychological horror",
"survival horror",
"thriller"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMTc0ODA2OC8xMDQxMzQ3MS5wbmc=/347x500/xktmmH.png",
"origin_url": "https://porpentine.itch.io/serious-weakness",
"final_url": "https://porpentine.itch.io/serious-weakness"
},
{
"title": "What Manner of Man",
"author": "stjohnstarling",
"description": "What would tempt you to sin? A sweet and naïve priest at war with his desires, tormented by nightly dreams of a wicked demon. A vampire lord forced to do the unthinkable, battling needs he can scarcely control. Father Ardelian has been summoned to a distant, secluded island to perform an exorcism. What will happen when he begins to suspect his host — the mysterious, nocturnal lord of the manor — of wanting him for another reason entirely? Will the piously celibate priest be able to resist his monstrous host’s diabolically seductive charms? What Manner of Man is a blasphemous queer horror romance about a priest and a vampire, inspired by Bram Stoker’s Dracula. A tale of forbidden love with themes of devil worship, demonic possession, and human sacrifice — this is the long-awaited completed version of the widely beloved story which rose to fame and fortune in the form of a newsletter!",
"price": "$5.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"horror",
"romance"
],
"other_tags": [
"achillean",
"book",
"demon",
"lgbt",
"lgbtqia",
"vampire"
],
"cover_image": "https://img.itch.zone/aW1nLzE4MzE1MTA0LmpwZw==/347x500/hXGiwm.jpg",
"origin_url": "https://stjohnstarling.itch.io/what-manner-of-man",
"final_url": "https://stjohnstarling.itch.io/what-manner-of-man"
},
{
"title": "rapture",
"author": "claudia leffie",
"description": "double feature! first story is about being genderfucked and dealing with college when your best friend is possibly a serial killer. second story is about mushrooms.",
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"fantasy",
"horror",
"slice_of_life"
],
"other_tags": [
"",
"book",
"coming of age",
"dark",
"experimental",
"lgbt",
"lgbtqia",
"serial-killer",
"trans",
"weird"
],
"cover_image": "https://img.itch.zone/aW1nLzEzNDc2ODgyLnBuZw==/347x500/cO%2BPxS.png",
"origin_url": "https://cleffieee.itch.io/rapture",
"final_url": "https://cleffieee.itch.io/rapture"
},
{
"title": "Petrol & Writer",
"author": "communistsister",
"description": "In a sleepy village in the middle of English countryside nowhere, Katie works in a quiet petrol station and passes her downtime reading sci-fi romance books, pausing only to crush on the reclusive, lumberjane-esque older girl who regularly visits to top up her battered land rover. Unbeknownst to her, the girl - Cara - secretly harbours a crush in return, only she's much too shy to do anything about it, and instead uses their awkward interactions as prompts for the sci-fi romance novels she writes. Then Katie's car breaks down and... well, you'll have to read the rest~~~ - Readable online with background music, or downloadable as a pdf. - Words & Music by Freya C / https://communistsister.itch.io Cover, Illustrations and Flipbook formatting by Rhino / https://rhino.itch.io Made for #lightnoveljam2k18",
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"romance",
"sci-fi"
],
"other_tags": [
"",
"achillean",
"book",
"countryside",
"illustrated",
"lgbt",
"lgbtqia",
"light-novel",
"sapphic",
"trans"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMjYyMTQxLzEyNTk5OTEucG5n/347x500/E08XQo.png",
"origin_url": "https://communistsister.itch.io/petrol-and-writer",
"final_url": "https://communistsister.itch.io/petrol-and-writer"
},
{
"title": "The Dragon and Her Princess",
"author": "VyriaDurav",
"description": "Prince Darius seems eternally doomed to bachelorhood, unable to maintain a relationship for more than a few months. The king declares that if he is unable to find a bride, one will be found for him. A grand ball is announced, summoning the kingdom's most eligible women to transform the wallflower prince into a suitable king. Disillusioned, Darius drifts through the festivities until he meets a mysterious woman who offers him freedom. Now her prisoner, Darius learns she is part of a revolutionary conspiracy that means to keep him safe as the king is overthrown. Drawn to their cause, Darius pledges to help, even if it means sacrificing everything, including the false identity she's been forced to endure. The Dragon and Her Princess is a romantasy following a trans woman's fight to break free from the chains of abuse, supported by her true loved ones.",
"price": "$3.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"fantasy",
"romance",
"sci-fi"
],
"other_tags": [
"",
"achillean",
"adult",
"book",
"dragons",
"lgbt",
"lgbtqia",
"no ai",
"romantasy",
"sapphic",
"trans"
],
"cover_image": "https://img.itch.zone/aW1nLzE5MTA0MDE1LmpwZw==/347x500/WJT37a.jpg",
"origin_url": "https://vyriadurav.itch.io/the-dragon-and-her-princess",
"final_url": "https://vyriadurav.itch.io/the-dragon-and-her-princess"
},
{
"title": "The Black Emerald by Jeanne Thornton",
"author": "Instar Books",
"description": "\"The gorgeousness of Thornton’s writings help sustain the worlds she creates . . . That’s the kind of seductiveness these stories have—in reading them, you become strange and dreamy in the same way they are.\" —Torrey Peters, author of Detransition, Baby A high schooler finds her drawings corrupted by a haunted stone she inherits from a suicidal underground cartoonist. A video game addict discovers a vast, hidden dimension to colonize in the walls of his girlfriend's apartment. A philosophy student seeks anonymous Craigslist sex with the ubiquitous devil that stalks her. In this new collection from Jeanne Thornton, author of The Dream of Doctor Bantam (a Lambda Literary Award finalist in 2012), reality and relationships blur, creating a queer pulp experience with a literary sensibility, a hallucinatory journey into despair...and, possibly, toward hope. \"Jeanne has this way of writing self-consciousness inside these perfect, self-contained worlds with signifiers that make them seem like they are the world we live in but if that world were . . . I don’t even know exactly. Mystifying and uncomfortable and bulging with complicated, contradictory feeling just below the surface of everything. Seriously check out this book.\" —Imogen Binnie, author of Nevada \"Beautifully written. The grossest stuff is like jewels on the page. Read it if you are a sad gay girl who loves messed up art and creepy magic.\" —Julian K. Jarboe \"Jeanne Thornton is the kind of artistic superwoman who not only writes a critically praised novel, she also does all of the book's illustrations.\" —Sarah Bridgins, Bookslut \"Brilliantly dark and strange...the unpredictable bizarre plot twists and turns are interspersed with Thornton’s dark, tragic humor...her delightful imagination is showcased in the fabulist, absurdist tales.\" — Autostraddle",
"price": "$10.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [],
"other_tags": [
"",
"achillean",
"book",
"instar-books",
"jeanne-thornton",
"lambda",
"lgbt",
"lgbtqia",
"sapphic",
"short-fiction",
"the-black-emerald",
"torrey-peters",
"trans"
],
"cover_image": "https://img.itch.zone/aW1nLzYxOTAwODEuanBn/347x500/sO1Z%2F4.jpg",
"origin_url": "https://instarbooks.itch.io/the-black-emerald-by-jeanne-thornton",
"final_url": "https://instarbooks.itch.io/the-black-emerald-by-jeanne-thornton"
},
{
"title": "Freeport Nights: The Racer",
"author": "Legendgerry",
"description": "Michael Calnan escaped the total carnage of a stalemated war to become a celebrity spear racer on a neutral Freeport. He had almost earned his way to being a citizen of the port when he receives a sudden recall to the front. Time is short and he has no choice but to risk his life one more time in a mad dash to stay out of the war. Meanwhile Michaels accelerated plans have forced other forces on the Freeport to accelerate their plans too, business schemes, political plots and assassins combine to create one hell of a night, all centred around this one racer!",
"price": "$3.50 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"sci-fi"
],
"other_tags": [
"book"
],
"cover_image": "https://img.itch.zone/aW1nLzYxODUyOTUucG5n/347x500/pps5N%2F.png",
"origin_url": "https://legendgerry.itch.io/freeport-nights-the-racer",
"final_url": "https://legendgerry.itch.io/freeport-nights-the-racer"
},
{
"title": "Windfield Pass",
"author": "Card Zero Press",
"description": "Agnes Hopper is a travelling doctor who makes a yearly circuit among several Wyoming settlements - a journey that gets harder every year as her arthritis becomes more advanced. Agnes is the only doctor who visits mutant colonies, too - including the one that raised her. Now, the mutant colony she used to call home has a favor to ask her. Will she escort a four year old who “passes” to be raised in a different town? Windfield Pass is a stand-alone Prairie Song novella by Alyssa about disability, humanity, and finding common ground in unexpected places. It explores the lines people draw between themselves and others - who is “normal,” who is “abnormal,” and who is so different that even personhood is withheld from them. What happens when all three of these people are thrown together? Windfield Pass has been serialized for free for all readers on prairiesongserial.com , and this PDF copy is pay-what-you-want. It was previously serialized for patrons on our Patreon , and $5+ patrons can access a free download key for this PDF.",
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [],
"other_tags": [
"",
"achillean",
"book",
"lgbt",
"lgbtqia",
"novella",
"post-apocalyptic",
"prairie-song",
"sapphic"
],
"cover_image": "https://img.itch.zone/aW1nLzI0ODM0MTQucG5n/347x500/u36O36.png",
"origin_url": "https://cardzeropress.itch.io/windfield-pass",
"final_url": "https://cardzeropress.itch.io/windfield-pass"
},
{
"title": "In This House of The Two of Us",
"author": "fyshku productions",
"description": "\"Does the moon watch over us while we sleep? Does it stare into our souls with its omnipresent wan eyes, watching over us in our time of grief and despair?\" In This House of The Two of Us is a psychological/queer romance short novella (18k words.) It tells the story of Adam Holst, a man grieving the approach of the anniversary of his late husband Tadashi's death. On a particularly stormy night, he's visited by a ghost with a terrifyingly familiar face... Throughout Adam's attempt to exorcise said ghost, alongside getting closer with Samael Su, a young, awkward aspiring exorcist, Adam is forced to recall aspects of the past he would much rather forget. Content warning: heavy themes of death and loss If you enjoyed reading, consider donating to my Kofi to continue to support my future projects! And follow me on Twitter for more!",
"price": null,
"triggers": [
"heavy themes of death and loss",
"heavy themes of death and loss"
],
"trigger_tags": [
"death",
"heavy",
"loss",
"themes"
],
"genre_tags": [
"fantasy",
"romance"
],
"other_tags": [
"",
"achillean",
"book",
"dark",
"ghosts",
"lgbt",
"lgbtqia",
"short",
"text based"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMTQxMjEzNS8xMDA2Njg2OC5wbmc=/347x500/s96%2Fom.png",
"origin_url": "https://fyshku.itch.io/this-house",
"final_url": "https://fyshku.itch.io/this-house"
},
{
"title": "Nearshore",
"author": "Jana H-S",
"description": "while we dwell on the surface, it is our nature to desire. it is our nature to HUNGER. to pull things to the surface with us. to watch them struggle on the sand. to watch them deform, and suffer, and die the things below the surface desire as well. the things below the surface also HUNGER it will be tempting to think that the things which wash up on the shore have arrived there by accident this is not the case",
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [],
"other_tags": [
"",
"achillean",
"atmospheric",
"book",
"creepy",
"dark",
"experimental",
"lgbt",
"lgbtqia",
"psychological horror",
"sapphic",
"trans",
"weird"
],
"cover_image": "https://img.itch.zone/aW1nLzExNTg1MjMzLmpwZw==/347x500/uvG4FV.jpg",
"origin_url": "https://jana-h-s.itch.io/nearshore",
"final_url": "https://jana-h-s.itch.io/nearshore"
},
{
"title": "Incorrect Eyes",
"author": "Andromeda Ruins",
"description": "Be Not Afraid Those three words have haunted me my entire life, and now I'm close. I know I am. I'm close to finding out the truth behind the words, the truth behind the Seraphim. The closer I get to uncovering the truth, to proving that the Seraphim are real, the further my mind slips. I can't sleep - can't dream - without seeing them. Life has become difficult all of a sudden and I know it's tied to them . I just have to keep going, keep learning, keep discovering. Everything will be better once I complete my research... Incorrect Eyes is a psychological religious horror involving paranoia, angels with too many eyes, and the least mentally stable protagonist I’ve ever written. Please read with caution. Content Warnings: bodily mutilation, extreme paranoia, eye things (including disembodied eyes, being watched at all times, and removal of eyes), fear and terror, psychosis Art in banner and inside book by Clanky @werewolfpresident ! Make sure to show him some love for the amazing art! ⚠️ this story is currently enrolled in Kindle Unlimited, which means I cannot sell the ebook here. This listing is for physical copies only atm ⚠️",
"price": "$13.00 USD",
"triggers": [
"bodily mutilation",
"extreme paranoia",
"eye things (including disembodied eyes",
"being watched at all times",
"and removal of eyes)",
"fear and terror",
"psychosis"
],
"trigger_tags": [
"all",
"being",
"bodily",
"disembodied",
"extreme",
"eye",
"eyes",
"fear",
"including",
"mutilation",
"paranoia",
"psychosis",
"removal",
"terror",
"things",
"times",
"watched"
],
"genre_tags": [
"horror"
],
"other_tags": [
"",
"book",
"indie",
"lgbt",
"lgbtqia",
"psychological horror",
"religious-horror",
"sapphic",
"short",
"trans",
"werewolf"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMjYxMjIxMC8xOTM5MzQzMi5wbmc=/347x500/SEYUi4.png",
"origin_url": "https://andromedaexists.itch.io/incorrect-eyes",
"final_url": "https://andromedaexists.itch.io/incorrect-eyes"
},
{
"title": "The Horn, the Pencil and the Ace of Diamonds",
"author": "Edgar Mason et al",
"description": "Carrie saw Kieran die, impaled by a green-glass bottle. Her college town is slowly being overwhelmed with soulless beings, just off from human. But she may be able to find magic enough to set things right. A dark, contemporary fable, The Horn, the Pencil, and the Ace of Diamonds is a novella by Edgar Mason, with illustrations by Cassie Allen, brought to you by Broken Hands Media. The reader is advised that this work does contain treatment of domestic violence and references to body horror.",
"price": "$3.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"fantasy",
"horror"
],
"other_tags": [
"",
"book",
"fairy tale",
"female protagonist",
"lgbt",
"lgbtqia",
"magical realism",
"sapphic",
"weird"
],
"cover_image": "https://img.itch.zone/aW1nLzMxMjY2NzMuanBn/347x500/LiFifT.jpg",
"origin_url": "https://edgar-mason-et-al.itch.io/the-horn-the-pencil-and-the-ace-of-diamonds",
"final_url": "https://edgar-mason-et-al.itch.io/the-horn-the-pencil-and-the-ace-of-diamonds"
},
{
"title": "Eldritch Tech Support: The Algorithm of Chaos",
"author": "ABronzeAgeGod",
"description": "Working in Tech Support is a hard job. Especially when you work with computers that are designed to chart the endless chaos wastes of the Abyss, or house small gods brought to life by children. Aeth is doing their best working for Tech Support, helping out the various eldritch entities and regular people who need access to technology. Sometimes it's harder than others, especially when Old Gods and magic are involved.",
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"sci-fi"
],
"other_tags": [
"",
"book",
"cosmic-fiction"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMjYyNjQ4MC8xNTY0ODk4OC5wbmc=/347x500/p2Zv4Y.png",
"origin_url": "https://abronzeagegod.itch.io/eldritch-tech-support-the-algorithm-of-chaos",
"final_url": "https://abronzeagegod.itch.io/eldritch-tech-support-the-algorithm-of-chaos"
},
{
"title": "Minty Fresh: A Vampire Pulp Novella",
"author": "Vex Corvine",
"description": "GOTH BITES VAMPIRE, GETS BAD CASE OF THE VAMPS Araminta Chase is a fuck-up. Falling out of a window to avoid someone? Life as usual. Landing on a vampire? That's a new one. And the vampire wants to know exactly why Minty was where she was, when she was. \"I'm afraid of commitment\" won't cut it. When Minty's accused of murdering that same vampire, shit really hits the fan. She's nabbed by the very people she works for, an agency that acts as a go-between for monsters and the human world. Killing a vampire is a no-no for non-agents. Worse, Minty's body count is supposedly at two. Minty didn't kill anyone, but she doesn't want to clear her name. What she wants is her kid brother, a thirteen-year-old werewolf named Sid. But a mysterious research institute called Better Choices, Better World has been looking for him for a long time, and Minty's \"crime\" was all they needed to sniff him out. They wanted him, now they've got him. Well, Minty wants him back. And she's got new teeth.",
"price": "$4.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"horror"
],
"other_tags": [
"",
"achillean",
"bisexual",
"book",
"lgbt",
"lgbtqia",
"monsters",
"sapphic",
"vampire",
"werewolf"
],
"cover_image": "https://img.itch.zone/aW1nLzk1ODI4NTkucG5n/347x500/U%2BRMLP.png",
"origin_url": "https://vexcorvine.itch.io/minty-fresh-a-vampire-pulp-novella",
"final_url": "https://vexcorvine.itch.io/minty-fresh-a-vampire-pulp-novella"
},
{
"title": "Warp Riders",
"author": "Shel Kahn",
"description": "Thanks to the Orb, they’d been living large outside of time — until it all came crashing down. Stranded on a strange moon, four space pirates and one stowaway find themselves forced to discover what comes next. Warp Riders is an orb-and-planet novella that grew out of a tweetfic, and as such, has a lot of transformation behind - and ahead - of it! This draft is running week by week in small updates over at stories.portablecity.net , so please feel free to check that out to get a taste for what's in here! And should you decide that you want to read the whole story all at once? You're in the right spot! Grab the epub and the pdf here, and along the way, you'll support further development of this project! Buying in now means that you're subscribing to every digital version of this story that exists; if the book grows, shrinks, gets illustrated, gets read aloud, gets a line edit, whatever is in its future, the transformed digital version will be sent to you as soon as it's available! Thanks for believing in this spunky crew of queer space pirates.",
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"sci-fi"
],
"other_tags": [
"",
"adventure",
"book",
"chronomancer",
"lgbt",
"lgbtqia",
"novel",
"pirates",
"pulp",
"sapphic",
"space",
"trans"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMTQ5MjY0OS84NzAyMjUzLmpwZw==/347x500/OrGLlf.jpg",
"origin_url": "https://sorcererscatalogue.itch.io/warp-riders-novella",
"final_url": "https://sorcererscatalogue.itch.io/warp-riders-novella"
},
{
"title": "An Orc and a Gentleman",
"author": "Wicked Witch Writes",
"description": "Lettie has everything she needs. A family made of her lovers and their child. A solid job working in a brothel with a steady clientèle, and side job at a bakery to fulfill her passion. But when a mysterious patron, Roarke, asks her to pose as his fiancé for a hefty amount of cash, Lettie doesn't think twice about saying yes. Whisked away to Silver City for a week, Lettie finds herself blurring the lines between client and lover. Will she keep her distance and maintain her professional reputation? Or will she open her heart to the handsome Orc? AN ORC AND A GENTLEMAN is a 37k high heat Orc romance novella. Stats: 37k|Monster Romance|Queer|18+ Content Warnings: AN ORC AND A GENTLEMAN is a high heat romance with many instances of on page sex and sexual acts. While the overall romance is fluffy there are heavy topics such as: blatant discussion about fatphobia, bigotry, former child abuse, discussions about eating disorders, scars, and discussions of war.",
"price": "$1.99 USD",
"triggers": [
"AN ORC AND A GENTLEMAN is a high heat romance with many instances of on page sex and sexual acts. While the overall romance is fluffy there are heavy topics such as: blatant discussion about fatphobia",
"bigotry",
"former child abuse",
"discussions about eating disorders",
"scars",
"and discussions of war."
],
"trigger_tags": [
"about",
"abuse",
"acts",
"bigotry",
"blatant",
"child",
"discussion",
"discussions",
"disorders",
"eating",
"fatphobia",
"fluffy",
"former",
"gentleman",
"heat",
"heavy",
"high",
"instances",
"many",
"orc",
"overall",
"page",
"romance",
"scars",
"sex",
"sexual",
"such",
"there",
"topics",
"war",
"while"
],
"genre_tags": [
"romance",
"slice_of_life"
],
"other_tags": [
"",
"adult",
"book",
"erotic",
"female protagonist",
"lgbt",
"lgbtqia",
"sapphic"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMjA3MzYxMC8xNjgzODgwNC5qcGc=/347x500/Rq3HCv.jpg",
"origin_url": "https://wickedwitchwrites.itch.io/an-orc-and-a-gentleman",
"final_url": "https://wickedwitchwrites.itch.io/an-orc-and-a-gentleman"
},
{
"title": "HYMN",
"author": "wiltking",
"description": "Earth is a dying planet. Wrecked by centuries of war and destruction, only 40 million people remain across the globe. Disconnected from their history, humans must find a new way to live if they are to survive. From her dying breath emerges a sole man on a mission: To reach the center of the galaxy and release a device that will set the course of humanity onto a path of light, and ultimate unity. HYMN is an original M/M scifi novella. 46k words.",
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"historical",
"sci-fi",
"slice_of_life"
],
"other_tags": [
"",
"achillean",
"book",
"lgbt",
"novella"
],
"cover_image": "https://img.itch.zone/aW1nLzE1Njk0NDE2LnBuZw==/347x500/05RHIm.png",
"origin_url": "https://wiltking.itch.io/hymn",
"final_url": "https://wiltking.itch.io/hymn"
},
{
"title": "Under A Violet Sky",
"author": "VulpesMaximus",
"description": "Congratulations on your new position! You have already been assigned your first task—to study a series of archived videos and logs pertaining to a Class 5 incident, known colloquially as the Violet Ascension. Learn who the tabby cat Violet was, before and after her transformation. Analyze the efforts her creators made to subdue her. Witness the events of the Ascension with your own eyes. Remember: nothing you see here leaves this room. We expect fruitful results. Welcome to the Agency. (This story features an anthropomorphic cast with a focus on macrophilia, growth, and unintentional rampage scenes, intended for an 18+ audience. While there are no overly explicit scenes, please use discretion when reading in public. Your purchase will give you a downloadable PDF of the story, roughly 23.5K word length, along with my eternal gratitude.)",
"price": "$4.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"horror",
"sci-fi"
],
"other_tags": [
"",
"anthro",
"book",
"found-footage",
"furry",
"giants",
"lgbt",
"macro",
"sapphic",
"thriller",
"trans"
],
"cover_image": "https://img.itch.zone/aW1nLzE2MzExNzA2LnBuZw==/347x500/zktDeU.png",
"origin_url": "https://vulpesmaximus.itch.io/under-a-violet-sky",
"final_url": "https://vulpesmaximus.itch.io/under-a-violet-sky"
},
{
"title": "Argyropée : Règles & Bestiaire",
"author": "Frédéric \"Guliver\" Marin",
"description": "Argyropée est un jeu de rôle (JDR) urbain de low-fantasy qui se déroule dans un monde optimiste librement inspiré de la Renaissance européenne. Les joueurs incarneront des gens du commun, ni héros ni antihéros, aux prises avec des intrigues urbaines complexes, mêlant enquêtes, exploration, politique, commerce, criminalité ou religion. Tout en nuances, évitant l'excès et la caricature, Argyropée fait la part belle à l'humain dans toutes ses dimensions. Le cadre de jeu, la cité franche d'Argyropée, rayonne sous les auspices de l'Arts et de la Science, et le progrès tant humain qu'industriel marque cet univers. Toutefois, tout n'est pas rose dans les Sentiers d'Argent, et certains secrets peuvent être entraperçus sous le brillant vernis de la société. ------------ Livre de base 2 : Règles & Bestiaire . Livre de 232 pages, couverture couleur, intérieur N&B. Second des deux livres de base, il présente le moteur de jeu dans son intégralité. Y est expliqué comment créer un personnage, de quelle manière interagir avec le monde, comment s’utilisent la magie et le Panache, quels objets il est possible de trouver et d’utiliser, et ainsi de suite. Une importante fraction du livre est dédiée aux arcanes puisque chaque joueur y aura accès. La dernière partie du livre, réservée au Conteur, détaille le bestiaire que les joueurs pourront rencontrer. Une feuille de personnage vierge est disponible à la toute fin de l’ouvrage.",
"price": "$15.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"fantasy"
],
"other_tags": [
"",
"achillean",
"book",
"jdr",
"jeu-de-role",
"lgbt",
"renaissance-fantasy",
"role playing"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMjE4MDk3OC8xMjg3ODAzOS5qcGc=/347x500/l7FYu3.jpg",
"origin_url": "https://argyropee.itch.io/argyropee-regles-et-bestiaire",
"final_url": "https://argyropee.itch.io/argyropee-regles-et-bestiaire"
},
{
"title": "The Last Bread Mage",
"author": "M. Kirin",
"description": "\"We meet again, at the beginning of the end.\" Fel is the sole survivor of his people, the heir to the magical study of reality, and his death would mean the end of the Red Mage legacy. He cannot allow this to happen. That is why he is racing towards the center of the world—to the structure as ancient as time and powerful enough to survive the death of the universe. The Pinnacle. It is said that God resides in that mountain of hardened soil, but Fel isn't so sure. After all, why would God make a world designed to suffer such a horrible apocalypse? What purpose could all this suffering possibly serve? And, why does this journey seem strangely familiar? This isn't the first time the world has ended, but Fel doesn't know that. Not yet. ★ ★ ★ ★ ★ THE LAST BREAD MAGE is a 492-page novel about a world caught in a cycle of life and death, glory and ruin, perpetually spiraling into Absolute Chaos. This bundle contains DRM-free digital editions of the book in three formats: PDF - Most similar to the print version of the book, best for reading on a tablet, on a big smartphone, or on your computer. EPUB - Compatible with pretty much any modern device. Customize the font, margins, line spacing, and more. Perfect for your smartphone's built-in books app. MOBI - Compatible only with older Kindle Reading Devices. Has the same level of customization as EPUB. TRY BEFORE YOU BUY! The sample editions of The Last Bread Mage are available. Read the first five chapters of the book now! 🍞🥖🥐",
"price": "$9.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"dark fantasy",
"fantasy",
"slice_of_life"
],
"other_tags": [
"",
"book",
"dark-souls",
"lgbt",
"lgbtqia",
"magic",
"magic-system",
"medieval",
"sapphic",
"wizards"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMTc1MDc4NC8xMDU0NjYyNi5qcGc=/347x500/X5pCzi.jpg",
"origin_url": "https://mkirin.itch.io/the-last-bread-mage",
"final_url": "https://mkirin.itch.io/the-last-bread-mage"
},
{
"title": "Colosseums for Dinosaurs",
"author": "Stant Litore",
"description": "In the far future, an empire's Independence Day is celebrated by dinosaur races and gladiatorial games on the backs of armored titans. Join us aboard the orbital colosseums! This omnibus edition includes: The Running of the Tyrannosaurs, Nyota's Tyrannosaur, and The Screaming of the Tyrannosaur. The book is available in MOBI (kindle) and EPUB (nook, tablet, smartphone) editions. Looking for a non-digital format? Paperback: This omnibus edition is available at Amazon and Barnes & Noble Online - or try ordering through your local independent bookstore. Audiobook: One of the stories included, The Running of the Tyrannosaurs, is on Audible and iTunes . The others will be added on Audible and iTunes in the future. The Story Once each year on orbital space stations, nano-engineered young women compete on the backs of dinosaurs in races as brutal and bloody as any witnessed in the Roman Circus 3,000 years before. Highly skilled and capable of superhuman feats, these gladiators live isolated lives—except for the resurrected beasts with whom they form their deepest bonds. Tonight, on the red sands of the arena and inside the hollow asteroid where the dinosaurs are grown, the secrets these gladiators discover will shake their entire world. Join Livia Tanning (Egret), Nyota Madaki (Jaguar), and Mai Changying (Timberwolf) in the three thrilling tales included in this omnibus edition: The Running of the Tyrannosaurs Nyota's Tyrannosaur The Screaming of the Tyrannosaur The Running of the Tyrannosaurs The Patriot Day race in the orbital arenas - Egret thinks she is ready for this day. She has been brainwashed for it, trained for it, shaped and reshaped into a sacrificial model of beauty for the entertainment of millions. Her world is one of strict regimen and fierce competition, one in which others can only be competitors or worshippers, never friends, where lack of perfection is punished by burial beneath the red sands and the thundering feet of tyrannosaurs. But Egret can’t imagine how this day might change her. How the scream of a tyrannosaur and the cries of the other sacrifices running beside her might break open the steel surface of her world. It is not a day you will forget. Nyota's Tyrannosaur Meet Nyota Madaki. And her tyrannosaur. Fighting for survival in the far future. When Nyota wakes in the middle of a forest inside an artificial world, she knows she's in trouble. Her trainer and sister athletes are nowhere to be seen, the airlock to the shuttle bay doesn't respond to her commands, and the night forest is loud with the screeches of atrociraptors and ravenous tyrannosaurs. Stranded inside the world where massive dinosaurs are grown for the arenas, she will face many perils -- the hunger of nocturnal predators, the crash of starvation, and the devouring rot of a bioweapon unleashed inside the tyrannosaur world while war in space rages just outside. But Nyota is ready. Inhabited by entire ecosystems of nanites, trained for strength and speed and elegance, capable of feats that would leave others broken on the forest floor, Nyota can handle anything. Anything, that is, except the sudden rush of forgotten memories into her heart. Anything but the realization of who she really is. Luckily she won't have to face that alone. Not with this tyrannosaur egg hatching beside her... The Screaming of the Tyrannosaur \"This day has gone long enough without a death.\" Taken from her home at a young age, Mai Changying is isolated and trained for life in the arena, competing on the backs of stampeding triceratops and other great beasts resurrected from millions of years in the past. But under her timberwolf tattoo and the ferocity of her competitive spirit, she has a secret desire—a longing for a pack, a family, a people. Today, in a thrilling race on a privately chartered orbital dinodrome, Mai Changying will shock her audiences with an unexpected and transgressive act that will change gladiatorial combat in the dinodromes forever—and prove that even when everything is stripped from us, our need for kinship and our triumph in seeking it remains. Future Developments There will be more fiction in this universe. Work is underway now on a short novella that opens a new series, The Dakotaraptor Riders: I am still sweaty from taking down that pride of hyenadons, and my lover thinks she can outrace me, thinks her dakotaraptor can slice through the prarie grass faster than mine. But my raptor and I once took a gallimimus in full stampede; we once leapt from a cliff, my raptor catching the wingtip of a swooping queltzalcoatl in her jaws; we skid wildly down the rockface with the great bird crashing and flapping about us, its zebra-striped pycnofiber plumage cutting my face like shards of ice, the entire world a fever of feathers and screeching and tumbling rock, and we survived —and if my lover thinks she can reach the trees first, I am Sasha Nightwatcher , and my dearest Katya is very mistaken. I think you will find a lot to love in Sasha Nightwatcher's story, as she rides on raptorback across the violet praries of a world under attack, with her leather jacket, her wind goggles, her scarred face, her shockrod and lasso, and her wild joy in life. Expected release of the first story in The Dakotaraptor Riders : 2020. Reviews \"This is a pulse-pounding story, a triumph of world-building - a story of gladiatorial combat and of bonds strange and transcendent. Without a doubt, one of the most enthralling stories I've come across.\" – Samuel Peralta, The Future Chronicles \"Stant Litore turns a concept that would be clunky, camp, or just plain weird in other hands into something as natural as feeling the stretch of your own muscles when you move...\" - O.E. Tearmann, author of The Hands We're Given (Aces High, Jokers Wild) \"Wielding elegant prose and tightly-focused characters, Stant Litore cuts deep into the science-fiction realm of bio-engineered dinosaurs and high-tech bread and circuses with a physically enhanced female gladiator whose personal tragedy is as powerful as her victories in the arena. Her story echoes in the heart long after it is told.\" - Richard Ellis Preston, Jr., author of Romulus Buckle & the City of the Founders Upon purchase, you will be able to download a MOBI or EPUB ebook file. Please tip the author - show that you want more stories like these!",
"price": "$7.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"sci-fi",
"slice_of_life"
],
"other_tags": [
"",
"achillean",
"adventure",
"audiobook",
"book",
"dinosaurs",
"lgbt",
"sapphic",
"trans"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvNTU2NDk4LzI5MTY2MzkuanBn/347x500/AXFlVT.jpg",
"origin_url": "https://stantlitore.itch.io/colosseums-for-dinosaurs",
"final_url": "https://stantlitore.itch.io/colosseums-for-dinosaurs"
},
{
"title": "ROSEMETAL",
"author": "destroyusall",
"description": "It’s the day of Honoured Tooth Artillery’s wedding, something she’d been looking forward to since whelphood. But when it's crashed by a horrific experiment that looks all too much like herself and she is assumed dead, it's up to her alone to find out what exactly her fiancé has been up to. ROSEMETAL is a work of fiction based in the world of Blacksommar , but can be read without trawling through lore. It contains violence, body horror, and sci-fantasy elements. 8.7k+ words, 3 spot illustrations, comes with a *gallery including developmental art & misc. illustrations! .PDF + .EPUB available :) *OUT NOW!",
"price": "$5.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"fantasy",
"horror",
"sci-fi"
],
"other_tags": [
"",
"achillean",
"book",
"lgbt",
"monsters",
"short"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMjgyNjQ1MC8xNjg4NjIxMy5wbmc=/347x500/W0Els%2B.png",
"origin_url": "https://destroyusall.itch.io/rosemetal",
"final_url": "https://destroyusall.itch.io/rosemetal"
},
{
"title": "Incident Pit",
"author": "Marn S.",
"description": "An incident pit is a concept used in underwater diving safety - a conceptual pit, with sides that become steeper as independent incidents build up on one another, pushing the situation towards catastrophe. The lowest point of an incident pit is often death, or a similar point of no return. Incident Pit was written for a writing workshop in the spring of 2014, and edited in short bursts between 2016-2018. It's a horror story about Derry, a vlogger, and Oakes, his cameraman/boyfriend, on trip to go cave diving in Jacob's Well . If you have a fear of drowning or small spaces (such as underwater caves), you probably should not read Incident Pit. Cover image (sans text) by Jacob Walti on Unsplash .",
"price": "$3.00 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"horror"
],
"other_tags": [
"",
"book",
"horror-story",
"lgbtqia",
"psychological horror",
"short-story",
"underwater",
"writing"
],
"cover_image": "https://img.itch.zone/aW1hZ2UvMjY1NzgwLzEyODA4OTgucG5n/347x500/qBzfHV.png",
"origin_url": "https://marns.itch.io/incident-pit",
"final_url": "https://marns.itch.io/incident-pit"
},
{
"title": "YOU AND YOUR FRIENDS ARE DEAD",
"author": "Joel Couture",
"description": "A confusing campground. Weak characters. Invisible items and weapons. Confounding play. And a purple and teal Jason? This was Friday the 13th on the NES, a game frequently panned for being clumsy, incomprehensible, and far too hard. And almost every modern horror game owes it a debt, whether they know it or not. The NES Friday the 13th broke new ground in horror, establishing the use of confusion and nebulous rules to create a compelling mystery. It created pressure and despair through its clever use of hidden items, keeping players from becoming too powerful. It also created a powerful stalker in the form of Jason, using his power and shocking appearances to pave the way for the relentless monsters that would haunt our playthroughs of Amnesia , Resident Evil 3 , Clock Tower , and more. Despite its hated reputation, Friday the 13th established trends back in 1989 that would continue to shape horror to the present. It would also ask questions few other horror games would dare. Should horror be pleasant, or should it crush us with fear and hopelessness? Can we make lives truly matter in the disposable existence of a video game? Featuring interviews with journalists and game developers of various disciplines, \"YOU AND YOUR FRIENDS ARE DEAD. – An Unofficial Analysis of LJN's Friday the 13th\" is an attempt to break down the various horror elements of the game and how they make Friday the 13th into a misunderstood masterpiece, and one of the most important entries in the genre.",
"price": "$2.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"horror"
],
"other_tags": [
"",
"book",
"lgbt",
"nes (nintendo entertainment system)",
"sapphic"
],
"cover_image": "https://img.itch.zone/aW1nLzIwMTQ1MTguanBn/347x500/G%2FndEj.jpg",
"origin_url": "https://joelcouture.itch.io/you-and-your-friends-are-dead",
"final_url": "https://joelcouture.itch.io/you-and-your-friends-are-dead"
},
{
"title": "Pride, Pain & Petticoats Volume 2",
"author": "Abby Trusity",
"description": "A few months have passed since Countess Taryn Moxley's life was turned upside-down. Sent to an etiquette school to learn something about being a noblewoman, she swiftly found herself swept by found family, eager to have her acclimate! Though she was slipping into the role easily enough, this gives her time for introspection, something she'd been avoiding for nearly a decade. An uncomfortable truth looms beneath the surface, one Taryn can't possibly keep hidden anymore. But she must, as her eldest brother Frederick is visiting Marianne's Academy! Cast between finally releasing her true self and desperately trying to stuff it back into the wardrobe it spilled from, Taryn takes on a fictitious name in order to hide in plain sight! If she can manage, she can have more time to explore her truth, but if not... Taryn fears her brother will never truly accept her! And in the capital, the political situation begins to deteriorate. Prince Brendan learns of the kingdom's realpolitik approach to a treasonous organization, thus far ultimately responsible for the attack on the Princess's name day, and gets to the bottom of just what happened to his friend and confidant, and why! Between his idealistic posturing and his father's realistic governance, Brendan is left looking for a better way, and that starts by gathering allies! As the pieces begin to fill the board, where fits the petticoated lady holding tight to her pride and working through her pain?",
"price": "$5.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"historical",
"romance"
],
"other_tags": [
"",
"book",
"lgbt",
"sapphic",
"trans"
],
"cover_image": "https://img.itch.zone/aW1nLzEzNjQ2NDU0LmpwZw==/347x500/rYxtDk.jpg",
"origin_url": "https://abstrusity.itch.io/pride-pain-petticoats-volume-2",
"final_url": "https://abstrusity.itch.io/pride-pain-petticoats-volume-2"
},
{
"title": null,
"author": null,
"description": null,
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [],
"other_tags": [],
"cover_image": null,
"origin_url": "https://www.facebook.com/itchiogames",
"final_url": "https://www.facebook.com/itchiogames"
},
{
"title": "Old Friends",
"author": "ApolloStudios_LGBT",
"description": "Alex and Mark are childhood best friends who have drifted apart since entering adulthood. With wives and families of their own, they found their friendship drifting apart until, before they knew it, decades had passed since they'd seen each other. However, a surprise invitation leads to them reconnecting and organising a camping trip to reignite their friendship! But have they changed too much over the years? Or has the time apart created new and unfamiliar feelings between them? *Contains NSFW Adult Content*",
"price": "$2.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"sci-fi"
],
"other_tags": [
"",
"achillean",
"adult",
"book",
"boys' love",
"lgbt",
"lgbtqia",
"male protagonist",
"story rich"
],
"cover_image": "https://img.itch.zone/aW1nLzE2ODEzMzU2LnBuZw==/347x500/HOe5rF.png",
"origin_url": "https://apollostudios-lgbt.itch.io/old-friends",
"final_url": "https://apollostudios-lgbt.itch.io/old-friends"
},
{
"title": "The end.",
"author": "ApolloStudios_LGBT",
"description": "A post-apocalyptic romance story featuring lots of zombies and a surprising confession! We follow frenemies Jayce and Mac as they navigate their way through their post-apocalyptic town. This is not a visual novel. It is a short story <3",
"price": "$2.99 USD",
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"horror",
"romance"
],
"other_tags": [
"",
"achillean",
"book",
"boys' love",
"lgbt",
"lgbtqia",
"male protagonist",
"story rich",
"zombie"
],
"cover_image": "https://img.itch.zone/aW1nLzE2NDIzNjY5LnBuZw==/347x500/KDRBAX.png",
"origin_url": "https://apollostudios-lgbt.itch.io/the-end",
"final_url": "https://apollostudios-lgbt.itch.io/the-end"
},
{
"title": "I DO NOT HAVE A MEDICAL DEGREE",
"author": "Jodie Carrion",
"description": "t4t noncon superhero x supervillian \"i can fix him\" short story",
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [
"horror"
],
"other_tags": [
"",
"book",
"dark humor",
"lgbtqia",
"survival horror",
"thriller"
],
"cover_image": "https://img.itch.zone/aW1nLzEzNjE5OTY3LmpwZw==/347x500/0czSAu.jpg",
"origin_url": "https://jcarrion.itch.io/i-do-not-have-a-medical-degree",
"final_url": "https://jcarrion.itch.io/i-do-not-have-a-medical-degree"
},
{
"title": "Existentially Distressing Plant Facts",
"author": "EXRook",
"description": "Welcome to EXISTENTIALLY DISTRESSING PLANT FACTS , a zine about the worst botanical trivia I could get my grubby little claws on. The first installment, the Epiphyte Issue, is out now! It goes over some notable members of the epiphyte grouping, which consists of plants that grow on other plants. Included are 16 pages of full-color illustrations and diagrams, showing the ins and outs of plant life, plant death, and cold-hearted plant murder. Updates as of 04/05/2020: The artwork for this issue has been redone in black and white, to replace some rushed pages, make future zines in this style easier to produce, and to make printing said zines in the future, theoretically , an option. You can now download a cool Plant Facts epiphyte pattern with any donation of $5 or more! The pack includes several different sizes that'll tile seamlessly on anything you like. If you've already donated $5 to the zine and can't access the pattern, please get in touch (my email is mrookart@gmail.com).",
"price": null,
"triggers": [],
"trigger_tags": [],
"genre_tags": [],
"other_tags": [
"",
"book",
"botany",
"educational",
"floral",
"flowers",
"gardening",
"lgbt",
"pattern",
"plants",
"sapphic",
"science",