2001-12-15 12:26:04 +00:00
|
|
|
|
/* vi: set ts=2:
|
|
|
|
|
+-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
|
|
|
| | Enno Rehling <enno@eressea-pbem.de>
|
|
|
|
|
| Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
|
2003-07-29 09:48:03 +00:00
|
|
|
|
| (c) 1998 - 2003 | Henning Peters <faroul@beyond.kn-bremen.de>
|
2001-12-15 12:26:04 +00:00
|
|
|
|
| | Ingo Wilken <Ingo.Wilken@informatik.uni-oldenburg.de>
|
|
|
|
|
+-------------------+ Stefan Reich <reich@halbling.de>
|
|
|
|
|
|
2002-11-25 15:30:51 +00:00
|
|
|
|
This program may not be used, modified or distributed
|
2001-12-15 12:26:04 +00:00
|
|
|
|
without prior permission by the authors of Eressea.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Contains defines for the "free" game (Eressea) .
|
|
|
|
|
* Include this file from settings.h to make eressea work.
|
|
|
|
|
*/
|
2002-09-02 20:36:12 +00:00
|
|
|
|
#define ENTERTAINFRACTION 20
|
|
|
|
|
#define TEACHDIFFERENCE 2
|
2003-07-29 09:48:03 +00:00
|
|
|
|
#define GUARD_DISABLES_RECRUIT 1
|
|
|
|
|
#define GUARD_DISABLES_PRODUCTION 1
|
|
|
|
|
#define RESOURCE_QUANTITY 0.5
|
2005-05-06 22:30:19 +00:00
|
|
|
|
#define RECRUITFRACTION 40 /* 100/RECRUITFRACTION% */
|
2003-07-29 09:48:03 +00:00
|
|
|
|
#define COMBAT_TURNS 5
|
2004-06-27 16:56:01 +00:00
|
|
|
|
#define NEWATSROI 0
|
2005-11-26 11:00:20 +00:00
|
|
|
|
|
|
|
|
|
/* Vermehrungsrate Bauern in 1/10000.
|
|
|
|
|
* Evt. Berechnungsfehler, reale Vermehrungsraten scheinen h<EFBFBD>her. */
|
|
|
|
|
#define PEASANTGROWTH 10
|
|
|
|
|
#define BATTLE_KILLS_PEASANTS 20
|
|
|
|
|
#define PEASANTLUCK 10
|
|
|
|
|
|
2004-09-25 10:26:30 +00:00
|
|
|
|
#define HUNGER_REDUCES_SKILL /* Hunger reduziert den Talentwert
|
2005-05-06 22:30:19 +00:00
|
|
|
|
auf die H<EFBFBD>lfte */
|
|
|
|
|
|
2005-07-25 19:10:21 +00:00
|
|
|
|
#define ASTRAL_ITEM_RESTRICTIONS /* keine grossen dinge im astralraum */
|
2005-10-03 20:59:11 +00:00
|
|
|
|
#define NEW_DAEMONHUNGER_RULE
|
|
|
|
|
#define NEW_COMBATSKILLS_RULE
|
|
|
|
|
#define ROW_FACTOR 3 /* factor for combat row advancement rule */
|
2004-09-25 10:26:30 +00:00
|
|
|
|
|
2008-04-20 15:18:43 +00:00
|
|
|
|
/* optional game components. TODO: These should either be
|
|
|
|
|
* configuration variables (XML), script extensions (lua),
|
|
|
|
|
* or both. We don't want separate binaries for different games
|
|
|
|
|
*/
|
|
|
|
|
#define SCORE_MODULE 1
|
|
|
|
|
#define MUSEUM_MODULE 1
|
|
|
|
|
#define ARENA_MODULE 1
|
|
|
|
|
#define XECMD_MODULE 1
|
|
|
|
|
#define KARMA_MODULE 0
|
|
|
|
|
#define DUNGEON_MODULE 0
|
|
|
|
|
#define INFOCMD_MODULE 0
|
|
|
|
|
#define CHANGED_CROSSBOWS 0 /* use the WTF_ARMORPIERCING flag */
|
2009-11-09 07:41:59 +00:00
|
|
|
|
#undef GLOBAL_WARMING /* number of turns before global warming sets in */
|
2004-08-03 15:34:26 +00:00
|
|
|
|
|
2007-02-28 12:38:36 +00:00
|
|
|
|
#define SIMPLE_COMBAT
|
|
|
|
|
#define SIMPLE_ESCAPE
|
2008-12-16 09:17:59 +00:00
|
|
|
|
|
|
|
|
|
#if defined(BINDINGS_LUABIND)
|
|
|
|
|
# undef BINDINGS_TOLUA
|
|
|
|
|
#elif defined(BINDINGS_TOLUA)
|
|
|
|
|
# undef BINDINGS_LUABIND
|
|
|
|
|
#else
|
2008-12-20 23:41:33 +00:00
|
|
|
|
# define BINDINGS_TOLUA /* new default */
|
2008-12-16 09:17:59 +00:00
|
|
|
|
#endif
|
2009-05-14 20:19:13 +00:00
|
|
|
|
|
|
|
|
|
#undef REGIONOWNERS /* (WIP) region-owner uses HELP_TRAVEL to control entry to region */
|