forked from github/server
8823db9702
- Bugfix to P_BERSERK
41 lines
937 B
C
41 lines
937 B
C
/* vi: set ts=2:
|
|
*
|
|
*
|
|
* 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-pbem.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 H_GC_CREATION
|
|
#define H_GC_CREATION
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* entweder eine grosse Insel (Chance 2/3) mit 25 bis 34 Felder oder eine
|
|
* kleine Insel (Chance 1/3) mit 11 bis 24 Feldern. */
|
|
|
|
enum {
|
|
M_TERRAIN,
|
|
M_FACTIONS,
|
|
M_UNARMED,
|
|
MAXMODES
|
|
};
|
|
|
|
void createmonsters(void);
|
|
void addunit(void);
|
|
void makeblock(int x1, int y1, char chaos);
|
|
void listnames(void);
|
|
void writemap(FILE * F, int mode);
|
|
|
|
void regionspells(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|