view data/npcs/tetsuo.json @ 207:d2e4fb016627

TETSUUUUUOOOOOOOOOOOOOO
author Adrianna Pińska <adrianna.pinska@gmail.com>
date Wed, 06 Apr 2011 23:21:29 +0200
parents
children 5250c77b352a
line wrap: on
line source

{
    "start" : {
        "events" : [
            { "matches" : "npcs.kaneda2.state ==  'start'", "next": "state.joy" }
        ]
    },
    "joy" : {
        "text" : "Kaneda-san, nothing would bring me more joy.",
        "events" : [
            { "matches" : "npcs.kaneda2.state ==  'signing'", "next": "state.inspect" }
        ]
    },
    "inspect" : {
        "text" : "Naturally, as soon as I inspect the goods.",
        "events" : [
            { "matches" : "npcs.kaneda2.state ==  'ofcourse'", "next": "state.inspecting" }
        ]
    },
    "inspecting" : {
        "events" : [
            { "matches" : "npcs.kaneda2.state ==  'preposterous'", "next": "state.shoddy" }
        ]
    },
    "shoddy" : {
        "text" : "You should speak! The shoddy nature of your goods is simply unacceptable.",
        "events" : [
            { "matches" : "npcs.kaneda2.state ==  'pah'", "next": "state.cheat" }
        ]
    },
    "cheat" : {
        "text" : "At least we don’t cheat our buyers with damaged goods like you city folk!",
        "events" : [
            { "matches" : "npcs.kaneda2.state ==  'insult'", "next": "state.riddance" }
        ]
    },
    "riddance" : {
        "text" : "Good riddance.",
        "events" : [
            { "matches" : "npcs.kaneda2.state ==  'gone'", "next": "state.done" }
        ]
    },
    "done" : {
    }
}