Advertisement
Guest User

Untitled

a guest
Nov 21st, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. #score
  2. friendly_point = 0
  3. awkward_point = 0
  4. cool_point = 0
  5. #introduction
  6. print("You see an asian girl, wearing a knitted sweater over her school uniform, she has glasses and purple hair with a straight bang covering her forehead.")
  7. name=input("'Hello! What is your name?' the pretty girl asks you.")
  8. friendly_point = friendly_point + 1
  9. print("'H-hello, my name is", name,".' You answer nerviously, waiting for her response.")
  10. print(" ")
  11. print("* Yay! you earned one friend point. You will earn different points depending on your actions, so choose whisely! *")
  12. print(" ")
  13. print("The girl smiles. 'Well, welcome to Equestria High! I'm Twilight and I'm your guide.' She lifts her hand..")
  14. A = input("Do you A: Shake her hand and smile. or B: Stand there awkwardly and be quiet. or C: Give her a highfive and laugh.")
  15. print(" ")
  16. if A == "A":
  17. print("She grabs your hand and shakes it gently. 'It's nice to meet you!' * + 1 friend point * ")
  18. friendly_point = friendly_point + 1
  19. if A == "B":
  20. print("She keeps holding her hand up for a while but takes it down after a few seconds of awkward silence.'Ehhrm..' * + 1 awkward point *")
  21. awkward_point = awkward_point + 1
  22. if A == "C":
  23. print("She tries her best to give you a highfive back, missing slightly. She giggles and says 'Well, it's nice to meet you!' * +1 cool point *")
  24. cool_point = cool_point + 1
  25. print(" ")
  26. place=input("Twilight takes up her phone from her pocket and looks at the time. 'oh , we better get going.. Where do you want to go first, the gym, the library or the cafeteria?':")
  27. print(" ")
  28. print("'I want to go to the",place,"first!' you answer, and she smiles. 'Well, let's go then!'")
  29. print(" ")
  30. #library
  31. if place == "library":
  32. print("You arrive at the library, which contains of a big hall. The space appears to be more cramped than it is because of the bookshelves covering all of the walls. You notice Twilight waving to someone in the room. She walks over to the person..")
  33. B =input("Do you A: Walk after her quietly. or B: Scream her name and ask where shes going. or C: stand still quietly, not knowing what to do.")
  34. if B == "A":
  35. print("You follow her. * +1 friend point *")
  36. friend_point = friend_point +1
  37. if B == "B":
  38. print("Twilight turns around quickly and stares at you. Everyone in the library gets stunned the sudden noise and the lady hushes at to be quiet. Both you and Twilight starts laughing. * +1 cool point * * +1 awkward point*")
  39. cool_point = cool_point + 1
  40. awkward_point = awkward_point + 1;
  41. if B == "C":
  42. print("You stand still in your place for a few seconds before Twilight turns to you and sighs. 'Come here", name, ".' * +1 awkward point * ")
  43. awkward_point = awkward_point + 1;
  44. print(" ")
  45. print("At the table sits a elegant girl. She has violet, curly, beautiful hair and her skin is really pale, almost transparent. Her lashes are heavily coated with mascara and she is wearing a pair of heavy blue crystal earrings.");
  46. C=input("Are you A: Stunned by her elegance and beauty. or B: Excited to talk to her, she seems nice.")
  47. print(" ")
  48. if C == "A":
  49. D=input("You stand quietly and stare at the girl for a moment. She breaks the silence by introducing herself. 'I'm Rarity, and you are?' Do you A: stay quiet and dont say anything. or B: try to introduce youself, descpite your nerviousness.")
  50. if D == "A":
  51. print("You stand there quiet for a while. Twilight snickers 'This is", name,".' she says. * +1 awkward point *")
  52. awkward_point = awkward_point + 1;
  53. if D == "B":
  54. print("You inhale deeply. 'I.. I-I'm", name,"...' you stutter. Rarity smiles friendly at you. * +1 friendly point *");
  55. friendly_point = friendly_point + 1;
  56. if C == "B":
  57. E=input("You rase your hand and the girl puts her hand in yours and shakes it. Do you A: Smile and wait for her to introduce herself. or B: Introduce yourself with charm before she has the chance to say anything.")
  58. if E == "A":
  59. print("She smiles and takes a deep breath before introducing herself. 'I'm Rarity!' she says. 'and you are?' 'My name is', name,'!' * +1 friendly point * ");
  60. friendly_point = friendly_point + 1;
  61. if E == "B":
  62. print("you slam you fist in the table and smiles. 'My name is,", name,"! I'm new here, my friend Twilight here is showing me around.' you say confidently. Twilight looks at you. 'Well.. My name is Rarity.' she responds. * +1 cool point *");
  63. cool_point = cool_point + 1
  64. print("uriuhfdj")
  65. #score
  66. print(" ")
  67. print("Your current scores are:")
  68. print("friendly score:",friendly_point)
  69. print("cool score",cool_point)
  70. print("awkward score",awkward_point)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement