2015-01-30 20:37:14 +01:00
|
|
|
|
/*
|
2010-08-08 10:06:34 +02:00
|
|
|
|
+-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
|
2012-05-16 22:07:28 +02:00
|
|
|
|
| | Enno Rehling <enno@eressea.de>
|
2010-08-08 10:06:34 +02:00
|
|
|
|
| Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
|
|
|
|
|
| (c) 1998 - 2003 | Henning Peters <faroul@beyond.kn-bremen.de>
|
|
|
|
|
| | Ingo Wilken <Ingo.Wilken@informatik.uni-oldenburg.de>
|
|
|
|
|
+-------------------+ Stefan Reich <reich@halbling.de>
|
|
|
|
|
|
|
|
|
|
This program may not be used, modified or distributed
|
|
|
|
|
without prior permission by the authors of Eressea.
|
2015-01-30 22:11:33 +01:00
|
|
|
|
*/
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Contains defines for the "free" game (Eressea) .
|
|
|
|
|
* Include this file from settings.h to make eressea work.
|
|
|
|
|
*/
|
|
|
|
|
#define ENTERTAINFRACTION 20
|
|
|
|
|
#define TEACHDIFFERENCE 2
|
|
|
|
|
#define GUARD_DISABLES_RECRUIT 1
|
|
|
|
|
#define GUARD_DISABLES_PRODUCTION 1
|
|
|
|
|
#define RESOURCE_QUANTITY 0.5
|
2011-03-07 08:02:35 +01:00
|
|
|
|
#define RECRUITFRACTION 40 /* 100/RECRUITFRACTION% */
|
2010-08-08 10:06:34 +02:00
|
|
|
|
#define COMBAT_TURNS 5
|
2015-08-26 19:59:11 +02:00
|
|
|
|
#undef NEWATSROI
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
|
|
/* Vermehrungsrate Bauern in 1/10000.
|
2014-12-13 11:53:16 +01:00
|
|
|
|
* TODO: Evt. Berechnungsfehler, reale Vermehrungsraten scheinen h<EFBFBD>her. */
|
2015-01-30 22:11:33 +01:00
|
|
|
|
#define PEASANTGROWTH 10
|
|
|
|
|
#define PEASANTLUCK 10
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
#define ROW_FACTOR 3 /* factor for combat row advancement rule */
|
2010-08-08 10:06:34 +02: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 MUSEUM_MODULE 1
|
|
|
|
|
#define ARENA_MODULE 1
|
|
|
|
|
|
2011-03-07 08:02:35 +01:00
|
|
|
|
#undef REGIONOWNERS /* (WIP) region-owner uses HELP_TRAVEL to control entry to region */
|
2015-11-22 12:37:25 +01:00
|
|
|
|
|
|
|
|
|
/* experimental gameplay features (that don't affect the savefile) */
|
|
|
|
|
/* TODO: move these settings to settings.h or into configuration files */
|
|
|
|
|
#define GOBLINKILL /* Goblin-Spezialklau kann t<>dlich enden */
|
|
|
|
|
#define INSECT_POTION /* Spezialtrank f<>r Insekten */
|
|
|
|
|
#define ORCIFICATION /* giving snotlings to the peasants gets counted */
|
|
|
|
|
|
|
|
|
|
#define TREESIZE (8) /* space used by trees (in #peasants) */
|
|
|
|
|
|
|
|
|
|
#define PEASANTFORCE 0.75 /* Chance einer Vermehrung trotz 90% Auslastung */
|
|
|
|
|
|
|
|
|
|
/* Geb<65>udegr<67><72>e = Minimalbelagerer */
|
|
|
|
|
#define SIEGEFACTOR 2
|
|
|
|
|
|
|
|
|
|
/** Magic */
|
|
|
|
|
#define MAXMAGICIANS 3
|
|
|
|
|
#define MAXALCHEMISTS 3
|
|
|
|
|
|
|
|
|
|
#define ENCCHANCE 10 /* %-Chance f<>r einmalige Zufallsbegegnung */
|
|
|
|
|
#define BAGCAPACITY 20000 /* soviel pa<70>t in einen Bag of Holding */
|
|
|
|
|
#define PERSON_WEIGHT 1000 /* weight of a "normal" human unit */
|
|
|
|
|
#define STAMINA_AFFECTS_HP 1<<0
|