-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
3842 lines (3842 loc) · 179 KB
/
data.json
File metadata and controls
3842 lines (3842 loc) · 179 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
[
{
"id": 0,
"book_name": "Dune",
"author_name": "Frank Herbert",
"series_name": "Dune Chronicles",
"series_position": 1,
"subgenres": "Space Opera; Political SF",
"themes": "Ecology; Religion; Politics; Resource Control; Prophecy",
"summary": "On the desert planet Arrakis, control over the spice melange triggers a clash of prophecy, politics, and power.",
"page_count": 608,
"publication_year": 1965,
"publisher": "Chilton Books",
"target_audience": "Adult",
"pacing": "Slow-burn; Character-driven",
"tone": "Philosophical; Epic; Political",
"writing_style": "Dense; Descriptive; Multi-layered",
"setting_type": "Desert planet; Feudal space empire",
"technology_focus": "Mentats; Spice-based space travel; No AI",
"content_warnings": "Violence; Political intrigue"
},
{
"id": 1,
"book_name": "Neuromancer",
"author_name": "William Gibson",
"series_name": "Sprawl Trilogy",
"series_position": 1,
"subgenres": "Cyberpunk",
"themes": "Artificial Intelligence; Corporate Control; Virtual Reality; Identity; Technology",
"summary": "A washed-out hacker is drawn into a dangerous AI heist across cyberspace and corporate intrigue.",
"page_count": 271,
"publication_year": 1984,
"publisher": "Ace Books",
"target_audience": "Adult",
"pacing": "Fast-paced; Action-driven",
"tone": "Dark; Gritty; Noir",
"writing_style": "Dense; Technical; Stylized",
"setting_type": "Near-future Earth; Cyberspace",
"technology_focus": "AI; Cyberspace; Neural interfaces; Body modification",
"content_warnings": "Violence; Drug use; Mature themes"
},
{
"id": 2,
"book_name": "The Left Hand of Darkness",
"author_name": "Ursula K. Le Guin",
"series_name": "Hainish Cycle",
"series_position": 4,
"subgenres": "Social SF; Planetary SF",
"themes": "Gender; Politics; Cultural Difference; Loyalty; Identity",
"summary": "An envoy to the icy world of Winter must navigate a culture without fixed gender amid political tension.",
"page_count": 336,
"publication_year": 1969,
"publisher": "Ace Books",
"target_audience": "Adult",
"pacing": "Slow-burn; Character-driven",
"tone": "Philosophical; Contemplative; Political",
"writing_style": "Literary; Descriptive; Thoughtful",
"setting_type": "Ice planet; Feudal societies",
"technology_focus": "Minimal technology; Ansible communication",
"content_warnings": "Political intrigue"
},
{
"id": 3,
"book_name": "Foundation",
"author_name": "Isaac Asimov",
"series_name": "Foundation Series",
"series_position": 1,
"subgenres": "Social SF; Space Opera",
"themes": "Psychohistory; Empire; Civilization; Knowledge Preservation; Prediction",
"summary": "As a galactic empire declines, a Foundation is created to preserve knowledge and guide humanity's future.",
"page_count": 255,
"publication_year": 1951,
"publisher": "Gnome Press",
"target_audience": "Adult",
"pacing": "Moderate; Idea-driven",
"tone": "Intellectual; Epic; Optimistic",
"writing_style": "Clear; Dialogue-heavy; Concept-focused",
"setting_type": "Galactic empire; Multiple worlds",
"technology_focus": "Atomic power; Space travel; Psychohistory",
"content_warnings": "None"
},
{
"id": 4,
"book_name": "The Hobbit",
"author_name": "J.R.R. Tolkien",
"series_name": "Middle-earth",
"series_position": 0,
"subgenres": "High Fantasy; Adventure",
"themes": "Heroism; Greed; Home; Adventure; Personal Growth",
"summary": "Bilbo Baggins sets out on a quest with dwarves and a wizard to reclaim treasure from a dragon.",
"page_count": 310,
"publication_year": 1937,
"publisher": "George Allen & Unwin",
"target_audience": "Young Adult; Adult",
"pacing": "Moderate; Adventure-driven",
"tone": "Whimsical; Adventurous; Light",
"writing_style": "Accessible; Descriptive; Fairy-tale-like",
"setting_type": "Middle-earth; Fantasy world",
"technology_focus": "Pre-industrial; Magic items",
"content_warnings": "Fantasy violence"
},
{
"id": 5,
"book_name": "A Game of Thrones",
"author_name": "George R. R. Martin",
"series_name": "A Song of Ice and Fire",
"series_position": 1,
"subgenres": "Epic Fantasy; Political Fantasy",
"themes": "Power; Politics; War; Family; Honor; Betrayal",
"summary": "Noble families vie for control of the Iron Throne while an ancient evil awakens in the frozen North.",
"page_count": 694,
"publication_year": 1996,
"publisher": "Bantam Books",
"target_audience": "Adult",
"pacing": "Moderate; Character and plot-driven",
"tone": "Dark; Gritty; Morally ambiguous",
"writing_style": "Detailed; Descriptive; Multi-perspective",
"setting_type": "Medieval-inspired fantasy world",
"technology_focus": "Medieval technology; Minimal magic",
"content_warnings": "Violence; Sexual content; Mature themes"
},
{
"id": 6,
"book_name": "Mistborn: The Final Empire",
"author_name": "Brandon Sanderson",
"series_name": "Mistborn Era 1",
"series_position": 1,
"subgenres": "Epic Fantasy; Heist Fantasy",
"themes": "Revolution; Power; Trust; Faith; Sacrifice",
"summary": "A street urchin with magical powers joins a crew planning to overthrow an immortal emperor.",
"page_count": 541,
"publication_year": 2006,
"publisher": "Tor Books",
"target_audience": "Young Adult; Adult",
"pacing": "Fast-paced; Action-driven",
"tone": "Dark; Hopeful; Action-packed",
"writing_style": "Accessible; Clear; Action-focused",
"setting_type": "Dark dystopian empire; Ash-covered world",
"technology_focus": "Hard magic system (Allomancy); Industrial age",
"content_warnings": "Violence; Oppression themes"
},
{
"id": 7,
"book_name": "The Way of Kings",
"author_name": "Brandon Sanderson",
"series_name": "The Stormlight Archive",
"series_position": 1,
"subgenres": "Epic Fantasy",
"themes": "Honor; Leadership; Depression; War; Redemption",
"summary": "Three individuals navigate war and personal struggles in a storm-ravaged world of ancient mysteries.",
"page_count": 1007,
"publication_year": 2010,
"publisher": "Tor Books",
"target_audience": "Adult",
"pacing": "Slow-burn; Character-driven",
"tone": "Epic; Hopeful; Complex",
"writing_style": "Detailed; Descriptive; World-building heavy",
"setting_type": "Storm-swept world; Medieval fantasy",
"technology_focus": "Hard magic system (Surgebinding); Shardblades",
"content_warnings": "Violence; Slavery; Mental health themes"
},
{
"id": 8,
"book_name": "The Fifth Season",
"author_name": "N. K. Jemisin",
"series_name": "The Broken Earth",
"series_position": 1,
"subgenres": "Apocalyptic Fantasy; Science Fantasy",
"themes": "Oppression; Survival; Motherhood; Prejudice; Environmental Catastrophe",
"summary": "In a catastrophe-ravaged world, a woman searches for her daughter while civilization collapses.",
"page_count": 468,
"publication_year": 2015,
"publisher": "Orbit Books",
"target_audience": "Adult",
"pacing": "Moderate; Character-driven",
"tone": "Dark; Intense; Emotional",
"writing_style": "Literary; Innovative; Second-person narrative",
"setting_type": "Post-apocalyptic supercontinent; Geologically active",
"technology_focus": "Orogeny (earth magic); Post-tech civilization",
"content_warnings": "Violence; Child death; Oppression"
},
{
"id": 9,
"book_name": "Ender's Game",
"author_name": "Orson Scott Card",
"series_name": "Ender Saga",
"series_position": 1,
"subgenres": "Military SF; Young Adult SF",
"themes": "War; Childhood; Strategy; Morality; Leadership",
"summary": "A brilliant child is trained in military tactics to defend humanity against an alien threat.",
"page_count": 324,
"publication_year": 1985,
"publisher": "Tor Books",
"target_audience": "Young Adult; Adult",
"pacing": "Fast-paced; Plot-driven",
"tone": "Thoughtful; Intense; Moral complexity",
"writing_style": "Accessible; Clear; Engaging",
"setting_type": "Space stations; Future Earth",
"technology_focus": "Space warfare; Zero-gravity combat; Ansible",
"content_warnings": "Violence; Bullying; Child soldiers"
},
{
"id": 10,
"book_name": "Hyperion",
"author_name": "Dan Simmons",
"series_name": "Hyperion Cantos",
"series_position": 1,
"subgenres": "Space Opera; Literary SF",
"themes": "Time; Religion; Pilgrimage; Technology; Humanity",
"summary": "Seven pilgrims travel to the Time Tombs, each telling their tale while seeking the mysterious Shrike.",
"page_count": 482,
"publication_year": 1989,
"publisher": "Doubleday",
"target_audience": "Adult",
"pacing": "Moderate; Character-driven",
"tone": "Literary; Complex; Varied",
"writing_style": "Literary; Dense; Multi-genre",
"setting_type": "Far-future galaxy; Multiple worlds",
"technology_focus": "AI; Time manipulation; Farcasters; Resurrection",
"content_warnings": "Violence; Disturbing imagery"
},
{
"id": 11,
"book_name": "Leviathan Wakes",
"author_name": "James S. A. Corey",
"series_name": "The Expanse",
"series_position": 1,
"subgenres": "Space Opera; Hard SF",
"themes": "Class Conflict; Survival; Politics; Conspiracy; Humanity",
"summary": "A detective and a ship captain uncover a conspiracy that threatens the fragile peace in the solar system.",
"page_count": 561,
"publication_year": 2011,
"publisher": "Orbit Books",
"target_audience": "Adult",
"pacing": "Fast-paced; Action-driven",
"tone": "Gritty; Noir; Action-packed",
"writing_style": "Accessible; Cinematic; Fast-paced",
"setting_type": "Solar system colonization; Space stations",
"technology_focus": "Realistic space travel; Epstein Drive; Protomolecule",
"content_warnings": "Violence; Gore; Language"
},
{
"id": 12,
"book_name": "The Obelisk Gate",
"author_name": "N. K. Jemisin",
"series_name": "The Broken Earth",
"series_position": 2,
"subgenres": "Apocalyptic Fantasy; Science Fantasy",
"themes": "Survival; Family; Power; Oppression; Transformation",
"summary": "As the world ends, orogenes must decide whether to save humanity or let it perish.",
"page_count": 410,
"publication_year": 2016,
"publisher": "Orbit Books",
"target_audience": "Adult",
"pacing": "Moderate; Character-driven",
"tone": "Dark; Intense; Emotional",
"writing_style": "Literary; Innovative; Multi-perspective",
"setting_type": "Post-apocalyptic supercontinent; Underground refuges",
"technology_focus": "Orogeny; Ancient obelisks; Moon manipulation",
"content_warnings": "Violence; Oppression; Child endangerment"
},
{
"id": 13,
"book_name": "The Stone Sky",
"author_name": "N. K. Jemisin",
"series_name": "The Broken Earth",
"series_position": 3,
"subgenres": "Apocalyptic Fantasy; Science Fantasy",
"themes": "Redemption; Family; Cycles; Power; Transformation",
"summary": "The final confrontation approaches as mother and daughter hold the fate of the world in their hands.",
"page_count": 398,
"publication_year": 2017,
"publisher": "Orbit Books",
"target_audience": "Adult",
"pacing": "Fast-paced; Resolution-focused",
"tone": "Epic; Emotional; Hopeful",
"writing_style": "Literary; Powerful; Conclusive",
"setting_type": "Post-apocalyptic world; The Moon",
"technology_focus": "Advanced orogeny; Moon technology; Ancient civilizations",
"content_warnings": "Violence; Oppression themes"
},
{
"id": 14,
"book_name": "Children of Time",
"author_name": "Adrian Tchaikovsky",
"series_name": "Children of Time",
"series_position": 1,
"subgenres": "Hard SF; Evolutionary SF",
"themes": "Evolution; Survival; Intelligence; Civilization; Species Conflict",
"summary": "Humanity's last survivors encounter an alien civilization born from an experiment gone wrong.",
"page_count": 600,
"publication_year": 2015,
"publisher": "Tor Books",
"target_audience": "Adult",
"pacing": "Moderate; Idea-driven",
"tone": "Thoughtful; Epic; Scientific",
"writing_style": "Detailed; Scientific; Multi-perspective",
"setting_type": "Terraformed planet; Generation ship",
"technology_focus": "Terraforming; Genetic engineering; AI; Space travel",
"content_warnings": "Violence between species"
},
{
"id": 15,
"book_name": "Children of Ruin",
"author_name": "Adrian Tchaikovsky",
"series_name": "Children of Time",
"series_position": 2,
"subgenres": "Hard SF; First Contact",
"themes": "Communication; Intelligence; Cooperation; Alien Minds; Survival",
"summary": "An alliance of species encounters a terrifying intelligence that challenges their understanding of consciousness.",
"page_count": 576,
"publication_year": 2019,
"publisher": "Tor Books",
"target_audience": "Adult",
"pacing": "Moderate; Idea and plot-driven",
"tone": "Thoughtful; Tense; Scientific",
"writing_style": "Dense; Scientific; Multi-perspective",
"setting_type": "Multiple terraformed worlds; Space",
"technology_focus": "Terraforming; Genetic engineering; Alien biology",
"content_warnings": "Body horror; Disturbing imagery"
},
{
"id": 16,
"book_name": "The Forever War",
"author_name": "Joe Haldeman",
"series_name": "The Forever War",
"series_position": 1,
"subgenres": "Military SF; Hard SF",
"themes": "War; Time Dilation; Alienation; PTSD; Social Change",
"summary": "A soldier fights an interstellar war across centuries due to relativistic time dilation.",
"page_count": 278,
"publication_year": 1974,
"publisher": "St. Martin's Press",
"target_audience": "Adult",
"pacing": "Fast-paced; Action-driven",
"tone": "Dark; Anti-war; Reflective",
"writing_style": "Clear; Direct; Military prose",
"setting_type": "Multiple planets; Space warfare",
"technology_focus": "Relativity; Space combat; Collapsar jumps",
"content_warnings": "War violence; Sexual content"
},
{
"id": 17,
"book_name": "Old Man's War",
"author_name": "John Scalzi",
"series_name": "Old Man's War",
"series_position": 1,
"subgenres": "Military SF; Space Opera",
"themes": "War; Aging; Second Chances; Morality; Humanity",
"summary": "Senior citizens are recruited to fight aliens in exchange for youth and a new body.",
"page_count": 320,
"publication_year": 2005,
"publisher": "Tor Books",
"target_audience": "Adult",
"pacing": "Fast-paced; Action-driven",
"tone": "Humorous; Action-packed; Thoughtful",
"writing_style": "Accessible; Witty; Engaging",
"setting_type": "Multiple alien worlds; Space",
"technology_focus": "Genetic enhancement; BrainPal; Space warfare",
"content_warnings": "War violence; Gore"
},
{
"id": 18,
"book_name": "Red Mars",
"author_name": "Kim Stanley Robinson",
"series_name": "Mars Trilogy",
"series_position": 1,
"subgenres": "Hard SF; Colonization SF",
"themes": "Colonization; Terraforming; Politics; Science; Environmentalism",
"summary": "The first hundred colonists struggle to terraform Mars while facing political and ideological conflicts.",
"page_count": 572,
"publication_year": 1992,
"publisher": "Bantam Books",
"target_audience": "Adult",
"pacing": "Slow-burn; Idea-driven",
"tone": "Scientific; Political; Detailed",
"writing_style": "Dense; Technical; Descriptive",
"setting_type": "Mars colonization",
"technology_focus": "Terraforming; Hard science; Longevity treatments",
"content_warnings": "Political violence"
},
{
"id": 19,
"book_name": "Green Mars",
"author_name": "Kim Stanley Robinson",
"series_name": "Mars Trilogy",
"series_position": 2,
"subgenres": "Hard SF; Colonization SF",
"themes": "Terraforming; Revolution; Politics; Ecology; Utopia",
"summary": "As Mars transforms, colonists must decide between preserving the planet or reshaping it for humanity.",
"page_count": 640,
"publication_year": 1993,
"publisher": "Bantam Books",
"target_audience": "Adult",
"pacing": "Slow-burn; Idea-driven",
"tone": "Scientific; Political; Hopeful",
"writing_style": "Dense; Technical; World-building heavy",
"setting_type": "Partially terraformed Mars",
"technology_focus": "Advanced terraforming; Longevity; Ecology science",
"content_warnings": "Political violence"
},
{
"id": 20,
"book_name": "Blue Mars",
"author_name": "Kim Stanley Robinson",
"series_name": "Mars Trilogy",
"series_position": 3,
"subgenres": "Hard SF; Terraforming SF; Sociopolitical SF",
"themes": "Terraforming; Colonialism; Politics; Ecology; Longevity; Identity",
"summary": "Mars is becoming increasingly habitable and politically mature, while Earth faces ecological crisis and immigration pressures. The colonists struggle with governance, migration disputes, and the transformation of both Mars and humanity.",
"page_count": 624,
"publication_year": 1996,
"publisher": "Bantam Spectra",
"target_audience": "Adult",
"pacing": "Moderate to slow; idea-heavy",
"tone": "Serious; Political; Hopeful with conflict",
"writing_style": "Dense; Technical; Multi-strand worldbuilding",
"setting_type": "Partially terraformed Mars with Earth interactions",
"technology_focus": "Terraforming; Genetic engineering; Longevity; Ecology science",
"content_warnings": "Political violence; Social turmoil; Environmental crisis"
},
{
"id": 21,
"book_name": "Snow Crash",
"author_name": "Neal Stephenson",
"series_name": "N/A",
"series_position": 0,
"subgenres": "Cyberpunk; Postcyberpunk; Techno-thriller SF",
"themes": "Language & consciousness; Virtual reality; Information control; Corporate power; Myth",
"summary": "In a near-future America dominated by corporate enclaves, hacker Hiro Protagonist uncovers “Snow Crash,” a linguistic/viral threat in the Metaverse. Together with Y.T., he delves into conspiracies linking ancient myth, technology, and the nature of mind.",
"page_count": 480,
"publication_year": 1992,
"publisher": "Bantam Books",
"target_audience": "Adult / SF readers",
"pacing": "Fast; action-oriented with expository interludes",
"tone": "Energetic; Satirical; Serious undertones",
"writing_style": "Accessible but layered with technical digressions",
"setting_type": "Near-future Earth + virtual Metaverse",
"technology_focus": "VR / Metaverse; Linguistics; Cryptography; Networks",
"content_warnings": "Violence; Drug use; Corporate dystopia"
},
{
"id": 22,
"book_name": "Cryptonomicon",
"author_name": "Neal Stephenson",
"series_name": "N/A",
"series_position": 0,
"subgenres": "Historical fiction; Techno-thriller; Speculative SF",
"themes": "Cryptography; War; Finance; Information freedom; Legacy",
"summary": "Parallel narratives in WWII and the late 1990s follow codebreakers and their descendants as they build a data haven. Conflicts arise about secrecy, power, and the enduring legacy of encryption.",
"page_count": 918,
"publication_year": 1999,
"publisher": "Avon / HarperCollins",
"target_audience": "Adult / Technophile readers",
"pacing": "Varied: dense exposition with bursts of action",
"tone": "Ambitious; Intellectual; Tense; Occasional humor",
"writing_style": "Highly detailed; multiple narrative threads",
"setting_type": "20th century and late 20th century, global",
"technology_focus": "Cryptography; Networking; Data infrastructure",
"content_warnings": "War violence; Espionage; Ethical ambiguity"
},
{
"id": 23,
"book_name": "The Three-Body Problem",
"author_name": "Liu Cixin",
"series_name": "Remembrance of Earth’s Past",
"series_position": 1,
"subgenres": "Hard SF; First-contact SF; Astrophysical SF",
"themes": "Alien contact; Science & belief; Civilizational risk; Sociology of science",
"summary": "When Earth makes contact with an alien civilization in a chaotic orbital system, humanity becomes enmeshed in far-reaching consequences — exploring limits of rationality, cosmic danger, and diverse human reactions.",
"page_count": 400,
"publication_year": 2008,
"publisher": "Chongqing Press; English translation by Tor Books",
"target_audience": "Adult / SF readers",
"pacing": "Moderate to fast",
"tone": "Grand scale; Serious; Existential",
"writing_style": "Expansive; Technical; Occasionally poetic",
"setting_type": "Earth, outer space, alien systems",
"technology_focus": "Physics; Astrophysics; Communication; Simulation",
"content_warnings": "Existential threat; Political intrigue"
},
{
"id": 24,
"book_name": "The Dark Forest",
"author_name": "Liu Cixin",
"series_name": "Remembrance of Earth’s Past",
"series_position": 2,
"subgenres": "Hard SF; Galactic politics; First-contact SF",
"themes": "Cosmic sociology; Survival; Deception; Trust vs suspicion",
"summary": "As the alien threat looms, humanity must craft survival strategies in a universe where silence may be essential. The 'dark forest' metaphor frames interstellar relationships as fraught with danger and preemptive logic.",
"page_count": 512,
"publication_year": 2008,
"publisher": "Chongqing Press; English by Tor Books",
"target_audience": "Adult / SF readers",
"pacing": "Moderate; strategic pacing",
"tone": "Tense; Foreboding; Intellectual",
"writing_style": "Dense; Multi-layered",
"setting_type": "Earth and interstellar space / communication",
"technology_focus": "Advanced communication; Deception tech",
"content_warnings": "War; Betrayal; Existential threat"
},
{
"id": 25,
"book_name": "Death’s End",
"author_name": "Liu Cixin",
"series_name": "Remembrance of Earth’s Past",
"series_position": 3,
"subgenres": "Hard SF; Cosmic-scale SF; First-contact SF",
"themes": "Ultimate survival; Time and scale; Transcendence; Communication",
"summary": "Humanity confronts cosmic stakes. Time, space, and dimensional frontiers become the arena of existential struggle. The fate of civilizations and paradoxes of action across cosmic distances unfold.",
"page_count": 784,
"publication_year": 2010,
"publisher": "Chongqing Press; English by Tor Books",
"target_audience": "Adult / SF readers",
"pacing": "Varied — slow build with climactic peaks",
"tone": "Grand; Philosophical; Bleak yet persistent hope",
"writing_style": "Ambitious; High technical complexity",
"setting_type": "Earth, space, cosmic realms",
"technology_focus": "Cosmic engineering; Dimensional physics",
"content_warnings": "Existential danger; Destruction; Cosmic horror"
},
{
"id": 26,
"book_name": "Ringworld",
"author_name": "Larry Niven",
"series_name": "Ringworld / Known Space",
"series_position": 4,
"subgenres": "Hard SF; Megastructure SF",
"themes": "Exploration; Alien artifacts; Survival; Scale",
"summary": "A massive artificial ring encircles a star. A crew is sent to survey it and confronts strange environments, dangers, and traces of ancient civilizations. The novel probes scale, engineering, and the unknown.",
"page_count": 342,
"publication_year": 1970,
"publisher": "Ballantine Books",
"target_audience": "Adult / SF fans",
"pacing": "Moderate; mix of discovery and action",
"tone": "Adventurous; Wonder; Caution about alien motives",
"writing_style": "Clear; Technically minded; Exploratory",
"setting_type": "Inside a megastructure + space",
"technology_focus": "Megastructure engineering; Alien tech; Gravity manipulation",
"content_warnings": "Violence; Strange biology"
},
{
"id": 27,
"book_name": "The Mote in God’s Eye",
"author_name": "Larry Niven & Jerry Pournelle",
"series_name": "CoDominium universe",
"series_position": 0,
"subgenres": "First-contact SF; Military SF; Hard SF",
"themes": "Alien contact; Miscommunication; Political protocol; Risk of unknown",
"summary": "Humans in an interstellar empire meet the Moties, a technically adept but troubled alien species. The encounter forces diplomatic, ethical, and existential decisions about contact and risk.",
"page_count": 496,
"publication_year": 1974,
"publisher": "Simon & Schuster",
"target_audience": "Adult / SF readers",
"pacing": "Moderate; deliberative arcs with tension spikes",
"tone": "Serious; Tense; Speculative",
"writing_style": "Clear; Technical; Dialogue-heavy",
"setting_type": "Interstellar systems; alien worlds",
"technology_focus": "Interstellar travel; Alien biology; Communication tech",
"content_warnings": "Violence; Unintended consequences"
},
{
"id": 28,
"book_name": "Altered Carbon",
"author_name": "Richard K. Morgan",
"series_name": "Takeshi Kovacs",
"series_position": 1,
"subgenres": "Cyberpunk; Noir SF; Transhumanist SF",
"themes": "Identity; Consciousness; Mortality; Power; Technology and inequality",
"summary": "In a future where human minds are digitized and stored, ex-soldier Takeshi Kovacs is reactivated to solve a rich man’s murder. He uncovers conspiracy, corruption, and existential questions of what makes us human.",
"page_count": 376,
"publication_year": 2002,
"publisher": "Del Rey / Gollancz",
"target_audience": "Adult / Cyberpunk & SF readers",
"pacing": "Fast; noir and investigative",
"tone": "Dark; Moody; Cynical; Philosophical",
"writing_style": "Sharp; Gritty; Tech-noir flavor",
"setting_type": "Futuristic Earth + off-world settings",
"technology_focus": "Mind transfer; Body modification; AI; Biotech",
"content_warnings": "Violence; Sexual content; Body horror; Corruption"
},
{
"id": 29,
"book_name": "Revelation Space",
"author_name": "Alastair Reynolds",
"series_name": "Revelation Space universe",
"series_position": 1,
"subgenres": "Hard SF; Space opera; Dark SF",
"themes": "Extinction risk; Alien ruins; Time; Human ambition",
"summary": "Archaeologist Dan Sylveste pursues the secrets of a vanished alien civilization. Multiple factions clash — including cults, mercenaries, and conspirators — in a tale of cosmic mystery and apocalyptic stakes.",
"page_count": 560,
"publication_year": 2000,
"publisher": "Gollancz / Tor",
"target_audience": "Adult / SF readers",
"pacing": "Moderate to fast; mystery + action blend",
"tone": "Dark; Brooding; Melancholic",
"writing_style": "Dense; Multi-layered; Technically rich",
"setting_type": "Interstellar space; alien ruins",
"technology_focus": "Starships; Nanotech; Alien artifacts",
"content_warnings": "Violence; Cosmic danger; Grim outcomes"
},
{
"id": 30,
"book_name": "Chasm City",
"author_name": "Alastair Reynolds",
"series_name": "Revelation Space universe",
"series_position": 0,
"subgenres": "Hard SF; Space opera; Thriller SF",
"themes": "Decay; Corruption; Identity; Revenge",
"summary": "In the decaying city of Chasm City, a man seeks vengeance and uncovers conspiracies tied to past events, city corruption, and the overlapping histories of spacefaring factions.",
"page_count": 416,
"publication_year": 2001,
"publisher": "Gollancz / Tor",
"target_audience": "Adult / SF fans",
"pacing": "Moderate; mix of mystery and action",
"tone": "Dark; Atmospheric; Intense",
"writing_style": "Rich; Descriptive; Layered",
"setting_type": "City on alien planet; space connections",
"technology_focus": "Cybernetics; Nanotech; Biotech",
"content_warnings": "Violence; Crime; Intrigue"
},
{
"id": 31,
"book_name": "Perdido Street Station",
"author_name": "China Miéville",
"series_name": "Bas-Lag / New Crobuzon",
"series_position": 1,
"subgenres": "New Weird; Dark fantasy / SF",
"themes": "Urban decay; Power; Body horror; Oppression",
"summary": "In the city of New Crobuzon, a scientist takes on a dangerous commission involving a winged creature, unleashing monstrous forces and political tensions in the city’s underbelly.",
"page_count": 744,
"publication_year": 2000,
"publisher": "Macmillan / Del Rey",
"target_audience": "Adult / speculative fiction readers",
"pacing": "Moderate with bursts of intensity",
"tone": "Grotesque; Lyrical; Dark; Urban",
"writing_style": "Rich; Imaginative; Genre-blending",
"setting_type": "Weird city / fantasy + SF hybrid",
"technology_focus": "Alchemy; Biomechanical creatures; Weird science",
"content_warnings": "Body horror; Violence; Political oppression"
},
{
"id": 32,
"book_name": "The Scar",
"author_name": "China Miéville",
"series_name": "Bas-Lag / New Crobuzon",
"series_position": 2,
"subgenres": "New Weird; Dark fantasy / SF",
"themes": "Exploration; Freedom vs control; Pirate politics; Identity",
"summary": "A floating pirate city of ships sails across strange seas. A group from New Crobuzon becomes embroiled in its politics, facing strange creatures, mutiny, and quests for power.",
"page_count": 717,
"publication_year": 2002,
"publisher": "Macmillan / Del Rey",
"target_audience": "Adult / speculative readers",
"pacing": "Moderate; combines exploration and tension",
"tone": "Surreal; Mysterious; Dark; Adventurous",
"writing_style": "Lush; Imaginative; Genre-blending",
"setting_type": "Fantastic seas; pirate city; weird world",
"technology_focus": "Weird science; Ship tech; Biomechanics",
"content_warnings": "Violence; Political intrigue; Strange creatures"
},
{
"id": 33,
"book_name": "Iron Council",
"author_name": "China Miéville",
"series_name": "Bas-Lag / New Crobuzon",
"series_position": 3,
"subgenres": "New Weird; Fantasy-SF hybrid; Political fantasy",
"themes": "Revolution; Labor rights; Imperialism; Solidarity; Sacrifice",
"summary": "Decades after *Perdido Street Station*, war and social unrest engulf New Crobuzon. The revolutionary ‘Iron Council’ returns to the city amidst uprisings, as dissidents, workers, and radicals thread resistance and betrayal.",
"page_count": 564,
"publication_year": 2004,
"publisher": "Del Rey / Macmillan",
"target_audience": "Adult / political fantasy & weird fiction readers",
"pacing": "Moderate to slow; interwoven plots",
"tone": "Dark; Politically charged; Melancholic; Hopeful tension",
"writing_style": "Dense; Poetic; Multi-stranded",
"setting_type": "City-state + frontier zones in Bas-Lag",
"technology_focus": "Steampunk tech; Railroads; Magical / weird science",
"content_warnings": "Revolutionary violence; Oppression; Death"
},
{
"id": 34,
"book_name": "American Gods",
"author_name": "Neil Gaiman",
"series_name": "N/A",
"series_position": 0,
"subgenres": "Fantasy; Mythic fiction",
"themes": "Belief and faith; Identity; Change and memory; Mythology vs modernity",
"summary": "Shadow Moon, freshly released from prison after his wife’s death, is drawn into a conflict between old gods and new gods—manifestations of ancient myth and modern forces—across America.",
"page_count": 465,
"publication_year": 2001,
"publisher": "William Morrow / Headline",
"target_audience": "Adult / fantasy readers",
"pacing": "Moderate with introspective and episodic interludes",
"tone": "Darkly mythical; Reflective; Tense",
"writing_style": "Lyrical; Interwoven narrative threads; Symbolic use of myth",
"setting_type": "Modern America blended with mythic landscapes",
"technology_focus": "Pre-industrial base; Magic systems; Alchemy; Mechanical devices",
"content_warnings": "Violence; Death; Mythic conflict; Occult themes"
},
{
"id": 35,
"book_name": "Neverwhere",
"author_name": "Neil Gaiman",
"series_name": "N/A",
"series_position": 0,
"subgenres": "Urban fantasy; Portal fantasy",
"themes": "Hidden worlds; Identity; Belonging; Power in anonymity",
"summary": "A man from London stumbles into an underground realm (“London Below”) of strange characters, gods, and forgotten people. He must navigate its dangers to find his place and survive.",
"page_count": 400,
"publication_year": 1996,
"publisher": "BBC Books / HarperCollins",
"target_audience": "Adult / fantasy readers",
"pacing": "Steady with bursts of action",
"tone": "Mysterious; Dark; Whimsical",
"writing_style": "Accessible; Mythic imagery; Character-driven",
"setting_type": "Modern city + hidden magical realm",
"technology_focus": "Modern consumer tech; Internet/phones; Magic interfaces",
"content_warnings": "Violence; Themes of abandonment and danger"
},
{
"id": 36,
"book_name": "Good Omens",
"author_name": "Neil Gaiman & Terry Pratchett",
"series_name": "N/A",
"series_position": 0,
"subgenres": "Comic fantasy; Apocalyptic fantasy",
"themes": "Good vs evil; Fate and free will; Humor in apocalypse",
"summary": "An angel and a demon reluctantly team up to prevent the apocalypse when the Antichrist is born on Earth. Their friendship and comedic mishaps challenge divine plans.",
"page_count": 432,
"publication_year": 1990,
"publisher": "Workman Publishing / Gollancz",
"target_audience": "Adult / fantasy readers",
"pacing": "Fast; witty pace",
"tone": "Humorous; Satirical; Playful",
"writing_style": "Light; Dialog-heavy; Satirical narrative",
"setting_type": "Contemporary Earth with supernatural overlays",
"technology_focus": "Scavenged tech; Survival engineering; Ad hoc communications",
"content_warnings": "Violence; Apocalyptic themes; Mischief"
},
{
"id": 37,
"book_name": "Small Gods",
"author_name": "Terry Pratchett",
"series_name": "Discworld",
"series_position": 13,
"subgenres": "Comic fantasy; Philosophical fantasy",
"themes": "Religion and faith; Power and corruption; Individual insight",
"summary": "On the Discworld, the Great God Om is trapped in the form of a tortoise, with only one believer left. A novice and the god work together to rekindle belief and challenge institutional religion.",
"page_count": 399,
"publication_year": 1992,
"publisher": "Victor Gollancz / HarperCollins",
"target_audience": "Adult / fantasy readers",
"pacing": "Moderate; contemplative with humorous moments",
"tone": "Satirical; Thoughtful; Wry",
"writing_style": "Accessible; Humor + philosophical commentary",
"setting_type": "Fantasy realm (Discworld) with theological overlay",
"technology_focus": "Pre-industrial base; Magic; Early mechanics; Semaphore/printing in wider world",
"content_warnings": "Religious critique; Violence"
},
{
"id": 38,
"book_name": "The Colour of Magic",
"author_name": "Terry Pratchett",
"series_name": "Discworld",
"series_position": 1,
"subgenres": "Comic fantasy; Satirical fantasy",
"themes": "Adventure; Satire of fantasy tropes; Chaos in order",
"summary": "A naive tourist and a failed wizard travel the Discworld, encountering bizarre lands, gods, and monsters in a satirical take on classic fantasy tropes.",
"page_count": 210,
"publication_year": 1983,
"publisher": "Colin Smythe / Corgi / Doubleday",
"target_audience": "Adult / fantasy readers",
"pacing": "Light and episodic",
"tone": "Humorous; Satirical; Whimsical",
"writing_style": "Playful; Parody; Light narrative",
"setting_type": "Fantasy world (Discworld)",
"technology_focus": "Pre-industrial base; Magic; Early mechanics; Semaphore/printing in wider world",
"content_warnings": "Mild fantasy violence"
},
{
"id": 39,
"book_name": "Guards! Guards!",
"author_name": "Terry Pratchett",
"series_name": "Discworld",
"series_position": 8,
"subgenres": "Comic fantasy; Satirical fantasy",
"themes": "Authority and rebellion; Heroism; Institutional folly",
"summary": "In Ankh-Morpork, a secret society summons a dragon to overthrow the Patrician. The city watch must rise to the challenge and protect the city.",
"page_count": 288,
"publication_year": 1989,
"publisher": "Victor Gollancz / HarperCollins",
"target_audience": "Adult / fantasy readers",
"pacing": "Moderate with comedic tension",
"tone": "Humorous; Satirical; Adventurous",
"writing_style": "Witty; Ensemble cast; Parodic fantasy",
"setting_type": "Fantasy city (discworld)",
"technology_focus": "Pre-industrial base; Magic; Early mechanics; Semaphore/printing in wider world",
"content_warnings": "Fantasy violence; Political satire"
},
{
"id": 40,
"book_name": "The Lies of Locke Lamora",
"author_name": "Scott Lynch",
"series_name": "Gentleman Bastard",
"series_position": 1,
"subgenres": "Fantasy; Heist / crime fantasy",
"themes": "Friendship; Betrayal; Identity; Deception; Power",
"summary": "In the city of Camorr, master thief Locke Lamora leads the Gentleman Bastards, pulling off cons against nobles while confronting dangerous rival criminals and hidden plots.",
"page_count": 499,
"publication_year": 2006,
"publisher": "Bantam Spectra",
"target_audience": "Adult / fantasy readers",
"pacing": "Fast to moderate; tense heist and reveal structure",
"tone": "Clever; Gritty; Darkly humorous",
"writing_style": "Intricate plotting; Rich worldbuilding; Dialogue and internal monologue",
"setting_type": "City-state fantasy (Camorr) with criminal underworld",
"technology_focus": "Pre-industrial city tech; Alchemy; Mechanical devices; Naval technology",
"content_warnings": "Violence; Torture; Betrayal; Criminal activity"
},
{
"id": 41,
"book_name": "Red Seas Under Red Skies",
"author_name": "Scott Lynch",
"series_name": "Gentleman Bastard",
"series_position": 2,
"subgenres": "Fantasy; Pirate / nautical fantasy",
"themes": "Adventure; Loyalty; Risk; Revenge",
"summary": "Locke Lamora and Jean Tannen sail to distant seas, navigate piracy, politics, and lost treasure while facing enemies from their past.",
"page_count": 592,
"publication_year": 2007,
"publisher": "Gollancz / Bantam Spectra",
"target_audience": "Adult / fantasy readers",
"pacing": "Moderate to fast; sailing adventure + intrigue",
"tone": "Adventurous; Tense; Wry",
"writing_style": "Vivid world detail; Dual threads; Voiceful characters",
"setting_type": "Seas and coastal cities in fantasy world",
"technology_focus": "Pre-industrial city tech; Alchemy; Mechanical devices; Naval technology",
"content_warnings": "Violence; Sea battles; Betrayal"
},
{
"id": 42,
"book_name": "The Republic of Thieves",
"author_name": "Scott Lynch",
"series_name": "Gentleman Bastard",
"series_position": 3,
"subgenres": "Fantasy; Political intrigue; Heist fantasy",
"themes": "Trust & betrayal; Politics; Identity; Love and loyalty",
"summary": "Locke Lamora returns to infiltrate politics in a rival city to influence an election, while wrestling with his complicated past and a cunning adversary.",
"page_count": 544,
"publication_year": 2013,
"publisher": "Gollancz / Bantam Spectra",
"target_audience": "Adult / fantasy readers",
"pacing": "Moderate with tension and political maneuvering",
"tone": "Clever; Tense; Emotional undercurrents",
"writing_style": "Intricate plotting; Dialogue; Political scheming",
"setting_type": "City-state politics and intrigue",
"technology_focus": "Pre-industrial city tech; Alchemy; Mechanical devices; Naval technology",
"content_warnings": "Violence; Manipulation; Political deceit"
},
{
"id": 43,
"book_name": "The Blade Itself",
"author_name": "Joe Abercrombie",
"series_name": "First Law",
"series_position": 1,
"subgenres": "Grimdark fantasy; Epic fantasy",
"themes": "Power and corruption; Violence; Morality",
"summary": "In a brutal world, a crippled torturer, a barbarian, a nobleman, and an inquisitor’s apprentice find their fates entwined in war, intrigue, and moral compromise.",
"page_count": 515,
"publication_year": 2006,
"publisher": "Gollancz / HarperCollins",
"target_audience": "Adult / dark fantasy readers",
"pacing": "Moderate to fast; character and action mix",
"tone": "Dark; Cynical; Gritty",
"writing_style": "Realistic dialogue; Multiple POVs; Harsh realism",
"setting_type": "Grim fantasy world with political and war zones",
"technology_focus": "Pre-industrial technology; Blacksmithing; Magic artifacts",
"content_warnings": "Violence; Brutality; War; Moral ambiguity"
},
{
"id": 44,
"book_name": "Before They Are Hanged",
"author_name": "Joe Abercrombie",
"series_name": "First Law",
"series_position": 2,
"subgenres": "Grimdark fantasy; Epic fantasy",
"themes": "Sacrifice; Resilience; Conflict; Morality",
"summary": "The protagonists embark on dangerous missions: one to defend a city under siege, another into enemy territory, and one journeys toward mysterious lands, all while war escalates.",
"page_count": 608,
"publication_year": 2007,
"publisher": "Gollancz / HarperCollins",
"target_audience": "Adult / dark fantasy readers",
"pacing": "Fast with perilous missions",
"tone": "Dark; High-stakes; Gritty",
"writing_style": "Tense; Multi-threaded; Harsh realism",
"setting_type": "Warfare-ridden fantasy world",
"technology_focus": "Pre-industrial technology; Blacksmithing; Magic artifacts",
"content_warnings": "Violence; War; Torture; Loss"
},
{
"id": 45,
"book_name": "Last Argument of Kings",
"author_name": "Joe Abercrombie",
"series_name": "First Law",
"series_position": 3,
"subgenres": "Grimdark fantasy; Epic fantasy",
"themes": "War; Betrayal; Redemption; Leadership",
"summary": "The factions converge for final confrontation. Alliances fracture, heroes fall, and the brutal costs of war become evident as kingdoms fight for survival.",
"page_count": 592,
"publication_year": 2008,
"publisher": "Gollancz / HarperCollins",
"target_audience": "Adult / dark fantasy readers",
"pacing": "Fast and climactic",
"tone": "Bleak; Intense; Brutal",
"writing_style": "Unflinching; Multi-POV; Grim realism",
"setting_type": "Fantasy battlefields; political realms",
"technology_focus": "Pre-industrial technology; Black powder weapons; Siege engines",
"content_warnings": "Violence; Death; Betrayal"
},
{
"id": 46,
"book_name": "The Gunslinger",
"author_name": "Stephen King",
"series_name": "The Dark Tower",
"series_position": 1,
"subgenres": "Dark fantasy; Western fantasy",
"themes": "Obsession; Quest; Reality vs illusion",
"summary": "The lone gunslinger Roland pursues the Man in Black across a bleak world, seeking the Dark Tower, encountering strange lands and tests along the way.",
"page_count": 224,
"publication_year": 1982,
"publisher": "Donald M. Grant / Later editions by New English Library",
"target_audience": "Adult / fantasy readers",
"pacing": "Slow to moderate; meditative and atmospheric",
"tone": "Haunting; Ambiguous; Questing",
"writing_style": "Sparse; Mythic; Blends genres",
"setting_type": "Post-apocalyptic fantasy world with Western elements",
"technology_focus": "Mixed pre/post-industrial tech; Firearms; Magical artifacts",
"content_warnings": "Violence; Psychological tension"
},
{
"id": 47,
"book_name": "The Drawing of the Three",
"author_name": "Stephen King",
"series_name": "The Dark Tower",
"series_position": 2,
"subgenres": "Dark fantasy; Horror fantasy; Quest fantasy",
"themes": "Companionship; Fate; Identity; Sacrifice",
"summary": "Roland opens doors to draw three companions into his quest in order to continue toward the Dark Tower, each pulled from different worlds and times with their own conflicts.",
"page_count": 400,
"publication_year": 1987,
"publisher": "Donald M. Grant / Later editions",
"target_audience": "Adult / fantasy & horror readers",
"pacing": "Moderate; character introspection + conflict",
"tone": "Dark; Reflective; Strange",
"writing_style": "Hybrid – horror, fantasy, psychological",
"setting_type": "Multiple interconnected worlds",
"technology_focus": "Mixed pre/post-industrial tech; Firearms; Magical artifacts",
"content_warnings": "Violence; Supernatural horror"
},
{
"id": 48,
"book_name": "The Waste Lands",
"author_name": "Stephen King",
"series_name": "The Dark Tower",
"series_position": 3,
"subgenres": "Dark fantasy; Post-apocalyptic fantasy",
"themes": "Decay; Journey; Memory; Time",
"summary": "Roland and his companions travel through a desolate land toward the Dark Tower, confronting monstrous threats, inner conflicts, and strange phenomena.",
"page_count": 336,
"publication_year": 1991,
"publisher": "Donald M. Grant / Later editions",
"target_audience": "Adult / fantasy & horror readers",
"pacing": "Moderate; episodic journey with danger",
"tone": "Bleak; Mysterious; Foreboding",
"writing_style": "Blended; atmospheric; nonlinear elements",
"setting_type": "Post-apocalyptic world and fantasy landscape",
"technology_focus": "Scavenged tech; Survival engineering; Ad hoc communications",
"content_warnings": "Violence; Horror elements; Psychological stress"
},
{
"id": 49,
"book_name": "Wizard and Glass",
"author_name": "Stephen King",
"series_name": "The Dark Tower",
"series_position": 4,
"subgenres": "Dark fantasy; Fantasy; Western fantasy",
"themes": "Memory; Obsession; Love and loss; Destiny",
"summary": "Roland and his ka-tet travel through a world that is collapsing, and Roland tells the story of his youth, his first love, and how he became obsessed with the Dark Tower.",
"page_count": 787,
"publication_year": 1997,
"publisher": "Grant",
"target_audience": "Adult / fantasy readers",
"pacing": "Slow to moderate; weighted with backstory",
"tone": "Melancholic; Reflective; Epic",
"writing_style": "Rich; Lyrical; Multi-layered narrative",
"setting_type": "Post-apocalyptic / fantasy world; desert, baronies, inner kingdoms",
"technology_focus": "Mixed pre/post-industrial tech; Firearms; Magical artifacts",
"content_warnings": "Violence; Loss; Trauma; Obsession"