wesnoth/data/campaigns/tutorial/utils/utils.cfg

161 lines
3.7 KiB
INI
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#textdomain wesnoth-tutorial
#define LABEL STRING POSITION
[label]
x,y={POSITION}
text={STRING}
[/label]
#enddef
#define UNLABEL POSITION
[label]
x,y={POSITION}
text="" # wmllint: ignore
[/label]
#enddef
#define PRINT STRING
[print]
text={STRING}
size=18
duration=10000
red,green,blue=255,255,255
[/print]
#enddef
#define CLEAR_PRINT
[print]
text="" # wmllint: ignore
[/print]
#enddef
#define NUMEQ VAR VALUE
[variable]
name={VAR}
numerical_equals={VALUE}
[/variable]
#enddef
#define BOOLEQ VAR VALUE
[variable]
name={VAR}
boolean_equals={VALUE}
[/variable]
#enddef
#define GENDER MALE_WML FEMALE_WML
[if]
[have_unit]
id=student
gender=male
[/have_unit]
[then]
{MALE_WML}
[/then]
[else]
{FEMALE_WML}
[/else]
[/if]
#enddef
#define TEACHER MESSAGE_TEXT
[message]
speaker=Galdrad
message={MESSAGE_TEXT}
[/message]
#enddef
#define STUDENT MESSAGE_TEXT
[message]
speaker=student
message={MESSAGE_TEXT}
[/message]
#enddef
#define NARRATOR CAPTION_TEXT MESSAGE_TEXT
[message]
speaker=narrator
caption={CAPTION_TEXT}
message={MESSAGE_TEXT}
image=wesnoth-icon.png
[/message]
#enddef
#define UNDO_REMINDER
[message]
speaker=narrator
caption= _"Undo"
message= _"Dont forget, you can press <b>u</b> to undo most things; useful for correcting mistakes."
image=wesnoth-icon.png
[/message]
[allow_undo][/allow_undo]
#enddef
#define TALK_ABOUT ID_STRING MESSAGE_TEXT
[scroll_to_unit]
id={ID_STRING}
[/scroll_to_unit]
[message]
speaker=Galdrad
scroll=no
message={MESSAGE_TEXT}
[/message]
#enddef
#define TALK_NO_MOVE MESSAGE_TEXT
[message]
speaker=Galdrad
scroll=no
message={MESSAGE_TEXT}
[/message]
#enddef
#define TALK_ABOUT_LOC POSITION MESSAGE_TEXT
[scroll_to]
x,y={POSITION}
[/scroll_to]
[message]
speaker=Galdrad
scroll=no
message={MESSAGE_TEXT}
[/message]
#enddef
#define EXPLAIN_STRONG_INTELLIGENT ID_STRING
[if]
[variable]
name=strongint_explained
not_equals=done
[/variable]
[then]
#po: This string used as follows: "<unit name>', your new recruit, has two traits...'"
# Could be male or female unit? If so, might need gender-specific translations?
{TEACHER ({ID_STRING} + _", your new recruit, has two traits: <i>strong</i> and <i>intelligent</i>. Strong means a unit does more damage, and intelligent means it needs less experience to advance a level.")}
{VARIABLE strongint_explained done}
[/then]
[/if]
#enddef
#define EXPLAIN_QUICK_RESILIENT ID_STRING
[if]
[variable]
name=quickres_explained
not_equals=done
[/variable]
[then]
#po: This string used as follows: "<unit name>' has two traits: <i>quick</i> and ...'"
# Could be male or female unit? If so, might need gender-specific translations?
{TEACHER ({ID_STRING} + _" has two traits: <i>quick</i> and <i>resilient</i>. Quick means a unit can move one tile further each turn, and resilient means it has more hitpoints.")}
{VARIABLE quickres_explained done}
[/then]
[/if]
#enddef
#define CONTINUE_MSG
_"
<big>Click a mouse button or press the spacebar to continue...</big>"
# Note: we would not like the user to "press any key" (for example, Esc)
#enddef