summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'content/_index.md')
-rw-r--r--content/_index.md19
1 files changed, 9 insertions, 10 deletions
diff --git a/content/_index.md b/content/_index.md
index a082ffa..c97ad1a 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -17,8 +17,7 @@ implications when it comes time to add support for it to your engine.
### Sample:
{{< fatecode >}}(define_sequence in_your_room ()
- (ifelse
- (is_member visited_your_room progress)
+ (if_else (set:is_member visited_your_room progress)
(text_effect narrator
You room is still a mess. You don't have time to clean things up,
though.
@@ -32,15 +31,13 @@ implications when it comes time to add support for it to your engine.
make the cut.
)
)
- (add visited_your_room progress)
+ (set:add! visited_your_room progress)
(player_choice
- (
- ( Look for healing items )
- (jump_to look_for_healing_items)
+ (option ( Look for healing items )
+ (jump_to! look_for_healing_items)
)
- (
- ( No time! Let's go adventuring! )
- (jump_to leave_your_room)
+ (option ( No time! Let's go adventuring! )
+ (jump_to! leave_your_room)
)
)
)
@@ -49,5 +46,7 @@ implications when it comes time to add support for it to your engine.
### Known alternatives
* [Inkle's Ink](https://www.inklestudios.com/ink/).
* [Yarn Spinner](https://yarnspinner.dev/).
+* [Twine](https://twinery.org/).
+* [Ren'Py](https://renpy.org/).
* [DLG](https://github.com/iLambda/language-dlg). Nowhere near as popular as the
-other two alternatives, but its approach shares more similarities with Tonkadur.
+other alternatives, but its approach shares more similarities with Tonkadur.