wesnoth/data/core/macros/amla.cfg
Eric S. Raymond 5f58e50664 Reindented all macros except utils.cfg,
that has unbalanced FOREACH/NEXT in it and will need to be
hand-checked.
2007-06-29 11:19:19 +00:00

40 lines
1.1 KiB
INI

#this file contains macros for After Max Level Advancement (AMLA)
#define AMLA_TOUGH HP_ADVANCE
# Canned definition of an AMLA adding HP.
[advancement]
strict_amla=yes
max_times=100
id=tough_{HP_ADVANCE}
description= _ "Max HP bonus +" {HP_ADVANCE} _", MAX XP +25%"
icon="misc/icon-amla-tough.png"
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
#define AMLA_NECROHEAL
# Canned definition of an AMLA that does full healing.
[advancement]
strict_amla=yes
max_times=100
id=necroheal
description= _ "Full Heal"
image="misc/icon-amla-fullheal.png"
icon="misc/icon-amla-fullheal.png"
[effect]
apply_to=hitpoints
increase_total=0%
heal_full=yes
[/effect]
[/advancement]
#enddef