Cookies
(defscene start
(text "You open the oven to find a cookie sheet")
(wait 4)
(text "It's really hot!")
(prompt smell "Smell"))
(defscene smell
(text "You waft the cookie aroma towards your face")
(text "Smells like chocolate")
(prompt take "Take"))
(defscene take
(text "You take a hot cookie from the tray.")
(wait 2)
(text "Mmm...")
(prompt take "Take")
(prompt store "Store")
(prompt smell "Smell"))
(defscene store
(text "You put the cookies in a plastic bin and then deposit them into the freezer for later.")
(the-end))