blob: 08b81b15166146cf1dd34906d0bbc70e1148495a [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001// MorgenGrauen MUDlib
2//
3// player/potion.h -- potion services
4//
5// $Id: potion.h 9117 2015-01-25 11:25:14Z Zesstra $
6
7#ifndef __PLAYER_POTION_H__
8#define __PLAYER_POTION_H__
9
10// properties
11
12#define P_POTIONROOMS "potionrooms"
13#define P_KNOWN_POTIONROOMS "known_potionrooms"
14#define P_TRANK_FINDEN "trank_finden"
15
16// veraltete Props, lang unbenutzt.
17#define P_VISITED_POTIONROOMS "visited_potionrooms"
18#define P_BONUS_POTIONS "bonus_potions"
19
20#endif // __PLAYER_POTION_H__
21
22#ifdef NEED_PROTOTYPES
23
24#ifndef __PLAYER_POTION_H_PROTO__
25#define __PLAYER_POTION_H_PROTO__
26
27// prototypes
28
29varargs int FindPotion(string s);
30
31#endif // __PLAYER_POTION_H_PROTO__
32
33#endif // NEED_PROTOYPES
34