added tennessee chapter

This commit is contained in:
lindsay 2017-08-15 04:30:57 -07:00
parent 9f4183e0f3
commit 9bcc84a9f1

View File

@ -59,7 +59,6 @@ function main()
print("Here are your options. \n") print("Here are your options. \n")
print("Option 1 - Go to your local Safeway. \n") print("Option 1 - Go to your local Safeway. \n")
main()
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("Choose an option by pressing its number: ")
@ -75,6 +74,23 @@ function main()
else else
print(wrong_key_error) print(wrong_key_error)
end end
print("Here are your options. \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: ")
if choice == "1"
print(tn_option1outcome_text)
elseif choice == "2"
print(tn_option2outcome_text)
elseif choice == "q"
exit()
else
print(wrong_key_error)
end
end end
main() main()