wesnoth/data/core/macros/amla.cfg
Lari Nieminen e520faad5a Turned the default AMLA into a combined +3 max HP, +20% max XP and fullheal,
and upped the standard AMLA XP limit from 100 to 150. Wired to core
units.
2007-12-27 09:24:25 +00:00

43 lines
1.1 KiB
INI

#textdomain wesnoth
#this file contains macros for After Max Level Advancement (AMLA)
#define AMLA_DEFAULT
# Canned definition of the default AMLA.
[advancement]
strict_amla=yes
max_times=100
id=tough_{HP_ADVANCE}
description= _ "Max HP bonus +3, Max XP +20%"
image="misc/icon-amla-tough.png"
[effect]
apply_to=hitpoints
increase_total=3
heal_full=yes
[/effect]
[effect]
apply_to=max_experience
increase=20%
[/effect]
[/advancement]
#enddef
#define AMLA_TOUGH HP_ADVANCE
# Canned definition of an AMLA adding HP, without fullhealing.
[advancement]
strict_amla=yes
max_times=100
id=tough_{HP_ADVANCE}
description= _ "Max HP bonus +" {HP_ADVANCE} _", MAX XP +25%"
image="misc/icon-amla-tough.png"
[effect]
apply_to=hitpoints
increase={HP_ADVANCE}
increase_total={HP_ADVANCE}
[/effect]
[effect]
apply_to=max_experience
increase=25%
[/effect]
[/advancement]
#enddef