mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-06 18:08:10 +00:00
35 lines
986 B
INI
35 lines
986 B
INI
#textdomain wesnoth
|
|
# These are clutter, scheduled to be removed.
|
|
|
|
# ! in comments is used for generating HTML documentation, ignore it otherwise.
|
|
|
|
#define DEPRECATE MACRO_NAME VERSION_NAME
|
|
# Tag macros for removal, the VERSION_NAME argument is the
|
|
# release where the message is shown the first time.
|
|
# The removal will be 2 versions later.
|
|
[deprecated_message]
|
|
message="Macro '" + {MACRO_NAME} + "' is scheduled for removal in Wesnoth " + {VERSION_NAME} + "."
|
|
[/deprecated_message]
|
|
#enddef
|
|
|
|
#define UNIT TYPE DESCRIPTION USER_DESCRIPTION SIDE X Y
|
|
# Create a unit with the Loyal trait.
|
|
#
|
|
# Example:
|
|
#! {UNIT (Elvish Fighter) (Myname) ( _ "Myname") 1 1 1}
|
|
#
|
|
[unit]
|
|
type={TYPE}
|
|
description={DESCRIPTION}
|
|
user_description={USER_DESCRIPTION}
|
|
side={SIDE}
|
|
x={X}
|
|
y={Y}
|
|
[modifications]
|
|
{TRAIT_LOYAL}
|
|
[/modifications]
|
|
[/unit]
|
|
{DEPRECATE "UNIT" 1.4}
|
|
#enddef
|
|
|