You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
816B

  1. (import world)
  2. (create-object 'garden "A Well-Kept Garden" "A french-style garden with topiary in the shape of various animals. A fountain gurgles happily in the middle. A trail leads off into a forest to the north.")
  3. (create-object 'unicorn "a frolicking unicorn" "A white unicorn, with a long spiral horn.")
  4. (create-object 'forest "A Foreboding Forest" "Tall trees bunch around a winding path.")
  5. (create-object 'trail "a trail" "A winding trail.")
  6. (add-alias 'trail 'winding)
  7. (add-alias 'trail 'north)
  8. (add-alias 'trail 'n)
  9. (set-hidden 'trail #t)
  10. (set-enter-message 'trail "You walk along the winding trail...")
  11. (move-object 'you 'garden)
  12. (move-object 'trail 'garden)
  13. (toggle-fixed 'trail)
  14. (set-destination 'trail 'forest)
  15. (move-object 'unicorn 'garden)
  16. (print-room-description (get-container 'you))
  17. (adventure)