MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | // 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 | |
| 29 | varargs int FindPotion(string s); |
| 30 | |
| 31 | #endif // __PLAYER_POTION_H_PROTO__ |
| 32 | |
| 33 | #endif // NEED_PROTOYPES |
| 34 | |