summaryrefslogtreecommitdiff
path: root/src/quest_type.hpp
blob: b480cef7994a6987340e22080dae0a659fb70bff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma once

#include "h-basic.hpp"

#include <string>

/**
 * Quest descriptor and runtime data.
 */
struct quest_type
{
	bool silent;

	char name[40];          /* Quest name */

	char desc[10][80];      /* Quest desc */

	s16b status;            /* Is the quest taken, completed, finished? */

	s16b level;             /* Dungeon level */

	s16b *plot;             /* Which plot does it belongs to? */

	void (*init)();        /* Function that takes care of generating hardcoded quests */

	s32b data[9];           /* Various datas used by the quests */

	std::string (*gen_desc)(); /* Function for generating description. */
};