Created
July 29, 2015 17:43
-
-
Save selfsame/d14586f2f140d66933e1 to your computer and use it in GitHub Desktop.
boabab syntax scribble
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (def-str form "") | |
| (scene river-bank | |
| (title "Your birthplace on the river") | |
| (initial-desc | |
| "Wetness and cold. | |
| The sweet taste of mud fills your nose and coats your teeth. | |
| You are a:") | |
| (link "forbidden hybrid of human and toad" | |
| (set! form "half-toad") | |
| (set-scene! underwater)) | |
| (link "withered husk of a forgoton idol" | |
| (set! form "idol-mummy") | |
| (set-scene! underwater))) | |
| (scene underwater | |
| (title "Under the rivers surface") | |
| (initial-desc | |
| (b/cond | |
| (= form "half-toad") | |
| "You settle down, at home in the chilly dark depths." | |
| (= form "idol-mummy") | |
| "The water slowly seeps into your dried flesh, awakening the tendons and coercing your memories to life.)))" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment