comparison data/npcs/maneki.json @ 201:e27c45d38605

maneki and fishmonger
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Wed, 06 Apr 2011 22:32:58 +0200
parents
children 2844edb6c1cc
comparison
equal deleted inserted replaced
200:4e3f9cb49489 201:e27c45d38605
1 {
2 "start" : {
3 "text" : "Greetings, fox. Ah, but you are no ordinary fox, are you?",
4 "events" : [
5 { "matches" : "I am a kitsune.", "next": "state.thoughtasmuch" },
6 { "matches" : "I’m perfectly normal.", "next": "state.sure" },
7 { "matches" : "You’re not even a real cat!", "next": "state.unkind" }
8 ]
9 },
10 "thoughtasmuch" : {
11 "text" : "Ah, I thought as much, and I bet you’ve been causing lots of trouble already.",
12 "auto_next": "state.anycase"
13 },
14 "sure" : {
15 "text" : "Sure you are.",
16 "auto_next": "state.anycase"
17 },
18 "unkind" : {
19 "text" : "Oh, that’s very unkind! Be careful or you might just hurt my feelings!",
20 "auto_next": "state.anycase"
21 },
22 "anycase" : {
23 "text" : "In any case, I think somebody like you could help me out. The fishmonger’s house has been infested by demons and he can’t get out. What’s a poor cat without a delectable fish? Rescue him and I’ll give you this ratty old fox tail. I have a feeling you could use it.",
24 "auto_next": "state.waiting"
25 },
26 "waiting" : {
27 "events" : [
28 { "matches" : "world.got_salmon", "next": "state.goodjob" }
29 ]
30 },
31 "goodjob" : {
32 "text" : "Good job, kitsune! You’re far braver than I am. And here, as promised – a fox tail!",
33 "auto_next": "state.yum"
34 },
35 "yum" : {
36 }
37 }