wesnoth/data/core/macros/objective-utils.cfg
Gregory A Lundberg 15c761ec75 HAS_NO_TURN_LIMIT objectives macro
A convenience macro to add a standardized note to the objectives pointing out there is no turn limit.
2016-08-19 20:06:13 -05:00

57 lines
1.3 KiB
INI

#textdomain wesnoth
# Utility macros for use in the objectives dialog
#define TURNS_RUN_OUT
[objective]
description= _ "Turns run out"
condition=lose
show_turn_counter=yes
[/objective]
#enddef
#wmllint: markcheck off
#define EARLY_FINISH_BONUS_FOOTNOTE
"<span foreground='white'><small> " + _"(early finish bonus)" + "</small></span>"#enddef
#wmllint: markcheck on
#define OBJECTIVE_FOOTNOTE TEXT
"<span foreground='white'><small> " + {TEXT} + "</small></span>"
#enddef
#define ALTERNATIVE_OBJECTIVE_CAPTION
caption= _ "Alternative objective:"
#enddef
#define BONUS_OBJECTIVE_CAPTION
caption= _ "Bonus objective:"
#enddef
#define ALTERNATIVE_OBJECTIVE OBJECTIVE_TEXT
[objective]
{ALTERNATIVE_OBJECTIVE_CAPTION}
description={OBJECTIVE_TEXT}
condition=win
[/objective]
#enddef
#define ALTERNATIVE_OBJECTIVE_BONUS OBJECTIVE_TEXT
[objective]
{ALTERNATIVE_OBJECTIVE_CAPTION}
description={OBJECTIVE_TEXT}+{EARLY_FINISH_BONUS_FOOTNOTE}
condition=win
[/objective]
#enddef
#define IS_LAST_SCENARIO
[note]
red,blue,green=0,255,255
description="<b>" + _"This is the last scenario." + "</b>"
[/note]
#enddef
#define HAS_NO_TURN_LIMIT
[note]
description= "<b>" + _"No turn limit" + "</b>"
[/note]
#enddef