comparison data/npcs/kaneda2.json @ 207:d2e4fb016627

TETSUUUUUOOOOOOOOOOOOOO
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Wed, 06 Apr 2011 23:21:29 +0200
parents
children 2844edb6c1cc
comparison
equal deleted inserted replaced
206:e2acf4663065 207:d2e4fb016627
1 {
2 "start" : {
3 "text" : "Tetsuo-san, I would be delighted to conclude our business negotiation!",
4 "events" : [
5 { "matches" : "npcs.tetsuo.state == 'joy'", "next": "state.signing" }
6 ]
7 },
8 "signing" : {
9 "text" : "Of course, it’s just a matter of me signing the agreement.",
10 "events" : [
11 { "matches" : "npcs.tetsuo.state == 'inspect'", "next": "state.ofcourse" }
12 ]
13 },
14 "ofcourse" : {
15 "text" : "But of course!",
16 "auto_next": "state.inspecting"
17 },
18 "inspecting" : {
19 "events" : [
20 { "matches" : "world.agreement_disrupted", "next": "state.preposterous" }
21 ]
22 },
23 "preposterous" : {
24 "text" : "Preposterous terms! What do you take me for, a fool?",
25 "events" : [
26 { "matches" : "npcs.tetsuo.state == 'shoddy'", "next": "state.pah" }
27 ]
28 },
29 "pah" : {
30 "text" : "Pah, is this how you conduct business in the country?",
31 "events" : [
32 { "matches" : "npcs.tetsuo.state == 'cheat'", "next": "state.insult" }
33 ]
34 },
35 "insult" : {
36 "text" : "Such insult! The deal is off!",
37 "events" : [
38 { "matches" : "npcs.tetsuo.state == 'riddance'", "next": "state.gone" }
39 ]
40 },
41 "gone" : {
42 }
43 }