diff --git a/src/quest-for-sundrop.jl b/src/quest-for-sundrop.jl index 13f9206..b534b73 100755 --- a/src/quest-for-sundrop.jl +++ b/src/quest-for-sundrop.jl @@ -22,10 +22,10 @@ function main() print("Here are your options. \n\n") print("Option 1 - Go back to sleep. \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" - print(intro_option1outcome_text) + print(intro_option1outcome_text, "\n") game_end() elseif choice == "2" print(intro_option2outcome_text, "\n") @@ -34,20 +34,20 @@ function main() exit() 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 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 - 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" - print(fridge_option1outcome_text) + print(fridge_option1outcome_text, "\n") leavehouse() dui() elseif choice == "2" - print(fridge_option2outcome_text) + print(fridge_option2outcome_text), "\n" leavehouse() elseif choice == "3" print(fridge_option3outcome_text, "\n") @@ -57,16 +57,16 @@ function main() exit() 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 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" - print(car_option1outcome_text) + print(car_option1outcome_text, "\n") game_end() elseif choice == "2" - print(car_option2outcome_text) + print(car_option2outcome_text, "\n") elseif choice == "q" exit() @@ -75,15 +75,15 @@ function main() print(wrong_key_error) 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 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" - print(tn_option1outcome_text) + print(tn_option1outcome_text, "\n") elseif choice == "2" - print(tn_option2outcome_text) + print(tn_option2outcome_text, "\n") elseif choice == "q" exit()