view data/npcs/kumiko.json @ 287:f512e874b2e7

Add monk and kumiko missions to game.json and to monk and kumiko.
author Simon Cross <hodgestar@gmail.com>
date Fri, 08 Apr 2011 21:17:30 +0200
parents e06c54d7701f
children b244d01a8881
line wrap: on
line source

{
    "start" : {
        "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!",
        "auto_next": "state.temptingfate"
    },
    "temptingfate" : {
        "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)!",
        "events" : [
            { "matches" : "world.items.vase.broken", "next": "state.broken" }
        ]
    },
    "broken" : {
        "text" : "Oh no, my beautiful vase! What will the businessman think to see it broken on the floor?",
        "events" : [
            { "matches" : "world.missions.fish_in_room", "next": "state.badsmell" }
        ]
    },
    "badsmell" : {
        "text" : "Oh my, what is that terrible smell? Rotten fish? Oh, this won’t do at all!",
        "events" : [
            { "matches" : "world.missions.kumikos_kimono_torn", "next": "state.torn" }
        ]
    },
    "torn" : {
        "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?",
        "events" : [
            { "matches" : "npcs.kaneda.state == 'kumiko'", "next": "state.kaneda" }
        ]
    },
    "kaneda" : {
        "text" : "Kaneda-san! I have been waiting for you.",
        "events" : [
            { "matches" : "npcs.kaneda.state == 'tear'", "next": "state.jumped" }
        ]
    },
    "jumped" : {
        "text" : "Oh, Kaneda-san, a dirty little fox jumped on me just as you were approaching and ripped my kimono.",
        "events" : [
            { "matches" : "npcs.kaneda.state == 'vase'", "next": "state.fallen" }
        ]
    },
    "fallen" : {
        "text" : "I am sorry, Kaneda-san, it must just have fallen over. It was probably pushed by that mean-spirited fox.",
        "events" : [
            { "matches" : "npcs.kaneda.state == 'hmm'", "next": "state.shallwe" }
        ]
    },
    "shallwe" : {
        "text" : "Shall we- go on?",
        "events" : [
            { "matches" : "npcs.kaneda.state == 'smell'", "next": "state.dropped" }
        ]
    },
    "dropped" : {
        "text" : "I- A fox came in and dropped an old fish?",
        "events" : [
            { "matches" : "npcs.kaneda.state == 'wontstand'", "next": "state.but" }
        ]
    },
    "but" : {
        "text" : "But-",
        "events" : [
            { "matches" : "npcs.kaneda.state == 'wonthear'", "next": "state.curse" }
        ]
    },
    "curse" : {
        "text" : "Curse you, fox! I’ll be doomed to a peasant life forever!",
        "on_exit": "world.missions.kumiko_disgraced = True"
    }
}