Advertisement
Guest User

Dungeon.py

a guest
Jan 26th, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 7.20 KB | None | 0 0
  1. print("PLEASE USE QUOTATION MARKS FOR ANY NON NUMERIC CHOICE")
  2. print("/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/")
  3. print("Welcome to Dungeons")
  4. print("Speak your name Venturer")
  5. name=input()
  6. print("You begin your adventure")
  7. print("You travel through Green Groves and stumble upon a Dungeon door")
  8. print("Do you enter?")
  9. enter=input()
  10. if enter=="yes":
  11.     print("You open the Dungeon with elbow grease")
  12.     print("You walk down and reach a skeleton")
  13.     print("can you pass?")
  14.     print("enter any number quickly!")
  15.     a=int(input())
  16.     if a>=5:
  17.         print("pass")
  18.         print("You continue to travel further into the dark")
  19.         print("You meet a very attractive girl")
  20.         print("She seems erotic, what will you do?")
  21.         print("choose a or b")
  22.         interact=input()
  23.         if interact=="a":
  24.             print("You protect her")
  25.             print("She is now your accomplice")
  26.             print("You continue to walk further into the dark")
  27.             print("You encounter a Goblin with a dagger")
  28.             print("You must act fast or he will stab you and take the girl")
  29.             print("You can punch, kick or strangle the Goblin")
  30.             act=input()
  31.             if act=="punch":
  32.                 print("You swung your hand way to high and missed")
  33.                 print("You were stabbed in the gut and the girl was taken by the Goblin")
  34.                 print("You bled out")
  35.             if act=="strangle":
  36.                 print("You psychoticly jumped after the poor Goblin")
  37.                 print("You squeezed the Goblin so hard his eyes popped out")
  38.                 print("The girl saw this, got scared and stabbed you")
  39.                 print("She ran away while you bled out")
  40.                 print("Next time consider those around you")  
  41.             if act=="kick":
  42.                 print("You kicked the Goblin to the afterlife")
  43.                 print("You pick up the dagger the Goblin dropped")
  44.                 print("You are safe for now")
  45.                 print("The girl moans in comfort of being safe")
  46.                 print("You continue walking further.....")
  47.                 print("You see a light in the distance")
  48.                 print("As you get closer, the girl begins to tremble")
  49.                 print("Will you ignore her actions and proceed to the light or comfort her?")
  50.                 interact=input()
  51.             if interact=="comfort":
  52.                 print("You pause to hug her and ask her what's wrong")
  53.                 print("She tells you that in that room was an Orlac")
  54.                 print("Orlacs use large cleavers but they have a weak spot")
  55.                 print("She tells you the weak spot is his neck")
  56.                 print("You thank her and hold her close telling her you will save her")
  57.                 print("The girl kisses you")
  58.                 print("You are now motivated, +1 point determination")
  59.                 print("Both you and her proceed to the room")
  60.                 print("You encounter the orlac and he seems enraged")
  61.                 print("The Orlac shouts... GIVE HER TO ME NOW")
  62.                 print("You prepare for battle with the dagger")
  63.                 print("The orlac reveals the anticipated cleaver")
  64.                 print("The orlac rushes towards you and her")
  65.                 print("He swings the cleaver at you and her")
  66.                 print("Only one of you can dodge the attack")
  67.                 print("who will dodge the atttack?")
  68.                 Dodge=input()
  69.                 if Dodge=="her":
  70.                     print("You push her out of the way")
  71.                     print("You get slashed but not fatally")
  72.                     print("Your dagger fell")
  73.                     print("You back away from the the orlac")
  74.                     print("As the orlac walks towards you the girl retrieves your dagger")
  75.                     print("She slashes the orlacs neck from behind")
  76.                     print("She sees a potion bottle on the orlac's bleeding body and she gives you to drink")
  77.                     print("Your wound is healed")
  78.                     print("She hugs you in relief")
  79.                     print("You thank her")
  80.                     print("You proceed through the door the orlac was blocking")
  81.                 if Dodge=="me":
  82.                     print("You dodge the attack")
  83.                     print("The girl was fatally cut")
  84.                     print("You see an opening at the orlac")
  85.                     print("You lounge after the orlac's neck")
  86.                     print("Choose a number")
  87.                     c=int(input())
  88.                     if c>=5:
  89.                         print("You tried to slash the orlac's neck")
  90.                         print("You were unlucky and grazed its neck")
  91.                         print("The orlac grabbed you and crushed you")
  92.                         print("The girl was re captured and molested")
  93.                         print("You didn't keep your word")
  94.                     if c<5:
  95.                         print("You successfully slashed the orlac's neck")
  96.                         print("The orlac fell and bled out")
  97.                         print("You are a bit exhausted")
  98.                         print("You see a potion bottle on the orlac's chest")
  99.                         print("Do you drink it or will you give her?")
  100.                         potion=input()
  101.                         if potion=="drink":
  102.                             print("You drank the potion")
  103.                             print("You were healed")
  104.                             print("The girl bled out")
  105.                             print("Demons were released from her body")
  106.                             print("You got devoured by demons")
  107.                         if potion=="give her":
  108.                             print("You gave her the potion")
  109.                             print("She was healed by the potion")
  110.                             print("Your choice of letting her get slashed made her skeptical")
  111.                             print("WARNING,Beware your future choices")
  112.                             print("You proceed through the door the orlac was blocking")
  113.             if interact=="ignore":
  114.                 print("You decide to ignore her and move towards the room")
  115.                 print("Upon approaching the revealed room she says that she will wait for you outside")
  116.                 print("You proceed into the room without her")
  117.                 print("You encountered a mysterious beast")
  118.                 print("He asks you, where is the girl?")
  119.                 print("You ask the beast what he want with her")
  120.                 print("He slowly approaches you")
  121.                 print("You take out your dagger, ready to fight")
  122.                 print("The beast reveals a large cleaver")
  123.         elif interact=="b":
  124.             print("You forced yourself onto her")
  125.             print("The girl stabs you before you are able to do anything")
  126.             print("You are bleeding out, the girl laughs")
  127.             print("You forgot to take out the pie before you left home")
  128.             print("You lost 2 things")
  129.             print("Your life and your house")
  130.             print("Tough luck venturer")
  131.     elif a<5:
  132.         print("You got caught by the skeleton and it harvested your organs.")
  133.        
  134. elif enter=='no':
  135.     print("You're a coward. You fell and broke your neck.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement