123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- #ifndef __POTION_H
- #define __POTION_H
- #define MAXPOTION 35
- #define PSLEEP 0
- #define PHEALING 1
- #define PRAISELEVEL 2
- #define PINCABILITY 3
- #define PWISDOM 4
- #define PSTRENGTH 5
- #define PCHARISMA 6
- #define PDIZZINESS 7
- #define PLEARNING 8
- #define PGOLDDET 9
- #define PMONSTDET 10
- #define PFORGETFUL 11
- #define PWATER 12
- #define PBLINDNESS 13
- #define PCONFUSION 14
- #define PHEROISM 15
- #define PSTURDINESS 16
- #define PGIANTSTR 17
- #define PFIRERESIST 18
- #define PTREASURE 19
- #define PINSTHEAL 20
- #define PCUREDIANTH 21
- #define PPOISON 22
- #define PSEEINVIS 23
- #define P_MAX 23
- #define PHEROISM_BOOST 11
- #define PGIANTSTR_BOOST 21
- extern char *potionname[MAXPOTION];
- int newpotion(void);
- void quaffpotion(int pot);
- #endif
|