coreyscorndogs

Sex Games

Apr 23rd, 2016
6,403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 5.29 KB | None | 0 0
  1. from datetime import datetime
  2. from sys import exit
  3. import string
  4. import os
  5.  
  6. now = datetime.now()
  7. os.system('clear')
  8. name = input("Whats's your name sir/madam? ")
  9.  
  10.  
  11. def main():
  12.     # this validates the player is above the age of 18
  13.     def age_valid():
  14.         # gets users name and capitalises the first letter
  15.  
  16.         fix_name = string.capwords(name)
  17.  
  18.         os.system('clear')
  19.  
  20.         print("Hello " + fix_name + ", please proceed!")
  21.  
  22.         # gets users birthday and converts it to an age
  23.         age_yr = int(input("What year were you born? "))
  24.         actual_age = int(now.year) - int(age_yr)
  25.         age_diff = int(18) - actual_age
  26.  
  27.         # validates user is between 18-100 or else it returns invalid
  28.  
  29.         if age_yr != 0 and 0 < actual_age < 100 and actual_age >= 18:
  30.             os.system('clear')
  31.             return "Alright, " + fix_name + " let's do this.\n"
  32.  
  33.         elif age_yr == 0 or actual_age >= 100:
  34.             os.system('clear')
  35.             print("You say you're", actual_age,
  36.                   "years old? That doesn't seem to be a real age. \nSorry fake person.") + exit()
  37.  
  38.         else:
  39.             os.system('clear')
  40.             print("Sorry kiddo, this is for adults only. \nYou have", age_diff,
  41.                   "more years till you join this club.") + exit()
  42.  
  43.     print(age_valid())
  44.  
  45.     def main_game():
  46.         animal = input(
  47.             "What animal would you like to give you sexual advice? ")
  48.         os.system('clear')
  49.  
  50.         animal_name = string.capwords(animal)
  51.         # this takes the first letter of animal and turns it lowercase
  52.         animal_letter = animal[0].lower()
  53.  
  54.         if 'a' in animal_letter:
  55.             return "The %s thinks, You might be in to anal sex, you should try it out!" % animal_name
  56.         elif 'b' in animal_letter:
  57.             return "The %s thinks, Buttsex is pretty fun, try it out" % animal_name
  58.         elif 'c' in animal_letter:
  59.             return "The %s thinks cunts are fun. Fuck her in the Cunt!" % animal_name
  60.         elif 'd' in animal_letter:
  61.             return "The %s thinks dicks are fun to play with!" % animal_name
  62.         elif 'e' in animal_letter:
  63.             return "The %s thinks you should try Esophagus fucking, straight down her throat." % animal_name
  64.         elif 'f' in animal_letter:
  65.             return "The %s thinks Finger fucks are always fun." % animal_name
  66.         elif 'g' in animal_letter:
  67.             return "The %s thinks you should Grind and hump a little." % animal_name
  68.         elif 'h' in animal_letter:
  69.             return "%s says enjoy Handjobs?" % animal_name
  70.         elif 'i' in animal_letter:
  71.             return "The %s thinks you should invest in nice bed sheets." % animal_name
  72.         elif 'j' in animal_letter:
  73.             return "The %s thinks you should Jackoff by yourself." % animal_name
  74.         elif 'k' in animal_letter:
  75.             return "The %s thinks is thinking about Kinky shit like food play." % animal_name
  76.         elif 'l' in animal_letter:
  77.             return "The %s thinks you should Lick each other till one person cums." % animal_name
  78.         elif 'm' in animal_letter:
  79.             return "The %s thinks you should Makeout with each others genitals." % animal_name
  80.         elif 'n' in animal_letter:
  81.             return "The %s thinks, Nuts in the mouth. So nice." % animal_name
  82.         elif 'o' in animal_letter:
  83.             return "The %s thinks, Open your blinds and let the neighbors watch." % animal_name
  84.         elif 'p' in animal_letter:
  85.             return "Penis!"
  86.         elif 'q' in animal_letter:
  87.             return "The %s thinks, Queer sex with a queer friend." % animal_name
  88.         elif 'r' in animal_letter:
  89.             return "The %s thinks, Rape? Just kidding, not funny at all." % animal_name
  90.         elif 's' in animal_letter:
  91.             return "The %s thinks you should Squirt on each other." % animal_name
  92.         elif 't' in animal_letter:
  93.             return "The %s thinks Threesomes, share the love." % animal_name
  94.         elif 'u' in animal_letter:
  95.             return "The %s thinks you should try Under the covers, nobody peeks." % animal_name
  96.         elif 'v' in animal_letter:
  97.             return "The %s thinks, Vaginal intercourse, so kinky." % animal_name
  98.         elif 'w' in animal_letter:
  99.             return "The %s thinks you should Wife-swap with your best friend." % animal_name
  100.         elif 'x' in animal_letter:
  101.             return "The %s thinks, Xenophobic sex, fuck a nationality you're afraid of." % animal_name
  102.         elif 'y' in animal_letter:
  103.             return "The %s thinks, Yelp review you sexual partner." % animal_name
  104.         elif 'z' in animal_letter:
  105.             return "The %s thinks, Z-Jobs, but he knows you can't afford it." % animal_name
  106.         else:
  107.             return "The %s thinks what you picked is not a real animal!" % animal_name
  108.  
  109.     print(main_game())
  110.  
  111.     def replay():
  112.  
  113.         reply_answer = input("\nWould you like more animal based sex advice? ")
  114.         reply_answer_corrected = reply_answer.lower()
  115.  
  116.         if reply_answer_corrected in ['n', 'no']:
  117.             return "Pleasure was all mine. Until next time."
  118.  
  119.         elif reply_answer_corrected in ['y', 'yes']:
  120.             os.system('clear')
  121.             return main_game()
  122.  
  123.     print(replay())
  124.  
  125. print(main())
Add Comment
Please, Sign In to add comment