comparison 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
comparison
equal deleted inserted replaced
548:366e58e8d057 549:b7f912705adb
1 { 1 {
2 "start" : { 2 "start" : {
3 "text": "Help! I am beset by demons!",
3 "events" : [ 4 "events" : [
4 { "matches" : "world.missions.all_fishmonger_demons_dead", "next": "state.saved" } 5 { "matches" : "world.missions.fishmonger_demons_killed >= 15", "next": "state.saved" }
5 ] 6 ]
6 }, 7 },
7 "saved" : { 8 "saved" : {
9 "on_entry": "world.missions.all_fishmonger_demons_dead = True",
8 "text" : "Thank the deities, I am saved! If you ever need some fish, my fox friend, I’m your man.", 10 "text" : "Thank the deities, I am saved! If you ever need some fish, my fox friend, I’m your man.",
9 "auto_next": "state.salmon" 11 "auto_next": "state.salmon"
10 }, 12 },
11 "salmon" : { 13 "salmon" : {
12 "text" : "Here you go, fox. A delicious fresh salmon – I caught it just this morning.", 14 "text" : "Here you go, fox. A delicious fresh salmon – I caught it just this morning.",
13 "auto_next": "state.happy" 15 "auto_next": "state.happy"
14 }, 16 },
15 "happy" : { 17 "happy" : {
18 "on_entry": "drop_item('salmon')"
16 } 19 }
17 } 20 }