Advertisement
Guest User

The Adventures of a Virgin

a guest
May 27th, 2015
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. confirm("I am ready to begin The Adventures of a Virgin!")
  2. var age = prompt("What's your age?");
  3. if (age < 13)
  4. {
  5.     console.log("You can play but i take no responsibility..");
  6. }
  7. else
  8. {
  9.     console.log("Enjoy geezas!");
  10. }
  11.    
  12. console.log("You are out with your friend and a girl.'");
  13.  
  14. console.log("Suddenly, the girl turns and says 'Rock or Cock?'");
  15. var userAnswer = prompt ("Do you pick rock or cock?");
  16.  
  17. if (userAnswer === "cock")
  18. {
  19.     console.log("The girls reaches out and touches your penis, only to realise... it is one inch! Thus your virginity stays in tact.");
  20. }
  21. else
  22. {
  23.     console.log("You receive a rock to the penis, thus your virginity stays in tact'");
  24. }
  25.  
  26. var feedback = prompt("Rate this game out of 10!");
  27.  
  28. if (feedback > 8)
  29.  
  30. {
  31.     console.log("Thank you, carry on slaying!");
  32. }
  33. else
  34. {
  35.     console.log("You're clearly a virgin to not like this game.");
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement