Advertisement
varkarrus

Genre Mashups

Aug 6th, 2020 (edited)
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.77 KB | None | 0 0
  1. var genres = [
  2. {name: "gothic horror",
  3. nutshell: "horror, romance, darkness, and death",
  4. sentences:[
  5. "An oppressively gloomy atmosphere dominates all things.",
  6. "Ravens lurk on cathedral roofs, and there's a graveyard in every town.",
  7. "In the darkest places, ghosts, werewolves, and vampires lurk."]},
  8.  
  9. {name: "urban fantasy",
  10. nutshell: "humans, magicians, and magical creatures living together",
  11. sentences:[
  12. "Mystery and wonder lurk around every corner.",
  13. "Spellcasters and magical races are both common sights.",
  14. "An unlikely, yet peaceful community is formed."]},
  15.  
  16. {name: "epic fantasy",
  17. nutshell: "elves, orcs, dwarves, and grand-scope adventures",
  18. sentences:[
  19. "Hamlets dominate the countryside of a vast kingdom.",
  20. "Great evils threaten to rise up and overtake the land.",
  21. "Battles are won by great armies and unlikely heroes."]},
  22.  
  23. {name: "superhero",
  24. nutshell: "superheroes and supervillains",
  25. sentences:[
  26. "Some people are born with extraordinary gifts.",
  27. "Superpowered people choose between good, evil, and everything between.",
  28. "Yet, ordinary people are not to be forgotten."]},
  29.  
  30. {name:"cyberpunk",
  31. nutshell: "greedy corporations and advanced technology",
  32. sentences:[
  33. "As technology advances, the gap between the rich and poor expands.",
  34. "The wealthy live in luxury while the common folk suffer.",
  35. "Cybernetic implants and gene-mods are all too common."]},
  36.  
  37. {name:"sci fi",
  38. nutshell: "robots, aliens, and space travel",
  39. sentences:[
  40. "Civilization has expanded beyond the limits of one planet.",
  41. "Starships travel the cosmos; contact has been made with aliens.",
  42. "Grand battles occur in the depths of space."]},
  43.  
  44. {name:"spaghetti western",
  45. nutshell: "lone vigilantes roaming the lands",
  46. sentences:[
  47. "In a new frontier, outlaws and bandits go unchecked, and shootouts are everywhere.",
  48. "Vigilantes, lawmen, and bounty hunters maintain the order.",
  49. "The cunning of heroes is matched by the treachery of villains."]},
  50.  
  51. {name:"shounen anime",
  52. nutshell: "high-octane action and rising power levels",
  53. sentences: [
  54. "Power is derived from friendship, determination, and raising stakes.",
  55. "Behind every villain, is a new, stronger villain.",
  56. "Always strive to overcome your limits."]},
  57.  
  58. {name:"post apocalyptic",
  59. nutshell: "surviving in a ruined world",
  60. sentences:
  61. ["The world as we know it has come to an end.",
  62. "Society has collapsed, and survival is a challenge.",
  63. "Trusting others is risky, yet ultimately required."]},
  64.  
  65. {name:"steampunk",
  66. nutshell: "clockwork contraptions and victorian aesthetics",
  67. sentences:
  68. ["Steam power and clockwork are the dominant technologies.",
  69. "Brass geared automatons are not uncommon, and zeppelins dot the skies.",
  70. "The great men and women of science have the status of nobles."]},
  71.  
  72. {name:"solarpunk",
  73. nutshell: "hope, optimism, and green, social communities",
  74. sentences:
  75. ["Sustainable living and cooperation are commonplace.",
  76. "Food is locally grown, and health care is free.",
  77. "No matter the odds, there's always hope for a better future."]},
  78.  
  79. {name:"supernatural horror",
  80. nutshell: "ghosts, curses, and demonic possession",
  81. sentences:
  82. ["Unexplained occurences lead to horrible danger.",
  83. "A run-in with the supernatural can lead to a gruesome end.",
  84. "Hauntings and possession are great and terrible threats."]},
  85.  
  86. {name:"cosmic horror",
  87. nutshell: "mankind's cosmic insignificance",
  88. sentences:
  89. ["There are cosmic entities beyond human comprehension.",
  90. "Despair is brought by unearthly horrors and Elder Gods.",
  91. "Sanity is easily shattered in the face of cosmic truths."]},
  92.  
  93. {name:"wuxia",
  94. nutshell: "the chivalry of martial arts",
  95. sentences:
  96. ["Secretive sects and temples teach superhuman martial techniques.",
  97. "Martial artists and weapon masters are capable of great feats.",
  98. "Mastering combat arts is a lifelong adventure."]},
  99.  
  100. {name:"spy thriller",
  101. nutshell: "global superpowers and powerful criminal organizations",
  102. sentences:
  103. ["Criminal organizations and foreign governments secretly hold vast power.",
  104. "Peace is kept by elite agents who's deeds go unrecognized by the public.",
  105. "The greatest tools are charisma, martial prowess, gadgets, and cunning."]},
  106.  
  107. {name:"kaiju",
  108. nutshell: "giant, city destroying monsters",
  109. sentences:
  110. ["Society is threatened by colossal monsters, known as \"Kaiju\".",
  111. "The world lives in fear of Kaiju, but some benevolent ones exist.",
  112. "Kaijus are born from amoral actions made in search of knowledge."]},
  113.  
  114. {name:"alien invasion",
  115. nutshell: "the threat of a superior civilization",
  116. sentences:
  117. ["A superior force from another world arrives with unknown goals.",
  118. "The invading threat possesses superior knowledge and might.",
  119. "Society's only hope is unity, bravery, and ingenuity."]}
  120. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement