mnemorandom 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (358) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/CODE_OF_CONDUCT.md +70 -0
  4. data/Gemfile +12 -0
  5. data/Gemfile.lock +49 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +43 -0
  8. data/Rakefile +12 -0
  9. data/bin/console +15 -0
  10. data/bin/setup +8 -0
  11. data/lib/mnemorandom/version.rb +5 -0
  12. data/lib/mnemorandom.rb +30 -0
  13. data/vendor/git/corpora.git/.editorconfig +16 -0
  14. data/vendor/git/corpora.git/.github/workflows/test.yml +39 -0
  15. data/vendor/git/corpora.git/.gitignore +4 -0
  16. data/vendor/git/corpora.git/.travis.yml +17 -0
  17. data/vendor/git/corpora.git/Gruntfile.js +23 -0
  18. data/vendor/git/corpora.git/README.md +46 -0
  19. data/vendor/git/corpora.git/data/animals/ant_anatomy.json +107 -0
  20. data/vendor/git/corpora.git/data/animals/birds_antarctica.json +106 -0
  21. data/vendor/git/corpora.git/data/animals/birds_north_america.json +1448 -0
  22. data/vendor/git/corpora.git/data/animals/cats.json +100 -0
  23. data/vendor/git/corpora.git/data/animals/cephalopod_anatomy.json +281 -0
  24. data/vendor/git/corpora.git/data/animals/collateral_adjectives.json +1103 -0
  25. data/vendor/git/corpora.git/data/animals/common.json +139 -0
  26. data/vendor/git/corpora.git/data/animals/dinosaurs.json +1455 -0
  27. data/vendor/git/corpora.git/data/animals/dog_names.json +1005 -0
  28. data/vendor/git/corpora.git/data/animals/dogs-en-de.json +1814 -0
  29. data/vendor/git/corpora.git/data/animals/dogs.json +459 -0
  30. data/vendor/git/corpora.git/data/animals/donkeys.json +174 -0
  31. data/vendor/git/corpora.git/data/animals/horses.json +349 -0
  32. data/vendor/git/corpora.git/data/animals/ponies.json +175 -0
  33. data/vendor/git/corpora.git/data/animals/rabbits.json +55 -0
  34. data/vendor/git/corpora.git/data/archetypes/artifact.json +53 -0
  35. data/vendor/git/corpora.git/data/archetypes/character.json +257 -0
  36. data/vendor/git/corpora.git/data/archetypes/event.json +107 -0
  37. data/vendor/git/corpora.git/data/archetypes/setting.json +179 -0
  38. data/vendor/git/corpora.git/data/architecture/passages.json +35 -0
  39. data/vendor/git/corpora.git/data/architecture/rooms.json +113 -0
  40. data/vendor/git/corpora.git/data/art/isms.json +146 -0
  41. data/vendor/git/corpora.git/data/books/academic_subjects.json +261 -0
  42. data/vendor/git/corpora.git/data/books/bestsellers.json +258 -0
  43. data/vendor/git/corpora.git/data/colors/crayola.json +485 -0
  44. data/vendor/git/corpora.git/data/colors/dulux.json +42242 -0
  45. data/vendor/git/corpora.git/data/colors/fictional.json +47 -0
  46. data/vendor/git/corpora.git/data/colors/google_material_colors.json +294 -0
  47. data/vendor/git/corpora.git/data/colors/paints.json +4005 -0
  48. data/vendor/git/corpora.git/data/colors/palettes.json +1403 -0
  49. data/vendor/git/corpora.git/data/colors/web_colors.json +565 -0
  50. data/vendor/git/corpora.git/data/colors/wikipedia.json +4070 -0
  51. data/vendor/git/corpora.git/data/colors/xkcd.json +4749 -0
  52. data/vendor/git/corpora.git/data/corporations/cars.json +71 -0
  53. data/vendor/git/corpora.git/data/corporations/charities.json +105 -0
  54. data/vendor/git/corpora.git/data/corporations/djia.json +125 -0
  55. data/vendor/git/corpora.git/data/corporations/fortune500.json +506 -0
  56. data/vendor/git/corpora.git/data/corporations/industries.json +155 -0
  57. data/vendor/git/corpora.git/data/corporations/nasdaq.json +409 -0
  58. data/vendor/git/corpora.git/data/corporations/newspapers.json +107 -0
  59. data/vendor/git/corpora.git/data/divination/hexagrams.json +261 -0
  60. data/vendor/git/corpora.git/data/divination/tarot_interpretations.json +2593 -0
  61. data/vendor/git/corpora.git/data/divination/zodiac.json +274 -0
  62. data/vendor/git/corpora.git/data/film-tv/Westworld_quotes.json +326 -0
  63. data/vendor/git/corpora.git/data/film-tv/extended-netflix-categories.json +605 -0
  64. data/vendor/git/corpora.git/data/film-tv/game-of-thrones-houses.json +277 -0
  65. data/vendor/git/corpora.git/data/film-tv/iab_categories.json +1571 -0
  66. data/vendor/git/corpora.git/data/film-tv/look-around-you-shakespeare.json +28 -0
  67. data/vendor/git/corpora.git/data/film-tv/netflix-categories.json +216 -0
  68. data/vendor/git/corpora.git/data/film-tv/popular-movies.json +263 -0
  69. data/vendor/git/corpora.git/data/film-tv/tv_shows.json +1005 -0
  70. data/vendor/git/corpora.git/data/foods/apple_cultivars.json +1005 -0
  71. data/vendor/git/corpora.git/data/foods/bad_beers.json +104 -0
  72. data/vendor/git/corpora.git/data/foods/beer_categories.json +631 -0
  73. data/vendor/git/corpora.git/data/foods/beer_styles.json +144 -0
  74. data/vendor/git/corpora.git/data/foods/breads_and_pastries.json +62 -0
  75. data/vendor/git/corpora.git/data/foods/combine.json +96 -0
  76. data/vendor/git/corpora.git/data/foods/condiments.json +104 -0
  77. data/vendor/git/corpora.git/data/foods/curds.json +1969 -0
  78. data/vendor/git/corpora.git/data/foods/fruits.json +85 -0
  79. data/vendor/git/corpora.git/data/foods/herbs_n_spices.json +202 -0
  80. data/vendor/git/corpora.git/data/foods/hot_peppers.json +69 -0
  81. data/vendor/git/corpora.git/data/foods/iba_cocktails.json +82 -0
  82. data/vendor/git/corpora.git/data/foods/menuItems.json +1005 -0
  83. data/vendor/git/corpora.git/data/foods/pizzaToppings.json +30 -0
  84. data/vendor/git/corpora.git/data/foods/sandwiches.json +855 -0
  85. data/vendor/git/corpora.git/data/foods/sausages.json +208 -0
  86. data/vendor/git/corpora.git/data/foods/scotch_whiskey.json +82 -0
  87. data/vendor/git/corpora.git/data/foods/tea.json +533 -0
  88. data/vendor/git/corpora.git/data/foods/vegetable_cooking_times.json +310 -0
  89. data/vendor/git/corpora.git/data/foods/vegetables.json +125 -0
  90. data/vendor/git/corpora.git/data/foods/verbs.json +287 -0
  91. data/vendor/git/corpora.git/data/foods/wine_descriptions.json +108 -0
  92. data/vendor/git/corpora.git/data/games/League_of_legends_champion_names.json +150 -0
  93. data/vendor/git/corpora.git/data/games/bannedGames/argentina/bannedList.json +9 -0
  94. data/vendor/git/corpora.git/data/games/bannedGames/brazil/bannedList.json +53 -0
  95. data/vendor/git/corpora.git/data/games/bannedGames/china/bannedList.json +25 -0
  96. data/vendor/git/corpora.git/data/games/bannedGames/denmark/bannedList.json +9 -0
  97. data/vendor/git/corpora.git/data/games/bannedGames/germany/bannedList.json +457 -0
  98. data/vendor/git/corpora.git/data/games/bannedGames/saudi_arabia/bannedList.json +69 -0
  99. data/vendor/git/corpora.git/data/games/board_games.json +218 -0
  100. data/vendor/git/corpora.git/data/games/cluedo.json +65 -0
  101. data/vendor/git/corpora.git/data/games/dark_souls_iii_messages.json +367 -0
  102. data/vendor/git/corpora.git/data/games/jeopardy_questions.json +9005 -0
  103. data/vendor/git/corpora.git/data/games/pokemon.json +20684 -0
  104. data/vendor/git/corpora.git/data/games/rpg/rpg_designers.json +202 -0
  105. data/vendor/git/corpora.git/data/games/rpg/rpg_games.json +859 -0
  106. data/vendor/git/corpora.git/data/games/rpg/rpg_settings.json +103 -0
  107. data/vendor/git/corpora.git/data/games/scrabble.json +33 -0
  108. data/vendor/git/corpora.git/data/games/street_fighter_ii.json +73 -0
  109. data/vendor/git/corpora.git/data/games/trivial_pursuit.json +29 -0
  110. data/vendor/git/corpora.git/data/games/wrestling_moves.json +284 -0
  111. data/vendor/git/corpora.git/data/games/zelda.json +372 -0
  112. data/vendor/git/corpora.git/data/geography/anthropogenic_features.json +143 -0
  113. data/vendor/git/corpora.git/data/geography/canada_provinces_and_territories.json +16 -0
  114. data/vendor/git/corpora.git/data/geography/canadian_municipalities.json +606 -0
  115. data/vendor/git/corpora.git/data/geography/countries.json +203 -0
  116. data/vendor/git/corpora.git/data/geography/countries_with_capitals.json +202 -0
  117. data/vendor/git/corpora.git/data/geography/english_towns_cities.json +997 -0
  118. data/vendor/git/corpora.git/data/geography/environmental_hazards.json +76 -0
  119. data/vendor/git/corpora.git/data/geography/geographic_features.json +514 -0
  120. data/vendor/git/corpora.git/data/geography/japanese_prefectures.json +99 -0
  121. data/vendor/git/corpora.git/data/geography/london_underground_stations.json +1352 -0
  122. data/vendor/git/corpora.git/data/geography/nationalities.json +232 -0
  123. data/vendor/git/corpora.git/data/geography/norwegian_cities.json +370 -0
  124. data/vendor/git/corpora.git/data/geography/nyc_neighborhood_zips.json +395 -0
  125. data/vendor/git/corpora.git/data/geography/oceans.json +305 -0
  126. data/vendor/git/corpora.git/data/geography/rivers.json +1101 -0
  127. data/vendor/git/corpora.git/data/geography/sf_neighborhoods.json +455 -0
  128. data/vendor/git/corpora.git/data/geography/us_airport_codes.json +373 -0
  129. data/vendor/git/corpora.git/data/geography/us_cities.json +5006 -0
  130. data/vendor/git/corpora.git/data/geography/us_counties.json +2979 -0
  131. data/vendor/git/corpora.git/data/geography/us_metropolitan_areas.json +4488 -0
  132. data/vendor/git/corpora.git/data/geography/us_state_capitals.json +205 -0
  133. data/vendor/git/corpora.git/data/geography/venues.json +3656 -0
  134. data/vendor/git/corpora.git/data/geography/winds.json +117 -0
  135. data/vendor/git/corpora.git/data/governments/governmentForms.json +28 -0
  136. data/vendor/git/corpora.git/data/governments/mass-surveillance-project-names.json +215 -0
  137. data/vendor/git/corpora.git/data/governments/nsa_projects.json +213 -0
  138. data/vendor/git/corpora.git/data/governments/uk_political_parties.json +623 -0
  139. data/vendor/git/corpora.git/data/governments/us_federal_agencies.json +128 -0
  140. data/vendor/git/corpora.git/data/governments/us_mil_operations.json +3613 -0
  141. data/vendor/git/corpora.git/data/humans/2016_us_presidential_candidates.json +7329 -0
  142. data/vendor/git/corpora.git/data/humans/atus_activities.json +4617 -0
  143. data/vendor/git/corpora.git/data/humans/authors.json +506 -0
  144. data/vendor/git/corpora.git/data/humans/bodyParts.json +46 -0
  145. data/vendor/git/corpora.git/data/humans/britishActors.json +705 -0
  146. data/vendor/git/corpora.git/data/humans/celebrities.json +998 -0
  147. data/vendor/git/corpora.git/data/humans/descriptions.json +398 -0
  148. data/vendor/git/corpora.git/data/humans/englishHonorifics.json +226 -0
  149. data/vendor/git/corpora.git/data/humans/familyRelations.json +77 -0
  150. data/vendor/git/corpora.git/data/humans/famousDuos.json +194 -0
  151. data/vendor/git/corpora.git/data/humans/firstNames.json +400 -0
  152. data/vendor/git/corpora.git/data/humans/genders.json +82 -0
  153. data/vendor/git/corpora.git/data/humans/human_universals.json +374 -0
  154. data/vendor/git/corpora.git/data/humans/lastNames.json +205 -0
  155. data/vendor/git/corpora.git/data/humans/moods.json +771 -0
  156. data/vendor/git/corpora.git/data/humans/norwayFirstNamesBoys.json +822 -0
  157. data/vendor/git/corpora.git/data/humans/norwayFirstNamesGirls.json +929 -0
  158. data/vendor/git/corpora.git/data/humans/norwayLastNames.json +1003 -0
  159. data/vendor/git/corpora.git/data/humans/occupations.json +976 -0
  160. data/vendor/git/corpora.git/data/humans/prefixes.json +88 -0
  161. data/vendor/git/corpora.git/data/humans/richpeople.json +305 -0
  162. data/vendor/git/corpora.git/data/humans/scientists.json +333 -0
  163. data/vendor/git/corpora.git/data/humans/spanishFirstNames.json +460 -0
  164. data/vendor/git/corpora.git/data/humans/spanishLastNames.json +108 -0
  165. data/vendor/git/corpora.git/data/humans/spinalTapDrummers.json +93 -0
  166. data/vendor/git/corpora.git/data/humans/suffixes.json +50 -0
  167. data/vendor/git/corpora.git/data/humans/thirdPersonPronouns.json +9749 -0
  168. data/vendor/git/corpora.git/data/humans/tolkienCharacterNames.json +600 -0
  169. data/vendor/git/corpora.git/data/humans/us_presidents.json +2743 -0
  170. data/vendor/git/corpora.git/data/humans/wrestlers.json +99 -0
  171. data/vendor/git/corpora.git/data/instructions/burroughsinstructionset.json +216 -0
  172. data/vendor/git/corpora.git/data/instructions/laundry_care.json +149 -0
  173. data/vendor/git/corpora.git/data/materials/abridged-body-fluids.json +34 -0
  174. data/vendor/git/corpora.git/data/materials/building-materials.json +50 -0
  175. data/vendor/git/corpora.git/data/materials/carbon-allotropes.json +19 -0
  176. data/vendor/git/corpora.git/data/materials/decorative-stones.json +99 -0
  177. data/vendor/git/corpora.git/data/materials/fabrics.json +211 -0
  178. data/vendor/git/corpora.git/data/materials/fibers.json +33 -0
  179. data/vendor/git/corpora.git/data/materials/fictional-materials.json +170 -0
  180. data/vendor/git/corpora.git/data/materials/gemstones.json +357 -0
  181. data/vendor/git/corpora.git/data/materials/layperson-metals.json +23 -0
  182. data/vendor/git/corpora.git/data/materials/metals.json +97 -0
  183. data/vendor/git/corpora.git/data/materials/natural-materials.json +15 -0
  184. data/vendor/git/corpora.git/data/materials/packaging.json +32 -0
  185. data/vendor/git/corpora.git/data/materials/plastic-brands.json +9 -0
  186. data/vendor/git/corpora.git/data/materials/sculpture-materials.json +49 -0
  187. data/vendor/git/corpora.git/data/materials/technical-fabrics.json +16 -0
  188. data/vendor/git/corpora.git/data/mathematics/fibonnaciSequence.json +1492 -0
  189. data/vendor/git/corpora.git/data/mathematics/primes.json +1015 -0
  190. data/vendor/git/corpora.git/data/mathematics/primes_binary.json +1005 -0
  191. data/vendor/git/corpora.git/data/mathematics/trigonometry.json +24 -0
  192. data/vendor/git/corpora.git/data/medicine/cancer.json +1007 -0
  193. data/vendor/git/corpora.git/data/medicine/diagnoses.json +1006 -0
  194. data/vendor/git/corpora.git/data/medicine/diseases.json +1007 -0
  195. data/vendor/git/corpora.git/data/medicine/drugNameStems.json +470 -0
  196. data/vendor/git/corpora.git/data/medicine/drugs.json +1006 -0
  197. data/vendor/git/corpora.git/data/medicine/hospitals.json +963 -0
  198. data/vendor/git/corpora.git/data/medicine/infectious_diseases.json +122 -0
  199. data/vendor/git/corpora.git/data/medicine/symptoms.json +551 -0
  200. data/vendor/git/corpora.git/data/music/a_list_of_guitar_manufacturers.json +722 -0
  201. data/vendor/git/corpora.git/data/music/bands_that_have_opened_for_tool.json +37 -0
  202. data/vendor/git/corpora.git/data/music/female_classical_guitarists.json +260 -0
  203. data/vendor/git/corpora.git/data/music/genres.json +375 -0
  204. data/vendor/git/corpora.git/data/music/hamilton_musical_obcrecording_actors_characters.json +63 -0
  205. data/vendor/git/corpora.git/data/music/instruments.json +60 -0
  206. data/vendor/git/corpora.git/data/music/media-formats.json +62 -0
  207. data/vendor/git/corpora.git/data/music/mtv_day_one.json +1257 -0
  208. data/vendor/git/corpora.git/data/music/rock_hall_of_fame.json +891 -0
  209. data/vendor/git/corpora.git/data/music/xxl_freshman.json +17 -0
  210. data/vendor/git/corpora.git/data/mythology/egyptian_gods.json +279 -0
  211. data/vendor/git/corpora.git/data/mythology/greek_gods.json +36 -0
  212. data/vendor/git/corpora.git/data/mythology/greek_monsters.json +29 -0
  213. data/vendor/git/corpora.git/data/mythology/greek_myths_master.json +98 -0
  214. data/vendor/git/corpora.git/data/mythology/greek_titans.json +38 -0
  215. data/vendor/git/corpora.git/data/mythology/hebrew_god.json +69 -0
  216. data/vendor/git/corpora.git/data/mythology/lovecraft.json +100 -0
  217. data/vendor/git/corpora.git/data/mythology/monsters.json +91 -0
  218. data/vendor/git/corpora.git/data/mythology/norse_gods.json +75 -0
  219. data/vendor/git/corpora.git/data/mythology/roman_deities.json +30 -0
  220. data/vendor/git/corpora.git/data/objects/clothing.json +95 -0
  221. data/vendor/git/corpora.git/data/objects/corpora_winners.json +32 -0
  222. data/vendor/git/corpora.git/data/objects/objects.json +452 -0
  223. data/vendor/git/corpora.git/data/objects/premodern_weapons.json +55 -0
  224. data/vendor/git/corpora.git/data/plants/cannabis.json +426 -0
  225. data/vendor/git/corpora.git/data/plants/flowers.json +67 -0
  226. data/vendor/git/corpora.git/data/plants/plants.json +2526 -0
  227. data/vendor/git/corpora.git/data/psychology/personality_test.json +305 -0
  228. data/vendor/git/corpora.git/data/religion/christian_saints.json +6982 -0
  229. data/vendor/git/corpora.git/data/religion/fictional_religions.json +267 -0
  230. data/vendor/git/corpora.git/data/religion/parody_religions.json +20 -0
  231. data/vendor/git/corpora.git/data/religion/religions.json +880 -0
  232. data/vendor/git/corpora.git/data/science/elements.json +2835 -0
  233. data/vendor/git/corpora.git/data/science/hail_size.json +85 -0
  234. data/vendor/git/corpora.git/data/science/meteorology.json +659 -0
  235. data/vendor/git/corpora.git/data/science/minor_planets.json +1005 -0
  236. data/vendor/git/corpora.git/data/science/planets.json +241 -0
  237. data/vendor/git/corpora.git/data/science/pregnancy.json +220 -0
  238. data/vendor/git/corpora.git/data/science/toxic_chemicals.json +385 -0
  239. data/vendor/git/corpora.git/data/science/weather_conditions.json +269 -0
  240. data/vendor/git/corpora.git/data/societies_and_groups/animal_welfare.json +408 -0
  241. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/australia.json +24 -0
  242. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/canada.json +54 -0
  243. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/china.json +6 -0
  244. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/egypt.json +9 -0
  245. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/european_union.json +31 -0
  246. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/india.json +35 -0
  247. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/iran.json +7 -0
  248. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/israel.json +13 -0
  249. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/kazakhstan.json +11 -0
  250. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/russia.json +23 -0
  251. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/saudi_arabia.json +9 -0
  252. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/tunisia.json +3 -0
  253. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/turkey.json +15 -0
  254. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/ukraine.json +4 -0
  255. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json +31 -0
  256. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_kingdom.json +82 -0
  257. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_nations.json +37 -0
  258. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_states.json +73 -0
  259. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/coeducational_fraternities.json +107 -0
  260. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/defunct.json +107 -0
  261. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/fraternities.json +884 -0
  262. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/professional.json +574 -0
  263. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/service.json +90 -0
  264. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/sororities.json +674 -0
  265. data/vendor/git/corpora.git/data/societies_and_groups/semi_secret.json +146 -0
  266. data/vendor/git/corpora.git/data/sports/football/epl_teams.json +145 -0
  267. data/vendor/git/corpora.git/data/sports/football/laliga_teams.json +125 -0
  268. data/vendor/git/corpora.git/data/sports/football/serieA.json +104 -0
  269. data/vendor/git/corpora.git/data/sports/mlb_teams.json +245 -0
  270. data/vendor/git/corpora.git/data/sports/nba_mvps.json +254 -0
  271. data/vendor/git/corpora.git/data/sports/nba_teams.json +244 -0
  272. data/vendor/git/corpora.git/data/sports/nfl_teams.json +261 -0
  273. data/vendor/git/corpora.git/data/sports/nhl_teams.json +244 -0
  274. data/vendor/git/corpora.git/data/sports/olympics.json +572 -0
  275. data/vendor/git/corpora.git/data/sports/sports.json +972 -0
  276. data/vendor/git/corpora.git/data/technology/appliances.json +112 -0
  277. data/vendor/git/corpora.git/data/technology/computer_sciences.json +203 -0
  278. data/vendor/git/corpora.git/data/technology/fireworks.json +45 -0
  279. data/vendor/git/corpora.git/data/technology/guns_n_rifles.json +65 -0
  280. data/vendor/git/corpora.git/data/technology/knots.json +217 -0
  281. data/vendor/git/corpora.git/data/technology/lisp.json +70 -0
  282. data/vendor/git/corpora.git/data/technology/new_technologies.json +534 -0
  283. data/vendor/git/corpora.git/data/technology/photo_sharing_websites.json +42 -0
  284. data/vendor/git/corpora.git/data/technology/programming_languages.json +707 -0
  285. data/vendor/git/corpora.git/data/technology/programming_languages_popular.json +38 -0
  286. data/vendor/git/corpora.git/data/technology/social_networking_websites.json +217 -0
  287. data/vendor/git/corpora.git/data/technology/video_hosting_websites.json +98 -0
  288. data/vendor/git/corpora.git/data/transportation/commercial-aircraft.json +242 -0
  289. data/vendor/git/corpora.git/data/transportation/launchVehicleList.json +549 -0
  290. data/vendor/git/corpora.git/data/travel/lcc.json +378 -0
  291. data/vendor/git/corpora.git/data/words/adjs.json +965 -0
  292. data/vendor/git/corpora.git/data/words/adverbs.json +330 -0
  293. data/vendor/git/corpora.git/data/words/closed_pairs.json +203 -0
  294. data/vendor/git/corpora.git/data/words/common.json +986 -0
  295. data/vendor/git/corpora.git/data/words/compounds.json +13380 -0
  296. data/vendor/git/corpora.git/data/words/crash_blossoms.json +68 -0
  297. data/vendor/git/corpora.git/data/words/eggcorns.json +183 -0
  298. data/vendor/git/corpora.git/data/words/emoji/codePage437.json +261 -0
  299. data/vendor/git/corpora.git/data/words/emoji/cute_kaomoji.json +36 -0
  300. data/vendor/git/corpora.git/data/words/emoji/emoji.json +869 -0
  301. data/vendor/git/corpora.git/data/words/encouraging_words.json +53 -0
  302. data/vendor/git/corpora.git/data/words/ergative_verbs.json +286 -0
  303. data/vendor/git/corpora.git/data/words/expletives.json +615 -0
  304. data/vendor/git/corpora.git/data/words/harvard_sentences.json +728 -0
  305. data/vendor/git/corpora.git/data/words/infinitive_verbs.json +635 -0
  306. data/vendor/git/corpora.git/data/words/interjections.json +223 -0
  307. data/vendor/git/corpora.git/data/words/literature/infinitejest.json +155 -0
  308. data/vendor/git/corpora.git/data/words/literature/lovecraft_words.json +61 -0
  309. data/vendor/git/corpora.git/data/words/literature/mr_men_little_miss.json +94 -0
  310. data/vendor/git/corpora.git/data/words/literature/shakespeare_phrases.json +161 -0
  311. data/vendor/git/corpora.git/data/words/literature/shakespeare_sonnets.json +2929 -0
  312. data/vendor/git/corpora.git/data/words/literature/shakespeare_words.json +324 -0
  313. data/vendor/git/corpora.git/data/words/literature/technology_quotes.json +79 -0
  314. data/vendor/git/corpora.git/data/words/nouns.json +997 -0
  315. data/vendor/git/corpora.git/data/words/oprah_quotes.json +47 -0
  316. data/vendor/git/corpora.git/data/words/personal_nouns.json +9314 -0
  317. data/vendor/git/corpora.git/data/words/personal_pronouns.json +61 -0
  318. data/vendor/git/corpora.git/data/words/possessive_pronouns.json +43 -0
  319. data/vendor/git/corpora.git/data/words/prefix_root_suffix.json +3688 -0
  320. data/vendor/git/corpora.git/data/words/prepositions.json +135 -0
  321. data/vendor/git/corpora.git/data/words/proverbs.json +533 -0
  322. data/vendor/git/corpora.git/data/words/resume_action_words.json +142 -0
  323. data/vendor/git/corpora.git/data/words/rhymeless_words.json +125 -0
  324. data/vendor/git/corpora.git/data/words/spells.json +460 -0
  325. data/vendor/git/corpora.git/data/words/state_verbs.json +25 -0
  326. data/vendor/git/corpora.git/data/words/states_of_drunkenness.json +39 -0
  327. data/vendor/git/corpora.git/data/words/stopwords/ar.json +169 -0
  328. data/vendor/git/corpora.git/data/words/stopwords/bg.json +265 -0
  329. data/vendor/git/corpora.git/data/words/stopwords/cs.json +412 -0
  330. data/vendor/git/corpora.git/data/words/stopwords/da.json +70 -0
  331. data/vendor/git/corpora.git/data/words/stopwords/de.json +599 -0
  332. data/vendor/git/corpora.git/data/words/stopwords/en.json +862 -0
  333. data/vendor/git/corpora.git/data/words/stopwords/es.json +450 -0
  334. data/vendor/git/corpora.git/data/words/stopwords/fi.json +754 -0
  335. data/vendor/git/corpora.git/data/words/stopwords/fr.json +501 -0
  336. data/vendor/git/corpora.git/data/words/stopwords/gr.json +159 -0
  337. data/vendor/git/corpora.git/data/words/stopwords/it.json +439 -0
  338. data/vendor/git/corpora.git/data/words/stopwords/jp.json +50 -0
  339. data/vendor/git/corpora.git/data/words/stopwords/lv.json +171 -0
  340. data/vendor/git/corpora.git/data/words/stopwords/nl.json +275 -0
  341. data/vendor/git/corpora.git/data/words/stopwords/no.json +125 -0
  342. data/vendor/git/corpora.git/data/words/stopwords/pl.json +281 -0
  343. data/vendor/git/corpora.git/data/words/stopwords/pt.json +449 -0
  344. data/vendor/git/corpora.git/data/words/stopwords/ru.json +428 -0
  345. data/vendor/git/corpora.git/data/words/stopwords/sk.json +185 -0
  346. data/vendor/git/corpora.git/data/words/stopwords/sv.json +393 -0
  347. data/vendor/git/corpora.git/data/words/stopwords/tr.json +236 -0
  348. data/vendor/git/corpora.git/data/words/strange_words.json +65 -0
  349. data/vendor/git/corpora.git/data/words/ultraconserved.json +1673 -0
  350. data/vendor/git/corpora.git/data/words/units_of_time.json +32 -0
  351. data/vendor/git/corpora.git/data/words/us_president_quotes.json +202 -0
  352. data/vendor/git/corpora.git/data/words/verbs.json +2537 -0
  353. data/vendor/git/corpora.git/data/words/verbs_with_conjugations.json +13313 -0
  354. data/vendor/git/corpora.git/data/words/word_clues/clues_five.json +10296 -0
  355. data/vendor/git/corpora.git/data/words/word_clues/clues_four.json +6329 -0
  356. data/vendor/git/corpora.git/data/words/word_clues/clues_six.json +10909 -0
  357. data/vendor/git/corpora.git/package.json +23 -0
  358. metadata +403 -0
@@ -0,0 +1,859 @@
1
+ {
2
+ "description": "List of role-playing games.",
3
+ "source": "https://en.wikipedia.org/wiki/List_of_role-playing_games",
4
+ "rpgs":[
5
+ "13th Age",
6
+ "2300 AD",
7
+ "3D&T",
8
+ "7th Sea",
9
+ "9th Generation",
10
+ "A Game of Thrones",
11
+ "A Penny for My Thoughts",
12
+ "A Song of Ice and Fire Roleplaying",
13
+ "Aberrant",
14
+ "Aces & Eights: Shattered Frontier",
15
+ "Active Exploits",
16
+ "Advanced Dungeons & Dragons",
17
+ "Advanced Fighting Fantasy",
18
+ "Adventure!",
19
+ "Adventures in Fantasy",
20
+ "Adventures in Middle-earth",
21
+ "After The Bomb",
22
+ "Aftermath!",
23
+ "Age of the Tempest",
24
+ "Agone",
25
+ "Albedo",
26
+ "Aliens Adventure Game",
27
+ "All Flesh Must Be Eaten",
28
+ "Alma Mater",
29
+ "Alshard Gaia",
30
+ "Alshard",
31
+ "Alternity",
32
+ "Amazing Engine",
33
+ "Amber Diceless Roleplaying",
34
+ "Angel",
35
+ "Anima: Beyond Fantasy",
36
+ "Apocalypse World",
37
+ "Arcana Unearthed",
38
+ "Archaeron",
39
+ "Arduin",
40
+ "Aria",
41
+ "Arianrhod RPG",
42
+ "Armageddon: 2089",
43
+ "Armageddon: The End Times",
44
+ "Armored Trooper VOTOMS: The Roleplaying Game",
45
+ "Army of Darkness Roleplaying Game",
46
+ "Ars Magica",
47
+ "Artesia: Adventures in the Known World",
48
+ "Ashen Stars",
49
+ "Atlantis",
50
+ "Atlas Games (editions 4 & 5)",
51
+ "Attack of the Humans",
52
+ "Ave Molech",
53
+ "BASH!",
54
+ "Babylon 5",
55
+ "Basic Fantasy RPG",
56
+ "Basic Role-Playing",
57
+ "Batman Role-Playing Game",
58
+ "BattleDragons",
59
+ "Battlelords of the 23rd Century",
60
+ "Battlestar Galactica Role Playing Game",
61
+ "Behind Enemy Lines",
62
+ "Beyond the Supernatural",
63
+ "Bifrost",
64
+ "Big Bang Comics RPG",
65
+ "Big Eyes, Small Mouth",
66
+ "Black Crusade",
67
+ "Blackwatch",
68
+ "Blade of Arcana",
69
+ "Blades in the Dark",
70
+ "Blood Dawn",
71
+ "Blood of Heroes",
72
+ "Bloodlust (French)",
73
+ "Blue Planet",
74
+ "Blue Rose",
75
+ "Boot Hill",
76
+ "Brave New World",
77
+ "Breaking the Ice",
78
+ "Bubblegum Crisis",
79
+ "Buccaneer",
80
+ "Buck Rogers XXVC",
81
+ "Buffy the Vampire Slayer -",
82
+ "Bullwinkle and Rocky Role-Playing Party Game",
83
+ "Bunnies and Burrows",
84
+ "Bureau 13: Stalking the Night Fantastic",
85
+ "Burning Empires",
86
+ "Bushido",
87
+ "By the Gods",
88
+ "CORPS",
89
+ "Cadillacs and Dinosaurs",
90
+ "Cadwallon",
91
+ "Call of Cthulhu",
92
+ "Capes",
93
+ "Capes, Cowls & Villains Foul",
94
+ "Cartoon Action Hour",
95
+ "Cassiopean Empire",
96
+ "Castle Falkenstein",
97
+ "Castles & Crusades",
98
+ "Challengers",
99
+ "Champions",
100
+ "Changeling: The Dreaming",
101
+ "Changeling: The Lost",
102
+ "Children of the Sun",
103
+ "Chill",
104
+ "Chivalry & Sorcery",
105
+ "Chronicles of Ramlar",
106
+ "City of Heroes",
107
+ "City of Mist",
108
+ "Commando",
109
+ "Conan Role-Playing Game",
110
+ "Conan: The Roleplaying Game",
111
+ "Conspiracy X",
112
+ "Core Command",
113
+ "Corporation the Roleplaying Game",
114
+ "Corum",
115
+ "Creeks and Crawdads",
116
+ "Crime Fighter",
117
+ "Crimefighters",
118
+ "Crystalicum (Polish)",
119
+ "CthulhuTech",
120
+ "Cursed Empire",
121
+ "Cutthroat: The Shadow Wars",
122
+ "Cybergeneration",
123
+ "Cyberpunk 2013",
124
+ "Cyberpunk 2020",
125
+ "Cyberspace",
126
+ "Cyborg Commando",
127
+ "C°ntinuum",
128
+ "D6 Adventure",
129
+ "D6 Fantasy",
130
+ "D6 Space",
131
+ "D6 System",
132
+ "DC Adventures",
133
+ "DC Heroes",
134
+ "DC Universe Roleplaying Game",
135
+ "Dallas",
136
+ "Danger International",
137
+ "Dangerous Journeys by E. Gary Gygax",
138
+ "Daredevils",
139
+ "Dark Ages",
140
+ "Dark Champions",
141
+ "Dark Conspiracy",
142
+ "Dark Dungeons",
143
+ "Dark Heresy, the Warhammer 40,000 Roleplay Game",
144
+ "Dark Streets",
145
+ "Darwin's World",
146
+ "Dawning Star",
147
+ "De Profundis",
148
+ "Dead Inside",
149
+ "Dead Reign",
150
+ "Deadlands: Hell on Earth",
151
+ "Deadlands: Lost Colony",
152
+ "Deadlands: The Weird West",
153
+ "Deathwatch",
154
+ "Deliria: Faerie Tales for the New Millennium by Phil Brucato",
155
+ "Delta Force: America Strikes Back!",
156
+ "Demon City Shinjuku Role-Playing Game",
157
+ "Demon Hunters Role Playing Game",
158
+ "Demon's Lair",
159
+ "Demon: The Fallen",
160
+ "Deryni Adventure Game",
161
+ "Diana: Warrior Princess",
162
+ "Diaspora",
163
+ "Dice & Glory",
164
+ "Dinky Dungeons",
165
+ "Dinosaur Planet: Broncosaurus Rex",
166
+ "Diomin",
167
+ "Do: Pilgrims of the Flying Temple",
168
+ "Doctor Who - Adventures In Time And Space: the roleplaying game",
169
+ "Doctor Who - Time Lord (role-playing game)",
170
+ "Dogs in the Vineyard",
171
+ "Domicile",
172
+ "Domination",
173
+ "Dominion Rules",
174
+ "Don't Let Them Take You Alive",
175
+ "Don't Look Back",
176
+ "Don't Rest Your Head",
177
+ "Donjon",
178
+ "Double Cross",
179
+ "Drací doupe",
180
+ "Dragon Age",
181
+ "Dragon Ball Z - Anime Adventure Game",
182
+ "Dragon Lords of Melniboné",
183
+ "Dragon Storm",
184
+ "Dragon Warriors",
185
+ "DragonMech",
186
+ "DragonQuest",
187
+ "DragonRaid",
188
+ "Dragonlance: Fifth Age",
189
+ "Dragonroar",
190
+ "Dragons and Demons",
191
+ "Dragonstar",
192
+ "Dread RPG",
193
+ "Dread: The First Book of Pandemonium",
194
+ "Dream Craft",
195
+ "Dream Park: The Roleplaying Game",
196
+ "Droids",
197
+ "Dune: Chronicles of the Imperium",
198
+ "Dungeon World",
199
+ "Dungeons & Dragons",
200
+ "Durance",
201
+ "Dust Devils",
202
+ "Dying Earth",
203
+ "Dzikie Pola (Wild Fields)",
204
+ "E-RPG System",
205
+ "EABA",
206
+ "ERA",
207
+ "EW-System",
208
+ "EXO",
209
+ "Earthdawn",
210
+ "Eclipse Phase",
211
+ "Eden: the Deceit",
212
+ "El-Hazard Role-Playing Game",
213
+ "Eldritch Role-Playing System",
214
+ "Element Masters",
215
+ "Elemental Axes",
216
+ "Elfquest",
217
+ "Elfs",
218
+ "Elric!",
219
+ "Elven Fire",
220
+ "Empire of the Petal Throne",
221
+ "En Garde!",
222
+ "Endyval",
223
+ "Enforcers",
224
+ "Engel",
225
+ "Enhanced: Humans and Heroes",
226
+ "Eon",
227
+ "Epic Role Playing",
228
+ "Erdor",
229
+ "Espionage!",
230
+ "Eternal Soldier",
231
+ "Etherscope",
232
+ "EverQuest Role-Playing Game",
233
+ "Everway",
234
+ "Evolve Gaming System",
235
+ "Ex Machina",
236
+ "Exalted",
237
+ "Exodus: Post Apocalyptic RPG",
238
+ "Expendables",
239
+ "FTL:2448",
240
+ "FUBAR",
241
+ "FUDGE",
242
+ "Fading Suns",
243
+ "Faery's Tale",
244
+ "Faith: the Sci-Fi RPG",
245
+ "Faldon",
246
+ "Fanhunter",
247
+ "Fantasy Craft",
248
+ "Fantasy Heartbreaker Roleplaying Game",
249
+ "Fantasy Hero",
250
+ "Fantasy Imperium",
251
+ "Fantasy Wargaming",
252
+ "Farscape Roleplaying Game",
253
+ "Fastlane",
254
+ "Fate Core",
255
+ "Fate of the Norns",
256
+ "Fates Worse than Death",
257
+ "Fear Itself",
258
+ "Feng Shui",
259
+ "Fiasco",
260
+ "Field Guide to Encounters",
261
+ "Fifth Cycle",
262
+ "Fight the Evil Power",
263
+ "Fighting Fantasy: The Introductory Role-Playing Game",
264
+ "Fireborn",
265
+ "Firefly",
266
+ "Firelight",
267
+ "Flash Gordon & the Warriors of Mongo",
268
+ "Flashing Blades",
269
+ "Forbidden Kingdoms",
270
+ "Forgotten Futures",
271
+ "Fragged Empire",
272
+ "Freedom Fighters",
273
+ "Friendly Wars",
274
+ "Fringeworthy",
275
+ "Furry Outlaws",
276
+ "Furry Pirates",
277
+ "Fusion",
278
+ "Future Worlds",
279
+ "Fuzion",
280
+ "GUMSHOE System",
281
+ "GURPS Conan",
282
+ "GURPS",
283
+ "Gamma World",
284
+ "Gangbusters",
285
+ "Ganghedge",
286
+ "Gangster!",
287
+ "Gatecrasher",
288
+ "Gaterunner",
289
+ "Gear Antique",
290
+ "Gear Krieg",
291
+ "Geist: The Sin-Eaters",
292
+ "Genesis - The Role Playing Game",
293
+ "Ghost Dog: The Way of the Samurai",
294
+ "Ghostbusters",
295
+ "Ghosts of Albion",
296
+ "Ghoulash: The Last Game on Earth",
297
+ "Godbound",
298
+ "Godlike",
299
+ "Golden Heroes",
300
+ "Gossip Beverly Hills",
301
+ "Grey Ranks",
302
+ "Grimm",
303
+ "Guardians",
304
+ "Gunslingers and Gamblers",
305
+ "HARPE",
306
+ "Habitica",
307
+ "HackMaster",
308
+ "Hakobune",
309
+ "Halcyon",
310
+ "Happy Birthday, Robot!",
311
+ "HardNova II",
312
+ "Haven: City of Violence",
313
+ "Hawkmoon",
314
+ "Hc Svnt Dracones",
315
+ "Heaven & Earth",
316
+ "Heavy Gear",
317
+ "Hercules & Xena Roleplaying Game",
318
+ "Heretics",
319
+ "Hero System",
320
+ "HeroQuest/Hero Wars",
321
+ "Heroes Unlimited",
322
+ "Heroes of Olympus",
323
+ "Heroes",
324
+ "Hidden Kingdom",
325
+ "High Adventure Cliffhangers Buck Rogers Adventure Game",
326
+ "High Adventure Role Playing (HARP)",
327
+ "High Colonies",
328
+ "High Fantasy",
329
+ "Hillfolk",
330
+ "Hogwarts School of Witchcraft & Wizardry",
331
+ "Hol",
332
+ "Hollow Earth Expedition",
333
+ "Hollyworld",
334
+ "Hong Kong Action Theater",
335
+ "Houses of the Blooded",
336
+ "How We Came To Live Here",
337
+ "Hunter Planet",
338
+ "Hunter: The Reckoning",
339
+ "Hunter: The Vigil",
340
+ "HârnMaster/Hârn",
341
+ "Icar by Rob Lang",
342
+ "Imagine Role Playing",
343
+ "Immortal: The Invisible War",
344
+ "In Dark Alleys",
345
+ "In Nomine Satanis / Magna Veritas",
346
+ "In Nomine",
347
+ "InSaNiTy the role-playing game",
348
+ "InSpectres",
349
+ "Incursion",
350
+ "Infernum",
351
+ "Infinity",
352
+ "Inner City",
353
+ "Inou Tsukai",
354
+ "Insight RPG System",
355
+ "Iron Gauntlets: Heroic Fantasy Roleplaying",
356
+ "Iron Heroes",
357
+ "Iron Kingdoms",
358
+ "Ironclaw",
359
+ "Ironhedge",
360
+ "It Came From The Late, Late, Late Show",
361
+ "It Was a Mutual Decision",
362
+ "Jadeclaw",
363
+ "Jags",
364
+ "JailLords - Are You a Jail Lord or a Jail Fish?",
365
+ "James Bond 007: Role-Playing in Her Majesty's Secret Service",
366
+ "Jeremiah: The Roleplaying Game",
367
+ "John Carter, Warlord of Mars",
368
+ "Jorune (or Skyrealms of Jorune)",
369
+ "Jovian Chronicles",
370
+ "Judge Dredd: The Role-Playing Game",
371
+ "Justice, Inc.",
372
+ "Justifiers",
373
+ "KABAL",
374
+ "Khymir",
375
+ "Killer",
376
+ "Kindred of the East",
377
+ "Kindred of the Ebony Kingdom",
378
+ "Kingdom of Nothing",
379
+ "Knights and Magick",
380
+ "Knights of the Round Table",
381
+ "Kobolds Ate My Baby!",
382
+ "Krysztaly Czasu",
383
+ "Kult",
384
+ "Labyrinth Lord",
385
+ "Lace and Steel",
386
+ "Lamentations of the Flame Princess",
387
+ "Land of the Rising Sun",
388
+ "Lands of Adventure",
389
+ "Legacy",
390
+ "Legend of the Five Rings Role-Playing Game",
391
+ "Legends and Loot",
392
+ "Legends of Anglerre",
393
+ "Legendy Armandie",
394
+ "Legionnaire",
395
+ "Lejendary Adventure",
396
+ "Les Chroniques d'Erdor",
397
+ "Leverage",
398
+ "Lightspeed",
399
+ "Little Fears - The Role-playing Game of Childhood Terror",
400
+ "Live Free or Die, the Game of Suburban Insurgency",
401
+ "Living Steel",
402
+ "Lone Wolf",
403
+ "Lord of the Rings Adventure Game",
404
+ "Lords of Creation",
405
+ "Légendes Celtiques",
406
+ "Légendes de la Vallée des rois",
407
+ "M.A.G.U.S.",
408
+ "M.I.S.S.I.O.N.",
409
+ "MEGA Role-Playing System",
410
+ "MERC",
411
+ "MYFAROG - Mythic Fantasy Role-playing Game",
412
+ "Mach: The First Colony",
413
+ "Macho Women with Guns",
414
+ "Macross II: The Role-Playing Game",
415
+ "Maelstrom",
416
+ "Mage: The Ascension",
417
+ "Mage: The Awakening",
418
+ "Mage: The Sorcerer's Crusade",
419
+ "Maji",
420
+ "Malefices",
421
+ "Malls and Morons",
422
+ "Man, Myth & Magic",
423
+ "Manhunter",
424
+ "Marvel Heroic Roleplaying",
425
+ "Marvel Super Heroes Adventure Game",
426
+ "Marvel Super Heroes Role-Playing Game",
427
+ "Marvel Universe Roleplaying Game",
428
+ "Mashou Denki La Valeur",
429
+ "Masterbook",
430
+ "MechWarrior",
431
+ "Mecha",
432
+ "Mechamorphosis",
433
+ "Mechanical Dream",
434
+ "Mega - les Messagers Galactiques",
435
+ "Megaverse",
436
+ "Meikyu kingdom",
437
+ "Mekton",
438
+ "Melanda: Land of Mystery",
439
+ "Men In Black: The Roleplaying Game",
440
+ "Merc 2000",
441
+ "Mercenaries, Spies and Private Eyes",
442
+ "Metal Magic and Lore",
443
+ "Metamorphosis Alpha",
444
+ "Michtim: Fluffy Adventures",
445
+ "Microscope",
446
+ "Middle Earth Role Play",
447
+ "Midgard",
448
+ "Midnight at the Well of Souls Role-Playing System",
449
+ "Midnight",
450
+ "Miles Christi",
451
+ "Millennium's End",
452
+ "Mind Games RPG",
453
+ "Mistborn Adventure Game",
454
+ "Mojo",
455
+ "Monastyr",
456
+ "Monsterhearts",
457
+ "Monsters and Other Childish Things",
458
+ "Monsters! Monsters!",
459
+ "Mordheim",
460
+ "Morpheus",
461
+ "Morton's List",
462
+ "Mouse Guard",
463
+ "Multiverser",
464
+ "Mummy: The Resurrection",
465
+ "Murphy's World",
466
+ "Mutant Chronicles",
467
+ "Mutant City Blues",
468
+ "Mutant Future",
469
+ "Mutant RYMD",
470
+ "Mutant",
471
+ "Mutant: Undergångens Arvtagare",
472
+ "Mutants & Masterminds",
473
+ "Mutazoids",
474
+ "My Life with Master",
475
+ "Myrskyn aika",
476
+ "Mystic Quests",
477
+ "Mystic Realms",
478
+ "Mythworld",
479
+ "Necroscope",
480
+ "Neighborhood",
481
+ "Neiyar: Land of Heaven and the Abyss",
482
+ "NeoKosmos",
483
+ "Nephilim",
484
+ "Neuroshima",
485
+ "Nexus: The Infinite City",
486
+ "Nicotine Girls",
487
+ "Night Wizard!",
488
+ "Night of the Ninja",
489
+ "Night's Black Agents",
490
+ "Nightbane",
491
+ "Nightlife",
492
+ "Nights of the Crusades",
493
+ "Ninja Burger",
494
+ "Ninjas and Superspies",
495
+ "Nobilis",
496
+ "Noctum",
497
+ "Noir",
498
+ "Normality",
499
+ "Northern Crown",
500
+ "Nova Praxis",
501
+ "Novus",
502
+ "Now Playing",
503
+ "Numenera",
504
+ "OSRIC",
505
+ "Obsidian - The Age of Judgement",
506
+ "Odysseus",
507
+ "Old Dragon",
508
+ "Omnigon",
509
+ "Only War",
510
+ "Ops and Tactics",
511
+ "Ork! The Roleplaying Game",
512
+ "Orkworld",
513
+ "Orpheus",
514
+ "Other Suns",
515
+ "Outbreak: Undead",
516
+ "Outime",
517
+ "Over the Edge'",
518
+ "Paladin",
519
+ "Palladium Fantasy Role-Playing Game",
520
+ "Pandemonium!",
521
+ "Pantheon",
522
+ "Paper Computer Games",
523
+ "Paranoia",
524
+ "Passion Play",
525
+ "Path of the Oracle role playing game",
526
+ "Pathfinder",
527
+ "Pax Draconis",
528
+ "Pendragon (or King Arthur Pendragon)",
529
+ "Phantasia",
530
+ "Phantasy Conclave",
531
+ "Phase VII",
532
+ "Phoenix Command",
533
+ "Pirates and Plunder",
534
+ "Pirates!",
535
+ "Plüsch, Power & Plunder (German)",
536
+ "Point Blank",
537
+ "Polaris (1997)",
538
+ "Polaris",
539
+ "PowerGame",
540
+ "Powers and Perils",
541
+ "Praedor",
542
+ "Prime Directive",
543
+ "Primetime Adventures",
544
+ "Prince Valiant: The Story-Telling Game",
545
+ "Privateers and Gentlemen",
546
+ "Project A-ko: The Roleplaying Game",
547
+ "Project: Paradigm",
548
+ "Promethean: The Created",
549
+ "Psiworld",
550
+ "Pulp Adventure",
551
+ "Puppetland",
552
+ "Q10",
553
+ "QAGS",
554
+ "Qin",
555
+ "Quest of the Ancients",
556
+ "Quill: Quill: A Letter-Writing Roleplaying Game for a Single Player",
557
+ "RMSS (Rolemaster Fantasy Role Playing)",
558
+ "Raex: The roleplaying adventure experience",
559
+ "Rangers of Taradoin",
560
+ "Rapture: The Second Coming",
561
+ "Recon",
562
+ "Red Dragon",
563
+ "Red Dwarf: The Role Playing Game",
564
+ "Reich Star",
565
+ "Reign",
566
+ "Rifts Chaos Earth",
567
+ "Rifts",
568
+ "Ringworld",
569
+ "Risus",
570
+ "Robot Warriors",
571
+ "Robotech",
572
+ "Robotech: The Shadow Chronicles Role-Playing Game",
573
+ "Rogue Trader",
574
+ "Rotted Capes",
575
+ "Rules to Live By",
576
+ "Rune Striders",
577
+ "Rune",
578
+ "RuneQuest[11]",
579
+ "RuneSlayers",
580
+ "Runebearer",
581
+ "Rêve: the Dream Ouroboros",
582
+ "S/lay w/Me",
583
+ "SAGA System",
584
+ "SLA Industries",
585
+ "STOCS",
586
+ "Saga",
587
+ "Sanctum Polis - Rest Eternal Memory",
588
+ "Sandman: Map of Halaal",
589
+ "Satasupe",
590
+ "Savage Worlds",
591
+ "Scion: Hero",
592
+ "Sea Dracula",
593
+ "Second Dawn",
594
+ "SenZar",
595
+ "Sengoku",
596
+ "Serenity",
597
+ "Seventh Sea",
598
+ "Shadow Fight 2",
599
+ "Shadow Lords",
600
+ "Shadow Nations",
601
+ "Shadow of the Demon Lord",
602
+ "Shadowforce Archer",
603
+ "Shadowrun",
604
+ "Shatterzone",
605
+ "Shock: Social Science Fiction",
606
+ "Silver Age Sentinels",
607
+ "Simian Conquest",
608
+ "Simple System",
609
+ "Simply Roleplaying!",
610
+ "Sine Requie",
611
+ "Skulduggery",
612
+ "Skull and Crossbones: Roleplay on the Spanish Main",
613
+ "Skyrealms of Jorune",
614
+ "Sláine: The Roleplaying Game of Celtic Heroes",
615
+ "Smallville",
616
+ "Sojourner's Quest: A Fantasy Role Playing Game",
617
+ "Sorcerer by Ron Edwards",
618
+ "Sovereign Stone",
619
+ "Space 1889",
620
+ "Space Dragon",
621
+ "Space Gothic",
622
+ "Space Infantry",
623
+ "Space Opera",
624
+ "Space Quest",
625
+ "SpaceNinjaCyberCrisis XDO",
626
+ "SpaceTime",
627
+ "Spacemaster",
628
+ "Spaceship Zero",
629
+ "Sphinx",
630
+ "Spione: Story Now in Cold War Berlin",
631
+ "Spirit of the Century",
632
+ "Splicers",
633
+ "Splittermond",
634
+ "Spycraft",
635
+ "Squawk",
636
+ "St. Palmer's",
637
+ "Stalking the Night Fantastic",
638
+ "Standard RPG System",
639
+ "Star Ace",
640
+ "Star Frontiers",
641
+ "Star Hero",
642
+ "Star Legend",
643
+ "Star Patrol",
644
+ "Star Riders",
645
+ "Star Rovers",
646
+ "Star Trek: Adventure Gaming in the Final Frontier",
647
+ "Star Trek: Deep Space Nine Role Playing Game",
648
+ "Star Trek: The Next Generation Role-playing Game",
649
+ "Star Trek: The Role Playing Game",
650
+ "Star Wars: The Roleplaying Game",
651
+ "Star Wreck Roleplaying Game",
652
+ "Star*Drive",
653
+ "StarCraft Adventures",
654
+ "StarRun",
655
+ "Starblazer Adventures",
656
+ "Starfaring",
657
+ "Starfinder Roleplaying Game",
658
+ "Starfleet Voyages",
659
+ "Stargate SG-1 (RPG)",
660
+ "Starhedge by Empire Wargames",
661
+ "Starship Troopers (RPG)",
662
+ "Starships & Spacemen",
663
+ "SteamCraft",
664
+ "Steve Perrin's Quest Rules",
665
+ "Stormbringer",
666
+ "Storytelling System",
667
+ "Street Fighter: The Storytelling Game",
668
+ "Strike Legion",
669
+ "Strontium Dog",
670
+ "Sundered Epoch: Generations",
671
+ "Super Crusaders",
672
+ "Super Powers Unlimited",
673
+ "Super Squadron",
674
+ "Supergame",
675
+ "Superhero 2044",
676
+ "Supernatural",
677
+ "Supervillains",
678
+ "Superworld by Chaosium",
679
+ "Swashbucklers of the 7 Skies",
680
+ "Sword World RPG",
681
+ "Swordbearer",
682
+ "Swords & Wizardry",
683
+ "Synnibarr",
684
+ "Systems Failure",
685
+ "TORG",
686
+ "TWERPS",
687
+ "Tagmar",
688
+ "Tales from the Floating Vagabond",
689
+ "Talislanta",
690
+ "Taste My Steel!",
691
+ "Technoir",
692
+ "Teenage Mutant Ninja Turtles and Other Strangeness",
693
+ "Teenagers from Outer Space",
694
+ "Ten Thousand Worlds",
695
+ "Tenchi Muyo!",
696
+ "Tenra War",
697
+ "Tephra: The Steampunk RPG",
698
+ "Terra Incognita",
699
+ "Terra Primate",
700
+ "Terra the Gunslinger",
701
+ "TerraDrive",
702
+ "Testament (role-playing game)",
703
+ "The Adventures of Indiana Jones Role-Playing Game",
704
+ "The Authority Role-Playing Game",
705
+ "The Burning Wheel",
706
+ "The Castle Perilous",
707
+ "The Challenges Game System",
708
+ "The Confederate Rangers",
709
+ "The Dark Eye",
710
+ "The Doctor Who Role Playing Game",
711
+ "The Dominion Tank Police Role-Playing Game",
712
+ "The Dresden files",
713
+ "The Esoterrorists",
714
+ "The Everlasting",
715
+ "The Extraordinary Adventures of Baron Munchausen",
716
+ "The Fantasy Sagas",
717
+ "The Fantasy Trip",
718
+ "The Great Commission",
719
+ "The Judge Dredd Roleplaying Game",
720
+ "The Laundry",
721
+ "The Lord of the Rings Roleplaying Game",
722
+ "The Masters of the Universe Role Playing Game",
723
+ "The Mechanoid Invasion",
724
+ "The Metabarons Roleplaying Game",
725
+ "The Modern Sagas",
726
+ "The Monster Horror Show",
727
+ "The Morrow Project",
728
+ "The Mountain Witch",
729
+ "The Nearside Project",
730
+ "The Official Superhero Adventure Game",
731
+ "The One Ring: Adventures over the Edge of the Wild",
732
+ "The Pokéthulhu Adventure Game",
733
+ "The Pool",
734
+ "The Price of Freedom",
735
+ "The Primal Order",
736
+ "The Realm of Yolmi",
737
+ "The Riddle of Steel",
738
+ "The Sci-Fi Sagas",
739
+ "The Shab-al-Hiri Roach",
740
+ "The Shadow of Yesterday",
741
+ "The Slayers d20",
742
+ "The Spawn of Fashan",
743
+ "The Squared Circle",
744
+ "The Strange",
745
+ "The Unexplained",
746
+ "The Wheel of Time Roleplaying Game",
747
+ "The Whispering Vault",
748
+ "The World of Indiana Jones",
749
+ "The World of Kystrel",
750
+ "The Zorcerer of Zo",
751
+ "Theatrix",
752
+ "Thieves' Guild",
753
+ "Thieves' World",
754
+ "Thrilling Tales",
755
+ "Tibet: The Roleplaying Game",
756
+ "Time & Time Again",
757
+ "Time Lord — Adventures through Time and Space",
758
+ "Timehunter",
759
+ "Timelords",
760
+ "Timemaster",
761
+ "Timeship",
762
+ "To Challenge Tomorrow",
763
+ "Tokyo NOVA",
764
+ "Toon",
765
+ "Top Secret",
766
+ "Total Eclipse RPG",
767
+ "Trail of Cthulhu",
768
+ "Transhuman Space",
769
+ "Trauma",
770
+ "Traveller",
771
+ "Traveller: 2300",
772
+ "Trevas",
773
+ "Tri-Stat dX",
774
+ "Tribe 8",
775
+ "Tribes",
776
+ "Trinity",
777
+ "Trollbabe",
778
+ "True20",
779
+ "Truth & Justice",
780
+ "Trystell",
781
+ "Tunnels and Trolls",
782
+ "Twilight 2000",
783
+ "Twilight Imperium: The Role-Playing Game",
784
+ "Tékumel: Empire of the Petal Throne",
785
+ "URPG",
786
+ "USS Infinity",
787
+ "Uncharted Worlds",
788
+ "Underground",
789
+ "Underworld",
790
+ "Unhallowed Metropolis",
791
+ "Unisystem",
792
+ "Universalis",
793
+ "Universe",
794
+ "Unknown Armies",
795
+ "Usagi Yojimbo",
796
+ "Uuhraah!",
797
+ "Valley of the Pharaohs",
798
+ "Vampire: The Dark Ages",
799
+ "Vampire: The Masquerade",
800
+ "Vampire: The Requiem",
801
+ "Vanishing Point (role-play game)",
802
+ "Victorian Adventure",
803
+ "Victorian Age: Vampire",
804
+ "Victoriana - 2nd edition",
805
+ "Villains and Vigilantes",
806
+ "Violence",
807
+ "WARS Roleplaying Game",
808
+ "WWE: Know Your Role",
809
+ "Warcraft the Roleplaying Game",
810
+ "Warhammer 40,000 Roleplay",
811
+ "Warhammer Fantasy Roleplay",
812
+ "Warheads: Medieval Tales",
813
+ "Waste World",
814
+ "Wayfarers",
815
+ "Weapons of the Gods",
816
+ "Weird Wars",
817
+ "Werewolf: The Apocalypse",
818
+ "Werewolf: The Forsaken",
819
+ "Werewolf: The Wild West by White Wolf",
820
+ "Westhedge",
821
+ "What Price Glory?!",
822
+ "When Worlds Collide",
823
+ "White Wolf Publishing (edition 3)",
824
+ "Wiedźmin",
825
+ "Wild Talents",
826
+ "Wild West",
827
+ "Witch Hunt",
828
+ "Witch Hunter: The Invisible World",
829
+ "Witchcraft",
830
+ "With Great Power...",
831
+ "Wizards' Realm",
832
+ "Wizards' World",
833
+ "Woof meow",
834
+ "World Action And Adventure",
835
+ "World Tree",
836
+ "World of Darkness",
837
+ "World of Synnibarr",
838
+ "Worlds Beyond",
839
+ "Worlds of Wonder",
840
+ "Wraith: The Great War",
841
+ "Wraith: The Oblivion",
842
+ "Wushu",
843
+ "Wyrd is Bond",
844
+ "Xcrawl",
845
+ "Y-Modus",
846
+ "Year of the Phoenix",
847
+ "Year of the Zombie",
848
+ "Ysgarth",
849
+ "Zaibatsu",
850
+ "Zen and the Art of Mayhem",
851
+ "Zone",
852
+ "Zweihänder",
853
+ "d20 Future",
854
+ "d20 Modern",
855
+ "d20 Past",
856
+ "d20 System",
857
+ "d20"
858
+ ]
859
+ }