Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function drawFromList(list) {return list[Math.floor(Math.random() * list.length)];}
  2.  
  3. var subjects= [
  4. "Arthur",
  5. "Uther",
  6. "Isiah of Colm",
  7. "Amaryllis",
  8. "Joon",
  9. "Juniper",
  10. "Kuniper",
  11. "Huniper",
  12. "Fenn",
  13. "Grak",
  14. "Solace",
  15. "The Locus",
  16. "Valencia",
  17. "Bethel",
  18. "Ropey",
  19. "Raven",
  20. "The Library",
  21. "Cypress",
  22. "Fel Seed",
  23. "Fallatehr",
  24. "Actual Cannibal Shia Leboeuf",
  25. "The DM",
  26. "Dahlia",
  27. "Aerb",
  28. "The sun",
  29. "The Other Side",
  30. "Larkspur",
  31. "Doris Finch",
  32. "Manifest",
  33. "Captain Blue-in-the-Bottle",
  34. "[REDACTED]",
  35. "Rove",
  36. "Pai Shep",
  37. "Celestar",
  38. "Jorge",
  39. "Harry Potter",
  40. "Pallida",
  41. "Speculator Masters",
  42. "Aumann",
  43. "Thargox",
  44. "The entirety of hell",
  45. "a bucket of spiders",
  46. "The Council of Arches",
  47. "Tiff",
  48. "Reimer",
  49. "Maddie",
  50. "Tom",
  51. "A unicorn",
  52. "The Void Beast",
  53. "Alexander Wales",
  54. ];
  55.  
  56. var objects= [
  57. "is πŸ’―.",
  58. "is πŸ’―. It's so obvious.",
  59. "and πŸ’― are the same person.",
  60. "has secretly been πŸ’― the whole time.",
  61. "edited their soul to become πŸ’―.",
  62. "is totally πŸ’―, you guys.",
  63. "is actually πŸ’―.",
  64. "is the child of πŸ’― and πŸ’―.",
  65. "is actually the original princess Juniper was supposed to save.",
  66. "is a genderbent version of πŸ’―.",
  67. "is a lost descendant of πŸ’―.",
  68. "is the future πŸ’―.",
  69. "is a clone of πŸ’―.",
  70. "is secretly in love with πŸ’―.",
  71. "is secretly planning to eat πŸ’―.",
  72. "is a projection in the sky.",
  73. "is in a love triangle with πŸ’― and πŸ’―.",
  74. "is a Renacim.",
  75. "is a DMPC.",
  76. "is a toroid.",
  77. "is a Klein bottle.",
  78. "is a projection in the sky.",
  79. "doesn't follow the laws of Newtonian physics.",
  80. "is a p-zombie.",
  81. "loops in the z-axis.",
  82. "is full of platinum.",
  83. "is actually super duper evil.",
  84. "is the real self-insert.",
  85. "is from Earth.",
  86. "has been dead the whole time.",
  87. "is responsible for creating the exclusion zones.",
  88. "has actually just been hallucinating.",
  89. "created πŸ’―.",
  90. ];
  91.  
  92. function genCrack(){
  93.     sub = drawFromList(subjects);
  94.     obj = drawFromList(objects);
  95.     obj = obj.replace("πŸ’―", drawFromList(subjects));
  96.     obj = obj.replace("πŸ’―", drawFromList(subjects));
  97.     obj = obj.replace(".","!");
  98.     sub = sub.toUpperCase();
  99.     obj = obj.toUpperCase();
  100.     return sub+' '+obj;
  101. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement