comparison data/npcs/kumiko.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 897eec397cbb
comparison
equal deleted inserted replaced
180:7ccf365e28ea 181:77228c101cfc
1 {
2 "start" : {
3 "text" : "I’m so pretty, oh so pretty! Who could ever resist my charms? My delicate grace! My sharp wit! And today, the richest businessman in Edo is coming to our town. If I can impress him – and I am so fabulous, I have no doubt I will – I will marry him and live in a giant palace and have hundreds of servants. Oh, nothing can go wrong today!",
4 "auto_next": "state.temptingfate"
5 },
6 "temptingfate" : {
7 "text" : "The room smells fresh, I have my best kimono on and I’ve set out my most magnificent vase. Everything is perfect (just like me)!",
8 "events" : [
9 { "matches" : "world.vase_broken()", "next": "state.broken" }
10 ]
11 },
12 "broken" : {
13 "text" : "Oh no, my beautiful vase! What will the businessman think to see it broken on the floor?",
14 "events" : [
15 { "matches" : "world.fish_in_house()", "next": "state.badsmell" }
16 ]
17 },
18 "badsmell" : {
19 "text" : "Oh my, what is that terrible smell? Rotten fish? Oh, this won’t do at all!",
20 "events" : [
21 { "matches" : "world.torn_kimono()", "next": "state.torn" }
22 ]
23 },
24 "torn" : {
25 "text" : "Shoo, dirty fox! Oh, look what you’ve done – you’ve made a great big tear in my finest silk kimono. What will the businessman think of a ragged dress like this?",
26 "events" : [
27 { "matches" : "world.npc_is('kaneda','kumiko')", "next": "state.kaneda" }
28 ]
29 },
30 "kaneda" : {
31 "text" : "Kaneda-san! I have been waiting for you.",
32 "events" : [
33 { "matches" : "world.npc_is('kaneda','tear')", "next": "state.jumped" }
34 ]
35 },
36 "jumped" : {
37 "text" : "Oh, Kaneda-san, a dirty little fox jumped on me just as you were approaching and ripped my kimono.",
38 "events" : [
39 { "matches" : "world.npc_is('kaneda','vase')", "next": "state.fallen" }
40 ]
41 },
42 "fallen" : {
43 "text" : "I am sorry, Kaneda-san, it must just have fallen over. It was probably pushed by that mean-spirited fox.",
44 "events" : [
45 { "matches" : "world.npc_is('kaneda','hmm')", "next": "state.shallwe" }
46 ]
47 },
48 "shallwe" : {
49 "text" : "Shall we- go on?",
50 "events" : [
51 { "matches" : "world.npc_is('kaneda','smell')", "next": "state.dropped" }
52 ]
53 },
54 "dropped" : {
55 "text" : "I- A fox came in and dropped an old fish?",
56 "events" : [
57 { "matches" : "world.npc_is('kaneda','wontstand')", "next": "state.but" }
58 ]
59 },
60 "but" : {
61 "text" : "But-",
62 "events" : [
63 { "matches" : "world.npc_is('kaneda','wonthear')", "next": "state.curse" }
64 ]
65 },
66 "curse" : {
67 "text" : "Curse you, fox! I’ll be doomed to a peasant life forever!"
68 }
69 }