Advertisement
Guest User

Untitled

a guest
Dec 4th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.31 KB | None | 0 0
  1. #!/usr/bin/env python2
  2. character = raw_input("Please select your character: \n\
  3. 1 = Janitor \n\
  4. 2 = Warosubro \n")
  5.  
  6. HP=10
  7. if character == "1":
  8.     print "\nHP: %d \nWarosubro appears. Warosubro posted a Saten thread! \n\
  9. Crrshhhhhhh! A critical hit, Janny is steaming! HP - 4" % HP
  10.     HP=(HP-4)
  11.     print "HP: %d \n" % HP
  12.     choice = raw_input("What do you do? \n\
  13. 1: del thread \n\
  14. 2: Complain to Moot \n")
  15.     if choice == "1":
  16.         print "\nHP: %d \nJanny tries Delete Thread! It wasn't very effective!" % HP
  17.         print "Saten uses bat attack! \nBonk! Janny got knocked the fuck out! HP: 0 \nGame over!"
  18.     else:
  19.         print "\nMoot smacks a bitch! \nJanny got knocked the fuck out! (Moot has very strong hands) HP: 0 \nGame over!"
  20. else:
  21.     choice = raw_input("\nWhat will you post? \n1: Kancolle thread \n2: Japanese bird cooking spaghetti\n")
  22.     if choice == "1":  
  23.         print "\nHP: %d\nYou posted Kancolle thread! It's super effective! Janny is steaming, he wants to delete the thread but can't!" % HP
  24.         print "Janny is lost in rage and loses all HP! He leaves to go shitpost on tumblr!"
  25.     else:
  26.         print "\nHP: %d\nYou posted Japanese Bird Cooking Spaghetti! The janitor flew into a fit of laughter" % HP
  27.         print "He laughed so much he died."
  28.     print "Congrats dude!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement