view data/npcs/sasuke.json @ 294:74c875f7b1f5

Fill in remaining missions and make remaining npc state machines pass basic sanity tests.
author Simon Cross <hodgestar@gmail.com>
date Fri, 08 Apr 2011 22:09:01 +0200
parents 4e7ca5cf57fa
children 906fae3d3688
line wrap: on
line source

{
    "start" : {
        "text" : "Grumble... “Sasuke, fetch this! Sasuke, get that!” What do they think I am, some sort of servant? I’m a samurai in my own right! And this cannon is so heavy! Not like those two would lend a hand – they’re probably taking a nap. Speaking of which... yaaawn... maybe forty winks wouldn’t be a bad idea. If I’m lucky, this cannon will just roll down the path and off the cliff. Good riddance...",
        "auto_next": "state.napping"
    },
    "napping" : {
        "events" : [
            { "matches" : "world.missions.cannon_destroyed", "next": "state.huh" }
        ]
    },
    "huh" : {
        "text" : "Huh? What was that noise? Did I hear a- AI! What’s this? My cannon – destroyed! When Hattori hears about this, he’s going to be livid. Erm, it might be best if I, uh, hide out for a bit...",
        "auto_next": "state.gone"
    },
    "gone" : {
    }
}