view data/npcs/fishmonger.json @ 549:b7f912705adb

Fishmonger now mongers fish.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 10 Apr 2011 01:14:14 +0200
parents 2844edb6c1cc
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')"
    }
}