Skip to content

Commit

Permalink
fix: grammar issues (#43)
Browse files Browse the repository at this point in the history
Part of #35
  • Loading branch information
Akbar-Ahmed authored Mar 14, 2023
1 parent 911a854 commit ff897db
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions chapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
def start():
answer = input(
Fore.GREEN +
"You are on a dirt road. Which way to you want to go left or right? " +
"You are on a dirt road. Which way do you want to go left or right? " +
Fore.LIGHTMAGENTA_EX).lower()
# if user inputs left then
if answer == "left":
Expand All @@ -36,7 +36,7 @@ def chapter_river():
if answer == "swim":
game_over(
Fore.RED +
"You swam across the river and were eaten by an aligator \U0001F480"
"You swam across the river and were eaten by an alligator \U0001F480"
)
# if user inputs walk then
elif answer == "walk":
Expand All @@ -51,7 +51,7 @@ def chapter_river():
if answer == "no":
game_over(
Fore.RED +
"You were very de-hydrated and died of thirst when you were walking. \U0001F480"
"You become de-hydrated and died of thirst when you were walking. \U0001F480"
)

# if user inputs yes then
Expand Down Expand Up @@ -102,7 +102,7 @@ def chapter_river():
def chapter_bridge():
answer = input(
Fore.GREEN + "You come to a bridge, it looks wobbly,"
"do you want it or do you want to head back? (cross/back) " +
"do you want to cross or do you want to head back? (cross/back) " +
Fore.LIGHTMAGENTA_EX).lower()
# if user inputs back then
if answer == "back":
Expand All @@ -113,7 +113,7 @@ def chapter_bridge():
if answer == "forward":
game_over(
Fore.RED +
"You drive forward and crash into a tree and die.\U0001F480 ")
"You drive forward and crashed into a tree and die.\U0001F480 ")
# if users inputs left then
if answer == "left":
chapter_lake()
Expand All @@ -128,15 +128,15 @@ def chapter_bridge():
def chapter_stranger():
answer = input(
Fore.GREEN +
"You cross the bridge and meet a stranger, do you talk to them? (y/n) "
"You crossed the bridge and meet a stranger, do you want to talk to them? (y/n) "
+ Fore.LIGHTMAGENTA_EX).lower()
if answer == "n":
game_over(
Fore.RED +
"The stranger was not pleased by you and murdered you. \U0001F480")
elif answer == "y":
answer = input(Fore.GREEN +
"You talk a wizard and they ask you,"
"You talk to a wizard and they ask you,"
"do you want to be a wizard? (y/n) " + Fore.LIGHTMAGENTA_EX).lower()
if answer == "y":
game_over(Fore.RED +
Expand Down

0 comments on commit ff897db

Please sign in to comment.