| summaryrefslogtreecommitdiff | 
diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/examples/blackjack/global.fate | 2 | ||||
| -rw-r--r-- | data/examples/blackjack/main.fate | 10 | 
2 files changed, 8 insertions, 4 deletions
| diff --git a/data/examples/blackjack/global.fate b/data/examples/blackjack/global.fate index 16574e6..c49642d 100644 --- a/data/examples/blackjack/global.fate +++ b/data/examples/blackjack/global.fate @@ -34,3 +34,5 @@        )     )  ) + +(declare_input_event escape) diff --git a/data/examples/blackjack/main.fate b/data/examples/blackjack/main.fate index 342a663..67b70b1 100644 --- a/data/examples/blackjack/main.fate +++ b/data/examples/blackjack/main.fate @@ -24,16 +24,18 @@ Just between you and me, someone left those laying around, they aren't mine.  Now, you're all set to go... unless you don't know how to play?  (player_choice -   (option -      ( As it happens, I do not. ) +   (option ( As it happens, I do not. )        (visit rules_of_blackjack)        (text_effect action_description           You leave the counter and approach one of the tables.        )        (visit play_a_game)     ) -   (option -      ( I am familiar with BlackJack. ) +   (event (escape) +      You suddenly disappear. +      (end) +   ) +   (option ( I am familiar with BlackJack. )        (text_effect action_description           You leave the counter and approach one of the tables.        ) | 


