wesnoth/data/_main.cfg
gfgtdf f599c77783 Add 'Delay Advancements [modification]
Depsite being a [modification] this is actuall implemented
in the C++ code the [modification] just sets a flag.

This is meant as an alterntive to the preset advancement
type of mod, i want to play around with it a bit in 1.15
maybe we will remove it later.

The problbme this is supposed to fix is that advancemnts
are done randomly during the enemeies turn. It has a few
advantages over the preset advancemnt approach:
1) It can easily handle amlas and normal advancement
2) It doesn't need special code to handle the case that
   A unit advances multiple times.
3) It doesn't break in case that other wml code changed
   The advancements  of a unit after the preselected advancement was chosen
4) The user never needs to think about an advancement of
   a unit that might not even advance

It also has a disadvantage: it changes the rules of the
game quite a bit, in partiucar if the units heals form
an adcancement (which us usally the case), since now
with this 'healing the unit on advancement by retaliation'
during the enemies turn can no longer happen. I still
think its wirth to think about this and test it though.
2020-10-08 20:11:50 -05:00

105 lines
1.6 KiB
INI

#textdomain wesnoth
# title screen and no_gui mode do not need terrain_graphics
#ifdef TITLE_SCREEN
#define NO_TERRAIN_GFX
#enddef
#endif
#ifdef NO_GUI
#define NO_TERRAIN_GFX
#enddef
#endif
{english.cfg}
{themes/}
{core/}
[multiplayer_side]
id=Custom
name= _"Custom"
image="units/unknown-unit.png"
[/multiplayer_side]
#ifdef MULTIPLAYER
{multiplayer/}
#ifdef MP_TEST
{test/multiplayer/}
#endif
#endif
# Using different default eras in SP and MP forces a config reload which we don't want.
{multiplayer/eras.cfg}
{campaigns/}
{modifications.cfg}
[ais]
default_ai_algorithm=ai_default_rca
[default_config]
{ai/utils/default_config.cfg}
[/default_config]
{ai/ais/}
#ifdef DEBUG_MODE
{ai/dev/}
#endif
[/ais]
#ifdef EDITOR
[textdomain]
name="wesnoth-editor"
[/textdomain]
#endif
#ifdef TEST
{scenario-test.cfg}
{scenario-leaders.cfg}
{scenario-movethrough.cfg}
{scenario-story.cfg}
{ai/scenarios/}
{ai/micro_ais/scenarios/}
#define DONT_RELOAD_CORE
#enddef
{test/}
#endif
[textdomain]
name="wesnoth"
[/textdomain]
[textdomain]
name="wesnoth-help"
[/textdomain]
[textdomain]
name="wesnoth-units"
[/textdomain]
[textdomain]
name="wesnoth-multiplayer"
[/textdomain]
# does not work when wired in only in the multiplayer file, do not ask me why...
[textdomain]
name="wesnoth-anl"
[/textdomain]
#ifndef NO_TERRAIN_GFX
# Include the terrain-graphics definitions after the campaigns so campaign specific
# terrains work properly.
{core/terrain-graphics.cfg}
#endif
[binary_path]
path=data/core
[/binary_path]
{advanced_preferences.cfg}
{game_config.cfg}
[textdomain]
name="wesnoth-lib"
[/textdomain]