added new lines
This commit is contained in:
parent
cb8d4e065b
commit
771070efbe
@ -22,10 +22,10 @@ function main()
|
|||||||
print("Here are your options. \n\n")
|
print("Here are your options. \n\n")
|
||||||
print("Option 1 - Go back to sleep. \n")
|
print("Option 1 - Go back to sleep. \n")
|
||||||
print("Option 2 - Check the fridge. \n\n")
|
print("Option 2 - Check the fridge. \n\n")
|
||||||
choice = input("Choose an option by pressing its number: ")
|
choice = input("\n Choose an option by pressing its number: ")
|
||||||
|
|
||||||
if choice == "1"
|
if choice == "1"
|
||||||
print(intro_option1outcome_text)
|
print(intro_option1outcome_text, "\n")
|
||||||
game_end()
|
game_end()
|
||||||
elseif choice == "2"
|
elseif choice == "2"
|
||||||
print(intro_option2outcome_text, "\n")
|
print(intro_option2outcome_text, "\n")
|
||||||
@ -34,20 +34,20 @@ function main()
|
|||||||
exit()
|
exit()
|
||||||
end
|
end
|
||||||
|
|
||||||
print("Here are your options. \n")
|
print("Here are your options. \n\n")
|
||||||
print("Option 1 - Drink the 40 oz King Cobra. \n")
|
print("Option 1 - Drink the 40 oz King Cobra. \n")
|
||||||
print("Option 2 - Drink the 2 liter bottle of Sun Drop. \n")
|
print("Option 2 - Drink the 2 liter bottle of Sun Drop. \n")
|
||||||
print("Option 3 - Drink the purple drink in order to indulge your desire to have
|
print("Option 3 - Drink the purple drink in order to indulge your desire to have
|
||||||
your Dave Chappelle moment. \n\n")
|
your Dave Chappelle moment. \n\n")
|
||||||
|
|
||||||
choice = input("Choose an option by pressing its number: ")
|
choice = input("\n Choose an option by pressing its number: ")
|
||||||
|
|
||||||
if choice == "1"
|
if choice == "1"
|
||||||
print(fridge_option1outcome_text)
|
print(fridge_option1outcome_text, "\n")
|
||||||
leavehouse()
|
leavehouse()
|
||||||
dui()
|
dui()
|
||||||
elseif choice == "2"
|
elseif choice == "2"
|
||||||
print(fridge_option2outcome_text)
|
print(fridge_option2outcome_text), "\n"
|
||||||
leavehouse()
|
leavehouse()
|
||||||
elseif choice == "3"
|
elseif choice == "3"
|
||||||
print(fridge_option3outcome_text, "\n")
|
print(fridge_option3outcome_text, "\n")
|
||||||
@ -57,16 +57,16 @@ function main()
|
|||||||
exit()
|
exit()
|
||||||
end
|
end
|
||||||
|
|
||||||
print("Here are your options. \n")
|
print("Here are your options. \n \n")
|
||||||
print("Option 1 - Go to your local Safeway. \n")
|
print("Option 1 - Go to your local Safeway. \n")
|
||||||
print("Option 2 - Go to the closest gas station. \n")
|
print("Option 2 - Go to the closest gas station. \n")
|
||||||
choice = input("Choose an option by pressing its number: ")
|
choice = input("\n Choose an option by pressing its number: ")
|
||||||
|
|
||||||
if choice == "1"
|
if choice == "1"
|
||||||
print(car_option1outcome_text)
|
print(car_option1outcome_text, "\n")
|
||||||
game_end()
|
game_end()
|
||||||
elseif choice == "2"
|
elseif choice == "2"
|
||||||
print(car_option2outcome_text)
|
print(car_option2outcome_text, "\n")
|
||||||
|
|
||||||
elseif choice == "q"
|
elseif choice == "q"
|
||||||
exit()
|
exit()
|
||||||
@ -75,15 +75,15 @@ function main()
|
|||||||
print(wrong_key_error)
|
print(wrong_key_error)
|
||||||
end
|
end
|
||||||
|
|
||||||
print("Here are your options. \n")
|
print("Here are your options. \n\n")
|
||||||
print("Option 1 - Attempt to hitch a ride with a trucker. \n")
|
print("Option 1 - Attempt to hitch a ride with a trucker. \n")
|
||||||
print("Option 2 - Purchase a plane ticket to Polaski, Tennessee. \n")
|
print("Option 2 - Purchase a plane ticket to Polaski, Tennessee. \n")
|
||||||
choice = input("Choose an option by pressing its number: ")
|
choice = input("\n Choose an option by pressing its number: ")
|
||||||
|
|
||||||
if choice == "1"
|
if choice == "1"
|
||||||
print(tn_option1outcome_text)
|
print(tn_option1outcome_text, "\n")
|
||||||
elseif choice == "2"
|
elseif choice == "2"
|
||||||
print(tn_option2outcome_text)
|
print(tn_option2outcome_text, "\n")
|
||||||
|
|
||||||
elseif choice == "q"
|
elseif choice == "q"
|
||||||
exit()
|
exit()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user