comparison data/npcs/kaneda.json @ 181:77228c101cfc

kumiko and kaneda
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Wed, 06 Apr 2011 20:22:28 +0200
parents
children e7413a565421
comparison
equal deleted inserted replaced
180:7ccf365e28ea 181:77228c101cfc
1 {
2 "start" : {
3 "events" : [
4 { "matches" : "world.npc_is('kumiko', 'torn')", "next": "state.kumiko" }
5 ]
6 },
7 "kumiko" : {
8 "text" : "Ah, here is the fabled beauty, Kumiko.",
9 "auto_next": "state."
10 "events" : [
11 { "matches" : "world.npc_is('kumiko', 'kaneda')", "next": "state.tear" }
12 ]
13 },
14 "tear" : {
15 "text" : "When I heard of your legendary charm, I rushed to your home right away. It is true what they say about your radiant glow. Ah, but what’s this? A tear?",
16 "events" : [
17 { "matches" : "world.npc_is('kumiko', 'jumped')", "next": "state.vase" }
18 ]
19 },
20 "vase" : {
21 "text" : "Hmm, well, never mind that. Do show me around your charming home. Hmm? Is that a broken vase I see?",
22 "events" : [
23 { "matches" : "world.npc_is('kumiko', 'fallen')", "next": "state.hmm" }
24 ]
25 },
26 "hmm" : {
27 "text" : "Hmm.",
28 "events" : [
29 { "matches" : "world.npc_is('kumiko', 'shallwe')", "next": "state.smell" }
30 ]
31 },
32 "smell" : {
33 "text" : "Yes. But only if you explain that horrible smell!",
34 "events" : [
35 { "matches" : "world.npc_is('kumiko', 'dropped')", "next": "state.wontstand" }
36 ]
37 },
38 "wontstand" : {
39 "text" : "Kumiko-san, I won’t stand for this! A torn kimono, a house in disarray, dirt everywhere and that pungent stench. You are clearly no home maker! And to blame it all on a fox?",
40 "events" : [
41 { "matches" : "world.npc_is('kumiko', 'but')", "next": "state.wonthear" }
42 ]
43 },
44 "wonthear" : {
45 "text" : "I won’t hear any more from you.",
46 "auto_next": "state.gone"
47 },
48 "gone" : {
49 },
50 }