2015-01-30 20:37:14 +01:00
|
|
|
/*
|
2010-08-08 09:40:42 +02:00
|
|
|
*
|
|
|
|
* Eressea PB(E)M host Copyright (C) 1998-2003
|
|
|
|
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
|
|
|
* Katja Zedel (katze@felidae.kn-bremen.de)
|
|
|
|
* Henning Peters (faroul@beyond.kn-bremen.de)
|
|
|
|
* Enno Rehling (enno@eressea.de)
|
|
|
|
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
|
|
|
|
*
|
|
|
|
* This program may not be used, modified or distributed without
|
|
|
|
* prior permission by the authors of Eressea.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _RCURSE_H
|
|
|
|
#define _RCURSE_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-08-06 18:52:09 +02:00
|
|
|
struct region;
|
2017-08-21 19:43:35 +02:00
|
|
|
struct curse_type;
|
2010-08-08 09:40:42 +02:00
|
|
|
|
2017-08-21 19:43:35 +02:00
|
|
|
extern const struct curse_type ct_peacezone;
|
|
|
|
extern const struct curse_type ct_drought;
|
|
|
|
extern const struct curse_type ct_blessedharvest;
|
|
|
|
extern const struct curse_type ct_godcursezone;
|
|
|
|
extern const struct curse_type ct_gbdream;
|
|
|
|
extern const struct curse_type ct_healing;
|
2017-08-21 20:18:19 +02:00
|
|
|
extern const struct curse_type ct_antimagiczone;
|
|
|
|
extern const struct curse_type ct_depression;
|
|
|
|
extern const struct curse_type ct_astralblock;
|
|
|
|
extern const struct curse_type ct_badmagicresistancezone;
|
|
|
|
extern const struct curse_type ct_goodmagicresistancezone;
|
|
|
|
extern const struct curse_type ct_holyground;
|
|
|
|
extern const struct curse_type ct_fogtrap;
|
|
|
|
extern const struct curse_type ct_magicstreet;
|
|
|
|
extern const struct curse_type ct_maelstrom;
|
|
|
|
extern const struct curse_type ct_riotzone;
|
|
|
|
extern const struct curse_type ct_generous;
|
|
|
|
extern const struct curse_type ct_badlearn;
|
2010-08-08 09:40:42 +02:00
|
|
|
|
2017-08-06 18:52:09 +02:00
|
|
|
int harvest_effect(const struct region *r);
|
|
|
|
void register_regioncurse(void);
|
2010-08-08 09:40:42 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2011-03-07 08:03:10 +01:00
|
|
|
#endif /* _RCURSE_H */
|