From 56da187ca06d718cb7540f09236a842b80867e18 Mon Sep 17 00:00:00 2001 From: ryo_saeba Date: Sun, 24 Jan 2010 10:57:11 +0000 Subject: [PATCH] Initial quest definition file. git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@12357 282e977c-c81d-0410-88c4-b93c2d0d6712 --- default.quests | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 default.quests diff --git a/default.quests b/default.quests new file mode 100644 index 000000000..8c0b0cd93 --- /dev/null +++ b/default.quests @@ -0,0 +1,47 @@ +# Quest definition file +# This file describes the various quests known to the game, and used through the functions in quest.c +# +# Format is pretty simple: +# quest "internal code, whatever you wand but must be unique" +# title "one-line to describe the quest" +# description +# "multi-line" +# "description if you feel like it" +# end_description +# restart "optional integer, if non zero the quest can be done multiple times" +# (then multiple "step/end_step" blocks) +# step "integer value for the step" +# description +# "multi-line step" +# "description" +# end_description +# end_step +# (then after all steps) +# end_quest +quest darcap/Spike +title Spike's aching back +description +Spike, the weapon shop owner, has backaches, and needs a potion to endure his pains. +end_description +restart 1 +step 1 +description +You need to get a potion from the potion shop. +end_description +end_step +step 2 +description +You need to get some smaprh roots from Bob's shop in the south of Darcap. +end_description +end_step +step 3 +description +Bring back the smaprh roots to Molthir. +end_description +end_step +step 4 +description +Bring back the potion to Spike. +end_description +end_step +end_quest