view data/npcs/fishmonger.json @ 628:1fdfc7f03d98

Stop flying when you land.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 07 May 2011 20:30:25 +0200
parents b7f912705adb
children
line wrap: on
line source

{
    "start" : {
        "text": "Help! I am beset by demons!",
        "events" : [
            { "matches" : "world.missions.fishmonger_demons_killed >= 15", "next": "state.saved" }
        ]
    },
    "saved" : {
        "on_entry": "world.missions.all_fishmonger_demons_dead = True",
        "text" : "Thank the deities, I am saved! If you ever need some fish, my fox friend, I’m your man.",
        "auto_next": "state.salmon"
    },
    "salmon" : {
        "text" : "Here you go, fox. A delicious fresh salmon – I caught it just this morning.",
        "auto_next": "state.happy"
    },
    "happy" : {
        "on_entry": "drop_item('salmon')"
    }
}