Difference between revisions of "WML Abilities"

From The Battle for Wesnoth Wiki
m (Fix syntax error)
(Recommending [resource] for this is overkill; putting events in the campaign tag is probably better in typical cases.)
 
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Remember that you must include the WML ability code in every scenario where you intend them to work. Or include them in the unit file inside the [unit_type] tag.
+
The more complex abilities and weapon specials often consist of two parts:
 +
* The ability / weapon special, which is only a dummy to provide a description and to see whether a unit has this ability. It is something one gives to a unit. Mainline abilities / weapon specials only need this part.
 +
* One or multiple [event]s, which make things happen. These [event]s must be added to the game ''explicitly'', in addition to the unit with the ability / weapon special!
  
 +
How to include [event]s?
 +
* Add it directly to the scenario file.
 +
* Add it directly to the [era].
 +
* Add it inside a [unit_type] definition.
 +
* Add it directly in your [campaign] tag.
 +
* Add it inside a [resource], which is then loaded from your [campaign] tag or an individual scenario.
 +
If you add it both via an [era] and and the scenario, they are added twice … i.e. the pickpocket ability would give the gold twice! To avoid that, give each event an '''id'''. This is even mandatory when adding it in a [unit_type].
 +
 +
Even better would be to use a [resource]. Resources have also an id, so there will never be duplicates:
 +
* Instead of adding it to the scenario / era, you add the event code inside a [resource].
 +
* The same way you read the scenario / era file, you also read the file containing the [resource] tag.
 +
* In the scenario / era, use [[ModificationWML#The_.5Bresource.5D_toplevel_tag|load_resource]].
  
 
=== Knockback  ===
 
=== Knockback  ===
Line 14: Line 28:
 
         female_name= _ "female^knockback"
 
         female_name= _ "female^knockback"
 
         description=_ "When a unit is hit with a knockback attack, it is immediately pushed back one hex away from the attacker. Units cannot be knocked back into an occupied hex, out of villages or onto terrain they normally could not move to. Only works on offense."
 
         description=_ "When a unit is hit with a knockback attack, it is immediately pushed back one hex away from the attacker. Units cannot be knocked back into an occupied hex, out of villages or onto terrain they normally could not move to. Only works on offense."
 +
        active_on=offense
 
     [/dummy]
 
     [/dummy]
 
#enddef
 
#enddef
Line 108: Line 123:
 
             [/if]
 
             [/if]
  
             {CLEAR_VARIABLE knockback_direction,knockback_target_hex}
+
             {CLEAR_VARIABLE knockback_target_hex}
 
         [/then]
 
         [/then]
 
     [/if]
 
     [/if]
Line 116: Line 131:
 
=== Charm ===
 
=== Charm ===
  
When a unit is hit with a ''charm'' attack, it instantly jumps to the attacker's side, and returns to it's original side at the beginning of that side's turn. A charmed unit has 1 movement point and can attack.
+
==== temporary ====
 +
 
 +
When a unit is hit by a ''charm'' attack, it instantly jumps to the attacker's side, and returns to its original side at the end of the turn. A charmed unit has 1 movement point and can attack.
  
 
Example that makes all Troll Whelps have charm on their attack:
 
Example that makes all Troll Whelps have charm on their attack:
Line 124: Line 141:
 
<syntaxhighlight lang='wml'>
 
<syntaxhighlight lang='wml'>
 
#define CHARM FILTER WEAPON
 
#define CHARM FILTER WEAPON
[event]
+
    [event]
         name=attacker_hits
+
         name=attacker hits
 +
        # Works only as attacker.
 +
        # If you want to make a weapon special for this event, set:
 +
        # [dummy]active_on=offense, then the engine greys out the weapon special on defense.
 
         first_time_only=no
 
         first_time_only=no
 +
        id=charm_as_attacker
  
 
         [filter]
 
         [filter]
Line 132: Line 153:
 
         [/filter]
 
         [/filter]
  
         [special_filter]
+
         [filter_attack]
             weapon={WEAPON}
+
             name={WEAPON}
         [/special_filter]
+
            # or special_id=charm, if you create a [dummy] weapon special
 +
        [/filter_attack]
 +
 
 +
        [filter_second]
 +
            # If the leader is charmed, it might end the scenario,
 +
            # as the other side is now considered defeated without a leader.
 +
            # Better exclude leaders.
 +
            canrecruit=no
 +
            # If the unit would die from the damage,
 +
            # we should not interfere with the event.
 +
            formula="self.hitpoints > 0"
 +
         [/filter_second]
  
         {STORE_UNIT_VAR x,y=$x1,$y1 side charmer_side}
+
         # Charm the unit
        {STORE_UNIT_VAR x,y=$x2,$y2 side charmed_side}
+
        # Changing the side will also immediately stop the combat and grant both units XP
 +
        [modify_unit]
 +
            [filter]
 +
                x,y=$x2,$y2
 +
            [/filter]
 +
            [variables]
 +
                # to remember the original side
 +
                real_side=$second_unit.side
 +
            [/variables]
 +
            [status]
 +
                # optional, just to easier find the unit in the other event
 +
                charmed=yes
 +
            [/status]
 +
            side=$unit.side
 +
            moves=1
 +
            attacks_left=1
 +
        [/modify_unit]
  
         {IF_VAR charmer_side not_equals $charmed_side (
+
         [floating_text]
            [then]
+
            x,y=$x2,$y2
                {MODIFY_UNIT x,y=$x2,$y2 variables.real_side $charmed_side}
+
            # po: short text, only displayed for a moment
                {MODIFY_UNIT x,y=$x2,$y2 side $charmer_side}
+
            text="<span color='#ffc0cb'>" + _ "charm" + "</span>"
                {MODIFY_UNIT x,y=$x2,$y2 moves 1}
+
        [/floating_text]
                {MODIFY_UNIT x,y=$x2,$y2 attacks_left 1}
+
    [/event]
  
                {VARIABLE_OP varname format "side_$charmed_side|_units_charmed"}
+
    [event]
                {VARIABLE $varname yes}
+
        name=side turn end, scenario end
 +
        # Releasing the unit in the same turn has a few reasons:
 +
        # - a charmed unit cannot be charmed again
 +
        # - if the scenario ends, we can still correct the ownership
 +
        # - things like healing by allies work the usual way
 +
        first_time_only=no
 +
        id=charm_release
  
                 {CLEAR_VARIABLE varname}
+
        [store_unit]
             [/then]
+
            [filter]
         )}
+
                side=$side_number
 +
                status=charmed
 +
            [/filter]
 +
            variable=charmed_units
 +
        [/store_unit]
 +
 
 +
        [foreach]
 +
            array=charmed_units
 +
            [do]
 +
                {VARIABLE this_item.side $this_item.variables.real_side}
 +
                 {CLEAR_VARIABLE this_item.variables.real_side}
 +
                {CLEAR_VARIABLE this_item.status.charmed}
 +
                [unstore_unit]
 +
                    variable=this_item
 +
                [/unstore_unit]
 +
             [/do]
 +
         [/foreach]
  
         {CLEAR_VARIABLE charmer_side,charmed_side}
+
         {CLEAR_VARIABLE charmed_units}
 
     [/event]
 
     [/event]
 +
#enddef
 +
</syntaxhighlight>
  
 +
==== permanent ====
 +
 +
This version of the weapon special is a gamble. You can obtain the other unit for good, but you also risk losing this unit. When you lose this unit, the opponent controls a unit with charm. You might regain it when he uses this weapon special.
 +
 +
<syntaxhighlight lang='wml'>
 +
#define WEAPON_SPECIAL_CHARM
 +
    # dummy weapon special used to describe the effect to the user and filter on special's id
 +
    [dummy]
 +
        id=weapon_charm
 +
        name= _ "charm"
 +
        description= _ "Turns a living level 1 or level 0 unit to your side. Beware, if all of your attacks miss, the charm user turns to the defender side, even if it is your leader. You can not charm an enemy leader or a non-living creature."
 +
        apply_to=opponent
 +
        active_on=offense
 +
    [/dummy]
 +
#enddef
 +
 +
#define CHARMING_EVENTS
 +
    # event that creates a "charm has worked" variable
 +
    # and sets it to "yes" if the attacker hits at least once.
 
     [event]
 
     [event]
         name=side turn
+
         name=attacker_hits
 
         first_time_only=no
 
         first_time_only=no
 +
        id=charm_detect
  
         {VARIABLE_OP this_side_charmed to_variable "side_$side_number|_units_charmed"}
+
         [filter_attack]
 +
            special_id=weapon_charm
 +
        [/filter_attack]
 +
        [filter_second]
 +
            canrecruit=no
 +
            level=0,1
 +
            [not]
 +
                status=unplagueable
 +
            [/not]
 +
        [/filter_second]
  
         {IF_VAR this_side_charmed equals yes (
+
         [modify_unit]
             [then]
+
             [filter]
                 [store_unit]
+
                 id=$unit.id
                    [filter]
+
            [/filter]
                        [not]
+
            [variables]
                            side=$side_number
+
                charm_has_worked=yes
                        [/not]
+
            [/variables]
                    [/filter]
+
        [/modify_unit]
 +
    [/event]
  
                    variable=possibly_charmed
+
    # Event that shifts a unit to the other side,
                    kill=no
+
    # if the defending unit:
                [/store_unit]
+
    #      - is lvl0 or lvl1
 +
    #      - and is not a leader unit
 +
    #      - and is a not a "non-living" creature
 +
    # Then:
 +
    # -> if the attacker missed all attacks, it goes to the defender’s side.
 +
    # -> if the attacker hit once at least, the defender goes to the attacker’s side.
 +
    [event]
 +
        name=attack_end
 +
        first_time_only=no
 +
        id=charm_convert
  
                 {FOREACH possibly_charmed i}
+
        [filter_attack]
                    {VARIABLE_OP real_side format "0$possibly_charmed[$i].variables.real_side"}
+
            special_id=weapon_charm
 +
        [/filter_attack]
 +
        [filter_second]
 +
            canrecruit=no
 +
            level=0,1
 +
            [not]
 +
                 status=unplagueable
 +
            [/not]
 +
        [/filter_second]
  
                    {IF_VAR real_side not_equals "0" (
+
        [if]
                        [then]
+
            [variable]
                            {IF_VAR side_number equals $possibly_charmed[$i].variables.real_side (
+
                name=unit.variables.charm_has_worked
                                [then]
+
                boolean_equals=no
                                    {CLEAR_VARIABLE possibly_charmed[$i].variables.real_side}
+
            [/variable]
                                    {VARIABLE possibly_charmed[$i].side $side_number}
+
            [then]
 +
                {VARIABLE unit.side $second_unit.side}
 +
                [unstore_unit]
 +
                    variable=unit
 +
                    text= _ "Charm failed!"
 +
                    {COLOR_HARM}
 +
                [/unstore_unit]
 +
            [/then]
 +
            [else]
 +
                {VARIABLE second_unit.side $unit.side}
 +
                [unstore_unit]
 +
                    variable=second_unit
 +
                    text= _ "Charmed!"
 +
                    {COLOR_HEAL}
 +
                [/unstore_unit]
  
                                    [unstore_unit]
+
                # The variable needs to be unset as well.
                                        variable=possibly_charmed[$i]
+
                {CLEAR_VARIABLE unit.variables.charm_has_worked}
                                        find_vacant=no
+
                [unstore_unit]
                                    [/unstore_unit]
+
                    variable=unit
                                [/then]
+
                [/unstore_unit]
                            )}
+
            [/else]
                        [/then]
+
        [/if]
                    )}
 
                {NEXT i}
 
 
 
                {CLEAR_VARIABLE possibly_charmed}
 
            [/then]
 
        )}
 
 
     [/event]
 
     [/event]
 
#enddef
 
#enddef
Line 204: Line 331:
 
=== Bloodlust ===
 
=== Bloodlust ===
  
Bloodlust is a very simple ability. If a unit that has bloodlust kills an enemy unit when attacking, it may attack again, provided that there are more enemy units adjacent to it.
+
Bloodlust is a very simple ability. If a unit having bloodlust kills an enemy unit when attacking, it may attack again, provided that there are more enemy units adjacent to it.
  
 
This would give the bloodlust ability to all Dwarvish Ulfserkers (making them insanely powerful):
 
This would give the bloodlust ability to all Dwarvish Ulfserkers (making them insanely powerful):
Line 220: Line 347:
 
         [/filter_second]
 
         [/filter_second]
  
         {MODIFY_UNIT x,y=$x2,$y2 moves 0}
+
         [modify_unit]
        {MODIFY_UNIT x,y=$x2,$y2 attacks_left 1}
+
            [filter]
 +
                x,y=$x2,$y2
 +
            [/filter]
 +
            moves=0
 +
            attacks_left=1
 +
        [/modify_unit]
 
     [/event]
 
     [/event]
 
#enddef
 
#enddef
Line 228: Line 360:
 
=== Pickpocket ===
 
=== Pickpocket ===
  
This special could also be called loot. When a unit with this attack special sucessfully hits an enemy unit, it gains a certain amount of gold.
+
This special could also be called loot. When a unit with this attack special successfully hits an enemy unit, it gains a certain amount of gold.
  
 
To do this, use this code:
 
To do this, use this code:
Line 243: Line 375:
 
         description= _ "Gain money for attacking your foe. Each strike scores you one gold."
 
         description= _ "Gain money for attacking your foe. Each strike scores you one gold."
 
         apply_to=opponent
 
         apply_to=opponent
 +
        active_on=offense
 
     [/dummy]
 
     [/dummy]
 
[/specials]
 
[/specials]
Line 254: Line 387:
 
         [filter_attack]
 
         [filter_attack]
 
             special_id=weapon_pickpocket
 
             special_id=weapon_pickpocket
         [/filter_attack]  
+
         [/filter_attack]
 
         [store_unit]
 
         [store_unit]
 
             [filter]
 
             [filter]
Line 268: Line 401:
 
         [unstore_unit]
 
         [unstore_unit]
 
             variable=unit_att_with_pickpocket
 
             variable=unit_att_with_pickpocket
         [/unstore_unit]  
+
         [/unstore_unit]
            {CLEAR_VARIABLE unit_att_with_pickpocket}
+
        {CLEAR_VARIABLE unit_att_with_pickpocket}
 
     [/event]
 
     [/event]
 
     [event]
 
     [event]
 
         name=attacker_hits
 
         name=attacker_hits
         first_time_only=no
+
         first_time_only=no
 
         [filter_attack]
 
         [filter_attack]
 
             special_id=weapon_pickpocket
 
             special_id=weapon_pickpocket
         [/filter_attack]  
+
         [/filter_attack]
 
         [store_unit]
 
         [store_unit]
 
             [filter]
 
             [filter]
Line 290: Line 423:
 
             variable=pickpocketed
 
             variable=pickpocketed
 
             mode=append
 
             mode=append
         [/store_unit]  
+
         [/store_unit]
 
         [if]
 
         [if]
 
             [variable]
 
             [variable]
Line 307: Line 440:
 
                 [/unstore_unit]
 
                 [/unstore_unit]
 
             [/then]
 
             [/then]
         [/if]  
+
         [/if]
 
         {CLEAR_VARIABLE pickpocketer,pickpocketed}
 
         {CLEAR_VARIABLE pickpocketer,pickpocketed}
 
     [/event]
 
     [/event]
Line 316: Line 449:
  
 
It can be placed after the [unit_type] tag, or in its own .cfg file.
 
It can be placed after the [unit_type] tag, or in its own .cfg file.
 
  
 
To change the amount of gold given per hit, change
 
To change the amount of gold given per hit, change
Line 324: Line 456:
 
  [/gold]
 
  [/gold]
 
Where '''X''' is the amount of gold you want.
 
Where '''X''' is the amount of gold you want.
 
  
 
If you want the gold to be constant, given at the end of the turn if at least one of the attack hits, instead of '''X''' amount of gold per hit, change
 
If you want the gold to be constant, given at the end of the turn if at least one of the attack hits, instead of '''X''' amount of gold per hit, change
Line 337: Line 468:
 
     first_time_only=no
 
     first_time_only=no
  
===Soultaker===
+
=== Soultaker ===
  
Any unit with this ability will gain an additional point of damage per strike every time it kills an enemy. Coder(s) unknown, made for Melon's Youkai faction (https://r.wesnoth.org/t20100).
+
Any unit with this will gain an additional point of damage per strike every time it kills an enemy. Made for Melon’s Youkai faction (https://r.wesnoth.org/t20100). A variant which uses this as weapon special is used in ageless era (https://r.wesnoth.org/t25274).
  
To give a unit the ability, place the following in any .cfg file loaded by the campaign or era:
+
One can add this as ability or as weapon special. As ability it will be used when the other unit is killed by any attack of this unit. Using it as weapon special is similar to the Necromancer’s plague staff: It will only take effect when the attack with the special is used to land the killing blow.
 +
 
 +
Place the following in any .cfg file loaded by the campaign or era:
  
 
<syntaxhighlight lang='wml'>
 
<syntaxhighlight lang='wml'>
#define ABILITY_SOULTAKER
+
#define SOULTAKER_DUMMY
 
   [dummy]
 
   [dummy]
 
       id=soultaker
 
       id=soultaker
Line 350: Line 483:
 
       description=_ "This unit gains an additional point added to its melee damage whenever it kills a living unit."
 
       description=_ "This unit gains an additional point added to its melee damage whenever it kills a living unit."
 
   [/dummy]
 
   [/dummy]
[/abilities]
 
 
[event]
 
    name=die
 
    first_time_only=no
 
    [filter]
 
        [not]
 
            status=not_living
 
        [/not]
 
    [/filter]
 
 
    [filter_second]
 
        ability=soultaker
 
    [/filter_second]
 
 
    [unstore_unit]
 
        variable=second_unit
 
        {COLOR_HEAL}
 
        text= _ "+1 damage"
 
    [/unstore_unit]
 
 
    [object]
 
        silent=yes
 
        duration=forever
 
        [filter]
 
            x,y=$x2,$y2
 
        [/filter]
 
 
        [effect]
 
            apply_to=attack
 
            range=melee
 
            increase_damage=1
 
        [/effect]
 
    [/object]
 
[/event]
 
 
[+abilities]
 
 
#enddef
 
#enddef
</syntaxhighlight>
 
  
And the following in the unit's [abilities] tag:
+
#define SOULTAKER_EVENT
 
+
    [event]
{ABILITY_SOULTAKER}
+
        name=die
 
+
        first_time_only=no
===Soultaker (weapon special)===
 
 
 
Unit with this weapon special will gain an additional point of damage per strike for that weapon every time it kills an enemy with this attack. Coder Ravana, made for ageless era (https://r.wesnoth.org/t25274) based on previous ability.
 
 
 
To give a unit the weapon special, load the following code:
 
 
 
<syntaxhighlight lang='wml'>
 
#define WEAPON_SPECIAL_SOULTAKER
 
    [dummy]
 
 
         id=soultaker
 
         id=soultaker
        name= _ "soultaker"
 
        description=_"This unit gains an additional point added to its damage whenever it kills a living unit."
 
    [/dummy]
 
[/specials]
 
[/attack]
 
  
[event]
 
    name=die
 
    first_time_only=no
 
    id=soultaker_event
 
    [filter]
 
        [not]
 
            status=not_living
 
        [/not]
 
    [/filter]
 
    [filter_second_attack]
 
        special_id=soultaker
 
    [/filter_second_attack]
 
    [unstore_unit]
 
        variable=second_unit
 
        {COLOR_HEAL}
 
        text= _ "+1 damage"
 
    [/unstore_unit]
 
    [object]
 
        silent=yes
 
        duration=forever
 
 
         [filter]
 
         [filter]
             x,y=$x2,$y2
+
             [not]
 +
                status=undrainable
 +
            [/not]
 
         [/filter]
 
         [/filter]
        [effect]
 
            apply_to=attack
 
            name=$second_weapon.name
 
            increase_damage=1
 
        [/effect]
 
    [/object]
 
[/event]
 
[+attack]
 
    [+specials]
 
#enddef
 
</syntaxhighlight>
 
  
 +
        # Use this check if you want to use Soultaker as ability.
 +
        [filter_second]
 +
            ability=soultaker
 +
        [/filter_second]
  
And the following in the attack's [specials] tag:
+
        # To use Soultaker as weapon special, use this check INSTEAD of the above one.
 +
        # [filter_second_attack]
 +
        #    special_id=soultaker
 +
        # [/filter_second_attack]
  
{WEAPON_SPECIAL_SOULTAKER}
+
        [floating_text]
 
+
            x,y=$x2,$y2
===Charm (Type 2)===
+
            text="<span color='#00ff00'>" + _ "+1 damage" + "</span>"
 
+
         [/floating_text]
An attack special. If the attack hits, and the target is level 0 or 1, the target is converted to the attacker's side. However, if it misses, the attacker is converted to the defender's side. Maintainer is krotop, using 1.6.x syntax (and compatible with 1.7.x], made for Melon's Youkai faction (https://r.wesnoth.org/t22539)
 
 
 
 
 
<syntaxhighlight lang='wml'>
 
    #define WEAPON_SPECIAL_CHARM
 
    # Canned definition of the Charm ability to be included in a
 
    # [specials] clause.
 
 
 
    # dummy weapon special used to describe the effect to the user
 
    # and filter on special's id
 
    [dummy]
 
        id=weapon_charm
 
        name= _ "charm"
 
        description= _ "Turns a living level 1 or level 0 unit to your side. Beware  if all of your attacks miss, the charm user turns to the defender side, even if it is your leader. You can not charm an ennemy leader or a non-living creature."  
 
         apply_to=opponent
 
    [/dummy]
 
  
    [/specials]
+
        [object]
    [/attack]
+
            silent=yes
 
+
             duration=forever
    # event that creates a variable at the beginning of the fight to check if the attacker hit at least once by the end.
 
    [event]
 
        name=attack
 
        first_time_only=no
 
       
 
        [filter_attack]
 
             special_id=weapon_charm
 
        [/filter_attack]
 
       
 
        [store_unit]
 
 
             [filter]
 
             [filter]
                 x,y=$x1,$y1
+
                 x,y=$x2,$y2
 
             [/filter]
 
             [/filter]
             variable=unit_att_with_charm
+
 
            mode=append
+
             [effect]
        [/store_unit] 
+
                apply_to=attack
        [set_variable]
+
                increase_damage=1
            name=unit_att_with_charm.variables.charm_has_worked
+
                range=melee
             value=no
+
                # This will increase all melee attacks by 1. To only increase the attack used in this fight, use
        [/set_variable]  
+
                # name=$second_weapon.name
        [unstore_unit]
+
             [/effect]
            variable=unit_att_with_charm
+
         [/object]
         [/unstore_unit]
 
       
 
        {CLEAR_VARIABLE unit_att_with_charm}
 
 
     [/event]
 
     [/event]
 +
#enddef
 +
</syntaxhighlight>
  
    # event that creates a "charm has worked" variable
+
And the following in the unit's [abilities] tag. If you changed the code to use the weapon special variant, add instead to the unit’s [attack] an [specials] tag, into which you place:
    # and sets it to "yes" if the attacker hits at least once.
 
    [event]
 
        name=attacker_hits
 
        first_time_only=no
 
       
 
        [filter_attack]
 
            special_id=weapon_charm
 
        [/filter_attack]
 
       
 
        [store_unit]
 
            [filter]
 
                x,y=$x1,$y1
 
            [/filter]
 
            variable=unit_att_with_charm
 
            mode=append
 
        [/store_unit]
 
        [set_variable]
 
            name=unit_att_with_charm.variables.charm_has_worked
 
            value=yes
 
        [/set_variable]
 
        [unstore_unit]
 
            variable=unit_att_with_charm
 
        [/unstore_unit]
 
       
 
        {CLEAR_VARIABLE unit_att_with_charm}
 
    [/event]
 
  
    # event that shifts a unit to the other side
+
{SOULTAKER_DUMMY}
    # if the defending unit
 
    #      - was not lvl1 or lvl0
 
    #      - and was not a recruiting unit
 
    #      - and was a not a "non-living" creature
 
    # then :
 
    # -> if the attacker missed all attacks, it goes to the defender side.
 
    # -> if the attacker hit once at least, the defender goes to the attacker side.
 
    [event]
 
        name=attack_end
 
        first_time_only=no
 
       
 
        [filter_attack]
 
            special_id=weapon_charm
 
        [/filter_attack]
 
        [filter_second]
 
            canrecruit=no
 
            [and]
 
                level=0
 
                [or]
 
                    level=1
 
                [/or]
 
            [/and]
 
            [and]
 
                [not]
 
                    status=not_living
 
                [/not]
 
            [/and]
 
        [/filter_second]
 
       
 
        [store_unit]
 
            [filter]
 
                x,y=$x1,$y1
 
            [/filter]
 
            variable=charmer
 
            mode=append
 
        [/store_unit]
 
       
 
        [store_unit]
 
            [filter]
 
                x,y=$x2,$y2
 
            [/filter]
 
            variable=charmed
 
            mode=append
 
        [/store_unit]
 
       
 
        [if]
 
            [variable]
 
                name=charmer.variables.charm_has_worked
 
                boolean_equals=no
 
            [/variable]
 
            [then]
 
                [set_variable]
 
                    name=charmer.side
 
                    value=$charmed.side
 
                [/set_variable]
 
                [unstore_unit]
 
                    variable=charmer
 
                    text="Charm failed!"
 
                    {COLOR_HARM}
 
                [/unstore_unit]
 
            [/then]
 
            [else]
 
                [set_variable]
 
                    name=charmed.side
 
                    value=$charmer.side
 
                [/set_variable]
 
                [unstore_unit]
 
                    variable=charmed
 
                    text="Charmed!"
 
                    {COLOR_HEAL}
 
                [/unstore_unit]
 
            [/else]
 
        [/if]
 
  
        {CLEAR_VARIABLE charmer,charmed}
+
Add to the [campaign] or [era] tag:
    [/event]
 
  
    [+attack]
+
{SOULTAKER_EVENT}
    [+specials]
 
#enddef
 
</syntaxhighlight>
 
  
 
== Works ==
 
== Works ==
  
Unit with ability ''works'' will produce 1 gold per turn.
+
Unit with ability ''works'' will produce 1 gold per turn. This mechanism is used in the mainline multiplayer map »A New Land«.
  
 
Put this macro into you code before the last piece of code.
 
Put this macro into you code before the last piece of code.
 
<syntaxhighlight lang='wml'>
 
<syntaxhighlight lang='wml'>
 
#define ABILITY_WORKS
 
#define ABILITY_WORKS
     [leadership]
+
     [works]
        value=0
 
 
         id=peasant_works
 
         id=peasant_works
        cumulative=no
 
 
         name="works"
 
         name="works"
 
         description= _ "This unit produces 1 gold per turn."
 
         description= _ "This unit produces 1 gold per turn."
     [/leadership]
+
     [/works]
 
#enddef
 
#enddef
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 634: Line 561:
 
     [store_unit]
 
     [store_unit]
 
         [filter]
 
         [filter]
             # your filter here... for example type=Peasant
+
             ability=peasant_works
 +
            side=$side_number
 
         [/filter]
 
         [/filter]
         variable=worker
+
         variable=workers
 
     [/store_unit]
 
     [/store_unit]
  
         {FOREACH worker i}
+
    [foreach]
   
+
         array=workers
 +
        [do]
 
             [gold]
 
             [gold]
                 side=$side_number
+
                 side=$this_item.side
 
                 amount=1
 
                 amount=1
 
             [/gold]  
 
             [/gold]  
             [unstore_unit]
+
             [floating_text]
                 variable=worker[$i]
+
                 x,y=$this_item.x,$this_item.y
                 text="1"
+
                 text="<span color='#ffff00'>" + _ "+1 gold" + "</span>"
                red,green,blue=255,255,0
+
             [/floating_text]
             [/unstore_unit]
+
         [/do]
               
+
     [/foreach]
         {NEXT i}
+
 
      
+
     {CLEAR_VARIABLE workers}
     {CLEAR_VARIABLE worker}
 
 
[/event]
 
[/event]
 
</syntaxhighlight>
 
</syntaxhighlight>
  
And give the unit the ability like this
+
And give the unit the ability like this:
 
 
 
<syntaxhighlight lang='wml'>
 
<syntaxhighlight lang='wml'>
 
[object]
 
[object]
Line 675: Line 602:
 
The weapon special gives an attacker 1 point of exp taken from a defender for each hit. This will violate minimum experience (i.e. defender can go below 0).  
 
The weapon special gives an attacker 1 point of exp taken from a defender for each hit. This will violate minimum experience (i.e. defender can go below 0).  
  
Give this special to the attack(s) you want it to have.
+
Give this special to the attack(s) you want it to have:
 
<syntaxhighlight lang='wml'>
 
<syntaxhighlight lang='wml'>
 
#define WEAPON_SPECIAL_MIND_FLAY
 
#define WEAPON_SPECIAL_MIND_FLAY
 
     [mindflay]
 
     [mindflay]
 
         id=mind_flay
 
         id=mind_flay
         name="Mind Flay"
+
         name= _ "Mind Flay"
         description="When used offensively, each hit of the mind flay attack takes 1 point of experience from the defender and gives it to the attacker."
+
         description= _ "When used offensively, each hit of the mind flay attack takes 1 point of experience from the defender and gives it to the attacker."
 +
        active_on=offense
 
     [/mindflay]
 
     [/mindflay]
 
#enddef
 
#enddef
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
+
Include these events into your scenario:
Include these events into your scenario.
 
 
<syntaxhighlight lang='wml'>
 
<syntaxhighlight lang='wml'>
 
[event]
 
[event]
 
     name=attack
 
     name=attack
 
     first_time_only=no
 
     first_time_only=no
     [special_filter]
+
     [filter_attack]
         weapon=mind flay
+
         special_id=mind_flay
     [/special_filter]
+
     [/filter_attack]
 
     {VARIABLE hit_number 0}
 
     {VARIABLE hit_number 0}
 
[/event]
 
[/event]
Line 700: Line 627:
 
     name=attacker_hits
 
     name=attacker_hits
 
     first_time_only=no
 
     first_time_only=no
     [special_filter]
+
     [filter_attack]
         weapon=mind flay
+
         special_id=mind_flay
     [/special_filter]
+
     [/filter_attack]
 
     {VARIABLE_OP hit_number add 1}
 
     {VARIABLE_OP hit_number add 1}
 
[/event]
 
[/event]
Line 708: Line 635:
 
     name=attack_end
 
     name=attack_end
 
     first_time_only=no
 
     first_time_only=no
     [special_filter]
+
     [filter_attack]
         weapon=mind flay
+
         special_id=mind_flay
     [/special_filter]
+
     [/filter_attack]
     {VARIABLE_OP second_unit.experience add -$hit_number}
+
     {VARIABLE_OP second_unit.experience sub $hit_number}
 
     {VARIABLE_OP unit.experience add $hit_number}
 
     {VARIABLE_OP unit.experience add $hit_number}
 
     [unstore_unit]
 
     [unstore_unit]
 
         variable=unit
 
         variable=unit
        find_vacant=no
 
 
         text=$hit_number
 
         text=$hit_number
 
         blue=255
 
         blue=255
Line 721: Line 647:
 
     [unstore_unit]
 
     [unstore_unit]
 
         variable=second_unit
 
         variable=second_unit
        find_vacant=no
 
 
     [/unstore_unit]
 
     [/unstore_unit]
 
     {CLEAR_VARIABLE hit_number}
 
     {CLEAR_VARIABLE hit_number}
 
[/event]
 
[/event]
 
</syntaxhighlight>
 
</syntaxhighlight>
 
Note: In dev version substitute "name=" instead of "weapon=".
 
  
 
== Initiative  ==
 
== Initiative  ==
  
Initiative is an aura ability. Much like Leadership, it affects adjacent allies but not the unit itself.
+
Initiative is an aura ability. Much like leadership, it affects adjacent allies but not the unit itself.
  
<syntaxhighlight lang='wml'>
+
The ability is used in HttT by Li’sar, you can copy the code from [https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Heir_To_The_Throne/utils/abilities.cfg data/campaigns/Heir_To_The_Throne/utils/abilities.cfg]
#define AURA_INITIATIVE TYPE
 
    [dummy]
 
        id=initiative
 
        name= _ "initiative"
 
        description= _ "Adjacent allies are granted Firststrike with all weapons."
 
    [/dummy]
 
[/abilities]
 
  
    [event]
+
== Blitz ==
        name=attack
 
        first_time_only=no
 
 
        [filter]
 
            [filter_adjacent]
 
                type={TYPE}
 
                is_enemy=no
 
            [/filter_adjacent]
 
        [/filter]
 
       
 
        {FOREACH unit.attack i}
 
            {VARIABLE unit.attack[$i].specials.firststrike.id "firststrike"}
 
        {NEXT i}
 
       
 
        [unstore_unit]
 
            variable=unit
 
        [/unstore_unit]
 
    [/event]
 
    [event]
 
        name=attack
 
        first_time_only=no
 
 
        [filter_second]
 
            [filter_adjacent]
 
                type={TYPE}
 
                is_enemy=no
 
            [/filter_adjacent]
 
        [/filter_second]
 
       
 
        {FOREACH second_unit.attack i}
 
            {VARIABLE second_unit.attack[$i].specials.firststrike.id "firststrike"}
 
        {NEXT i}
 
       
 
        [unstore_unit]
 
            variable=second_unit
 
        [/unstore_unit]
 
    [/event]
 
    [event]
 
        name=attack_end
 
        first_time_only=no
 
 
        [filter]
 
            [wml_filter]
 
                [attack]
 
                    [specials]
 
                        [firststrike]
 
                            id=firststrike
 
                        [/firststrike]
 
                    [/specials]
 
                [/attack]
 
            [/wml_filter]
 
        [/filter]
 
       
 
        {FOREACH unit.attack i}
 
            {CLEAR_VARIABLE unit.attack[$i].specials.firststrike}
 
        {NEXT i}
 
       
 
        [unstore_unit]
 
            variable=unit
 
        [/unstore_unit]
 
    [/event]
 
    [event]
 
        name=attack_end
 
        first_time_only=no
 
 
        [filter_second]
 
            [wml_filter]
 
                [attack]
 
                    [specials]
 
                        [firststrike]
 
                            id=firststrike
 
                        [/firststrike]
 
                    [/specials]
 
                [/attack]
 
            [/wml_filter]
 
        [/filter_second]
 
       
 
        {FOREACH second_unit.attack i}
 
            {CLEAR_VARIABLE second_unit.attack[$i].specials.firststrike}
 
        {NEXT i}
 
       
 
        [unstore_unit]
 
            variable=second_unit
 
        [/unstore_unit]
 
    [/event]
 
[+abilities]
 
#enddef
 
</syntaxhighlight>
 
  
A WML filter may be added instead of the type if you want some units of that type to not have the ability.
+
UtBS and TroW have with ''distract'' an ability, which lets adjacent units ignore the ZoC. It works similar to leadership and initiative, the bonus is valid ''while'' the unit is adjacent.
  
== Blitz ==
+
This ability does the same, but it works similar to healing: The bonus is applied at the beginning of the turn and still valid when not anymore being adjacent.
  
Blitz is an aura ability. Much like Leadership, it affects adjacent allies but not the unit itself.
+
But it also differs from the way healing works for allied units:
 +
* With healing, it is useful if you move your injured unit to an ally, so that it is adjacent at the healing time.
 +
* With this ability, the unit who wants the bonus must be adjacent at the start of <i>his own</i> turn.
  
 
<syntaxhighlight lang='wml'>
 
<syntaxhighlight lang='wml'>
#define AURA_BLITZ TYPE
+
#define ABILITY_BLITZ
 
     [dummy]
 
     [dummy]
 
         id=blitz     
 
         id=blitz     
 
         name= _ "blitz"
 
         name= _ "blitz"
         description= _ "Allies that start their turn adjacent to this unit are granted Skirmisher for that turn."
+
         description= _ "Allies that start their turn adjacent to this unit are granted skirmisher for that turn."
 +
        special_note= _ "Instead of healing other units, this unit grants temporarily skirmisher for allied units at the beginning of their turn."
 +
        active_on=offense
 +
        affect_self=no
 +
        affect_allies=yes
 +
        [affect_adjacent][/affect_adjacent]
 
     [/dummy]
 
     [/dummy]
[/abilities]
+
#enddef
 +
</syntaxhighlight>
  
 +
<syntaxhighlight lang='wml'>
 +
#define ABILITY_BLITZ_EVENT
 
     [event]
 
     [event]
 
         name=side turn
 
         name=side turn
 
         first_time_only=no
 
         first_time_only=no
       
+
 
        [store_unit]
+
         [modify_unit]
            [filter]
+
             # The units adjacent to a unit with the blitz ability …
                [wml_filter]
 
                    blitzed=1
 
                [/wml_filter]
 
            [/filter]
 
            variable=blitz_refresh
 
        [/store_unit]
 
       
 
         {FOREACH blitz_refresh i}
 
            {CLEAR_VARIABLE blitz_refresh[$i].abilities.skirmisher}
 
             {VARIABLE blitz_refresh[$i].blitzed 0}
 
            [unstore_unit]
 
                variable=blitz_refresh[$i]
 
            [/unstore_unit]
 
        {NEXT i}
 
 
        [store_unit]
 
 
             [filter]
 
             [filter]
 
                 side=$side_number
 
                 side=$side_number
 
                 [filter_adjacent]
 
                 [filter_adjacent]
                    type={TYPE}
 
 
                     is_enemy=no
 
                     is_enemy=no
 +
                    ability=blitz
 
                 [/filter_adjacent]
 
                 [/filter_adjacent]
 
             [/filter]
 
             [/filter]
             variable=blitzed
+
 
        [/store_unit]
+
             # … receive temporarily this ability.
       
+
             [object]
        {FOREACH blitzed i}
+
                 duration=turn end
             [if]
+
                 [effect]
                 [variable]
+
                     apply_to=new_ability
                    name=blitzed[$i].abilities.skirmisher.id
+
                     [abilities]
                    not_equals="skirmisher"
+
                        {ABILITY_SKIRMISHER}
                 [/variable]
+
                     [/abilities]
                [then]
+
                 [/effect]
                     {VARIABLE blitzed[$i].blitzed 1}
+
             [/object]
                     {VARIABLE blitzed[$i].abilities.skirmisher.id skirmisher}
+
         [/modify_unit]
                    {VARIABLE blitzed[$i].abilities.skirmisher.name "skirmisher"}
 
                    {VARIABLE blitzed[$i].abilities.skirmisher.description  "This unit is skilled in moving past enemies quickly, and ignores all enemy Zones of Control."}
 
                    [unstore_unit]
 
                        variable=blitzed[$i]
 
                     [/unstore_unit]
 
                 [/then]
 
             [/if]
 
         {NEXT i}
 
 
     [/event]
 
     [/event]
[+abilities]
 
 
#enddef
 
#enddef
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 952: Line 765:
 
             id=$unit.id
 
             id=$unit.id
 
         [/filter]
 
         [/filter]
         [status]
+
         {TRAIT_UNDRAINABLE}
            {TRAIT_UNDRAINABLE}
+
 
         [/status]
+
        # Or without trait / object:
 +
        # [status]
 +
        #    undrainable=yes
 +
         # [/status]
 
     [/modify_unit]
 
     [/modify_unit]
 
[/event]
 
[/event]
Line 960: Line 776:
  
 
== Whirlwind Attack ==
 
== Whirlwind Attack ==
 +
 
This attack is supposed to be an attack when you spin with your weapons in arms, hitting all nearby enemies, while they cannot counter. It should be used with the magical weapon special, because the spinning weapons are not easy to dodge and the player would pick to attack the unit with the lowest defence without it. It works with drain, slow and poison weapon specials. The attack is supposed to be attack-only, but it can be easily edited to work also on defence.
 
This attack is supposed to be an attack when you spin with your weapons in arms, hitting all nearby enemies, while they cannot counter. It should be used with the magical weapon special, because the spinning weapons are not easy to dodge and the player would pick to attack the unit with the lowest defence without it. It works with drain, slow and poison weapon specials. The attack is supposed to be attack-only, but it can be easily edited to work also on defence.
  
Line 965: Line 782:
  
 
This is the part that is the weapon special that marks it:
 
This is the part that is the weapon special that marks it:
 +
 
<syntaxhighlight lang='wml'>
 
<syntaxhighlight lang='wml'>
 
[attacks]      #This can be changed to a dummy tag if you don't want it to do anything.
 
[attacks]      #This can be changed to a dummy tag if you don't want it to do anything.
Line 972: Line 790:
 
     value=0
 
     value=0
 
     apply_to=opponent
 
     apply_to=opponent
 +
    active_on=offense
 
[/attacks]
 
[/attacks]
 
</syntaxhighlight>
 
</syntaxhighlight>
 
  
 
This is the event:
 
This is the event:
Line 984: Line 802:
 
         special_id=whirlwind
 
         special_id=whirlwind
 
     [/filter_attack]
 
     [/filter_attack]
     {VARIABLE has_drain 0}      # Notifies the weapon specials
+
     {VARIABLE has_drain no}      # Notifies the weapon specials
 
     {VARIABLE has_slow no}
 
     {VARIABLE has_slow no}
 
     {VARIABLE has_poison no}
 
     {VARIABLE has_poison no}
    {FOREACH weapon.specials.damage i}
 
 
     [if]
 
     [if]
 
         [variable]
 
         [variable]
Line 994: Line 811:
 
         [/variable]
 
         [/variable]
 
         [then]
 
         [then]
             {VARIABLE has_drain 1}
+
             {VARIABLE has_drain yes}
 
 
         [/then]
 
         [/then]
 
     [/if]
 
     [/if]
    {NEXT i}
 
 
     [if]
 
     [if]
 
         [variable]
 
         [variable]
Line 1,006: Line 821:
 
         [then]
 
         [then]
 
             {VARIABLE has_poison yes}
 
             {VARIABLE has_poison yes}
 
 
         [/then]
 
         [/then]
 
     [/if]
 
     [/if]
Line 1,016: Line 830:
 
         [then]
 
         [then]
 
             {VARIABLE has_slow yes}
 
             {VARIABLE has_slow yes}
 
 
         [/then]
 
         [/then]
 
     [/if]
 
     [/if]
Line 1,022: Line 835:
 
         [variable]
 
         [variable]
 
             name=has_drain
 
             name=has_drain
             equals=0
+
             boolean_equals=yes
 
         [/variable]
 
         [/variable]
         [else]
+
         [then]
 
             [store_unit]        #We need to know how many units were drained, and what were their resistances
 
             [store_unit]        #We need to know how many units were drained, and what were their resistances
 
                 [filter]
 
                 [filter]
Line 1,031: Line 844:
 
                     [/filter_adjacent]
 
                     [/filter_adjacent]
 
                     [not]
 
                     [not]
                         side=1             #If you want to use it in an era, use side=$unit.side instead
+
                         side=$unit.side
 
                     [/not]
 
                     [/not]
 
                     [not]        #The target unit is already hit by the attack
 
                     [not]        #The target unit is already hit by the attack
 
                         x,y=$x2,$y2
 
                         x,y=$x2,$y2
 
                     [/not]
 
                     [/not]
                     [not]         #Undead are undrainable
+
                     [not]
                         race=undead
+
                         status=undrainable,petrified
 
                     [/not]
 
                     [/not]
 
                 [/filter]
 
                 [/filter]
 
                 variable=units
 
                 variable=units
             [/store_unit]
+
             [/store_unit]
 
             {VARIABLE healed_amount 0}
 
             {VARIABLE healed_amount 0}
             {FOREACH units i}
+
             [foreach]
            [switch]            #Check the resistances
+
                array=units
                variable=weapon.type
+
                [do]
                [case]
+
                    [switch]            #Check the resistances
                    value=arcane
+
                        variable=weapon.type
                        {VARIABLE_OP healed_amount add "$($units[$i].resistance.arcane*$weapon.damage)"}
+
                        [case]
                [/case]
+
                            value=arcane
                [case]
+
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.arcane*$weapon.damage)"}
                    value=fire
+
                        [/case]
                        {VARIABLE_OP healed_amount add "$($units[$i].resistance.fire*$weapon.damage)"}
+
                        [case]
                [/case]
+
                            value=fire
                [case]
+
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.fire*$weapon.damage)"}
                    value=cold
+
                        [/case]
                        {VARIABLE_OP healed_amount add "$($units[$i].resistance.cold*$weapon.damage)"}
+
                        [case]
                [/case]
+
                            value=cold
                [case]
+
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.cold*$weapon.damage)"}
                    value=blade
+
                        [/case]
                        {VARIABLE_OP healed_amount add "$($units[$i].resistance.blade*$weapon.damage)"}
+
                        [case]
                [/case]
+
                            value=blade
                [case]
+
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.blade*$weapon.damage)"}
                    value=pierce
+
                        [/case]
                        {VARIABLE_OP healed_amount add "$($units[$i].resistance.pierce*$weapon.damage)"}
+
                        [case]
                [/case]
+
                            value=pierce
                [case]
+
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.pierce*$weapon.damage)"}
                    value=impact
+
                        [/case]
                        {VARIABLE_OP healed_amount add "$($units[$i].resistance.impact*$weapon.damage)"}
+
                        [case]
                [/case]
+
                            value=impact
            [/switch]
+
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.impact*$weapon.damage)"}
            {NEXT i}
+
                        [/case]
             [store_unit]        #Float the healed amount over the unit, like if it had drained
+
                    [/switch]
                [filter]   #Two numbers will float, the one from the regular hit and one from this
+
                [/do]
                 x,y=$x1,$y1
+
             [/foreach]
                 [/filter]
+
            #Float the healed amount over the unit, like if it had drained
                kill=no
+
            [floating_text]        #Two numbers will float, the one from the regular hit and one from this
                variable=FLOATING_TEXT_temp
+
                 x,y=$x1,$y1       #Operating with huge numbers because rounding is a problem
            [/store_unit]
+
                 text="<span color='#00ff00'>" + "$($healed_amount/200)" + "</span>"
            [unstore_unit]
+
             [/floating_text]
                variable=FLOATING_TEXT_temp
 
                find_vacant=no
 
                red,green,blue=0,255,0
 
                text=$($healed_amount/200)         #Operating with huge numbers because rounding is a problem
 
             [/unstore_unit]
 
            {CLEAR_VARIABLE FLOATING_TEXT_temp}
 
 
             [heal_unit]
 
             [heal_unit]
 
                 [filter]
 
                 [filter]
                     x,y=$x1,&y1
+
                     x,y=$x1,$y1
                 [/filter]  
+
                 [/filter]
 
                 amount=$($healed_amount/200)
 
                 amount=$($healed_amount/200)
 +
                restore_statuses=no
 
                 animate=no
 
                 animate=no
 
             [/heal_unit]
 
             [/heal_unit]
        {CLEAR_VARIABLE units,healed_amount}
+
            {CLEAR_VARIABLE units,healed_amount}
         [/else]
+
         [/then]
 
     [/if]
 
     [/if]
 
     [harm_unit]
 
     [harm_unit]
Line 1,102: Line 910:
 
             [/filter_adjacent]
 
             [/filter_adjacent]
 
             [not]
 
             [not]
                 side=1             #If you want to use it in an era, use side=$unit.side instead
+
                 side=$unit.side
 
             [/not]
 
             [/not]
             [not]            #If you want to use it in an era, use side=$unit.side instead
+
             [not]
 
                 x,y=$x2,$y2
 
                 x,y=$x2,$y2
 +
            [/not]
 +
            [not]
 +
                status=petrified
 
             [/not]
 
             [/not]
 
         [/filter]
 
         [/filter]

Latest revision as of 02:15, 14 February 2023

The more complex abilities and weapon specials often consist of two parts:

  • The ability / weapon special, which is only a dummy to provide a description and to see whether a unit has this ability. It is something one gives to a unit. Mainline abilities / weapon specials only need this part.
  • One or multiple [event]s, which make things happen. These [event]s must be added to the game explicitly, in addition to the unit with the ability / weapon special!

How to include [event]s?

  • Add it directly to the scenario file.
  • Add it directly to the [era].
  • Add it inside a [unit_type] definition.
  • Add it directly in your [campaign] tag.
  • Add it inside a [resource], which is then loaded from your [campaign] tag or an individual scenario.

If you add it both via an [era] and and the scenario, they are added twice … i.e. the pickpocket ability would give the gold twice! To avoid that, give each event an id. This is even mandatory when adding it in a [unit_type].

Even better would be to use a [resource]. Resources have also an id, so there will never be duplicates:

  • Instead of adding it to the scenario / era, you add the event code inside a [resource].
  • The same way you read the scenario / era file, you also read the file containing the [resource] tag.
  • In the scenario / era, use load_resource.

Knockback

When a unit is hit with a knockback attack, it is immediately pushed back one hex away from the attacker. Units cannot be knocked back into an occupied hex, out of villages or onto terrain they normally could not move to. Only works on offense.

Use this to display the special correctly on the attacks you want:

#define WEAPON_SPECIAL_KNOCKBACK
    [dummy]
        id=knockback
        name= _ "knockback"
        female_name= _ "female^knockback"
        description=_ "When a unit is hit with a knockback attack, it is immediately pushed back one hex away from the attacker. Units cannot be knocked back into an occupied hex, out of villages or onto terrain they normally could not move to. Only works on offense."
        active_on=offense
    [/dummy]
#enddef

And insert this event to your [scenario], [multiplayer], [unit_type] or [era]:

[event]
    name=attacker hits
    first_time_only=no

    [filter_attack]
        special_id=knockback
    [/filter_attack]

    [filter_second]
        [not]
            [filter_location]
                terrain=*^V*
            [/filter_location]
        [/not]
    [/filter_second]

    [if]
        [variable]
            name=second_unit.hitpoints
            greater_than=0
        [/variable]

            [store_locations]
                [not]
                    [filter]
                    [/filter]
                [/not]

                [filter_adjacent_location]
                    x,y=$x2,$y2
                    adjacent=-$unit.facing
                [/filter_adjacent_location]

                variable=knockback_target_hex
            [/store_locations]

            [if]
                [variable]
                    name=knockback_target_hex.length
                    greater_than=0
                [/variable]

                [then]
                    [teleport]
                        [filter]
                            x,y=$x2,$y2
                        [/filter]

                        x,y=$knockback_target_hex.x,$knockback_target_hex.y
                        ignore_passability=no
                    [/teleport]

                    [if]
                        [have_unit]
                            x,y=$knockback_target_hex.x,$knockback_target_hex.y
                        [/have_unit]

                        [then]
                            [sound]
                                name=fist.ogg
                            [/sound]

                            # the knockbacked unit doesn't seem to receive experience by default,
                            # so we need to add it manually
                            [store_unit]
                                [filter]
                                    x,y=$knockback_target_hex.x,$knockback_target_hex.y
                                [/filter]

                                kill=yes
                                variable=knockbacked
                            [/store_unit]

                            {VARIABLE_OP knockbacked.experience add $unit.level}

                            [unstore_unit]
                                variable=knockbacked
                                text= _ "knockback"
                                {COLOR_HARM}
                                advance=true
                            [/unstore_unit]

                            {CLEAR_VARIABLE knockbacked}
                        [/then]
                    [/if]
                [/then]
            [/if]

            {CLEAR_VARIABLE knockback_target_hex}
        [/then]
    [/if]
[/event]

Charm

temporary

When a unit is hit by a charm attack, it instantly jumps to the attacker's side, and returns to its original side at the end of the turn. A charmed unit has 1 movement point and can attack.

Example that makes all Troll Whelps have charm on their attack:

{CHARM (type=Troll Whelp) fist}
#define CHARM FILTER WEAPON
    [event]
        name=attacker hits
        # Works only as attacker.
        # If you want to make a weapon special for this event, set:
        # [dummy]active_on=offense, then the engine greys out the weapon special on defense.
        first_time_only=no
        id=charm_as_attacker

        [filter]
            {FILTER}
        [/filter]

        [filter_attack]
            name={WEAPON}
            # or special_id=charm, if you create a [dummy] weapon special
        [/filter_attack]

        [filter_second]
            # If the leader is charmed, it might end the scenario,
            # as the other side is now considered defeated without a leader.
            # Better exclude leaders.
            canrecruit=no
            # If the unit would die from the damage,
            # we should not interfere with the event.
            formula="self.hitpoints > 0"
        [/filter_second]

        # Charm the unit
        # Changing the side will also immediately stop the combat and grant both units XP
        [modify_unit]
            [filter]
                x,y=$x2,$y2
            [/filter]
            [variables]
                # to remember the original side
                real_side=$second_unit.side
            [/variables]
            [status]
                # optional, just to easier find the unit in the other event
                charmed=yes
            [/status]
            side=$unit.side
            moves=1
            attacks_left=1
        [/modify_unit]

        [floating_text]
            x,y=$x2,$y2
            # po: short text, only displayed for a moment
            text="<span color='#ffc0cb'>" + _ "charm" + "</span>"
        [/floating_text]
    [/event]

    [event]
        name=side turn end, scenario end
        # Releasing the unit in the same turn has a few reasons:
        # - a charmed unit cannot be charmed again
        # - if the scenario ends, we can still correct the ownership
        # - things like healing by allies work the usual way
        first_time_only=no
        id=charm_release

        [store_unit]
            [filter]
                side=$side_number
                status=charmed
            [/filter]
            variable=charmed_units
        [/store_unit]

        [foreach]
            array=charmed_units
            [do]
                {VARIABLE this_item.side $this_item.variables.real_side}
                {CLEAR_VARIABLE this_item.variables.real_side}
                {CLEAR_VARIABLE this_item.status.charmed}
                [unstore_unit]
                    variable=this_item
                [/unstore_unit]
            [/do]
        [/foreach]

        {CLEAR_VARIABLE charmed_units}
    [/event]
#enddef

permanent

This version of the weapon special is a gamble. You can obtain the other unit for good, but you also risk losing this unit. When you lose this unit, the opponent controls a unit with charm. You might regain it when he uses this weapon special.

#define WEAPON_SPECIAL_CHARM
    # dummy weapon special used to describe the effect to the user and filter on special's id
    [dummy]
        id=weapon_charm
        name= _ "charm"
        description= _ "Turns a living level 1 or level 0 unit to your side. Beware, if all of your attacks miss, the charm user turns to the defender side, even if it is your leader. You can not charm an enemy leader or a non-living creature." 
        apply_to=opponent
        active_on=offense
    [/dummy]
#enddef

#define CHARMING_EVENTS
    # event that creates a "charm has worked" variable
    # and sets it to "yes" if the attacker hits at least once.
    [event]
        name=attacker_hits
        first_time_only=no
        id=charm_detect

        [filter_attack]
            special_id=weapon_charm
        [/filter_attack]
        [filter_second]
            canrecruit=no
            level=0,1
            [not]
                status=unplagueable
            [/not]
        [/filter_second]

        [modify_unit]
            [filter]
                id=$unit.id
            [/filter]
            [variables]
                charm_has_worked=yes
            [/variables]
        [/modify_unit]
    [/event]

    # Event that shifts a unit to the other side,
    # if the defending unit:
    #       - is lvl0 or lvl1
    #       - and is not a leader unit 
    #       - and is a not a "non-living" creature
    # Then:
    # -> if the attacker missed all attacks, it goes to the defender’s side.
    # -> if the attacker hit once at least, the defender goes to the attacker’s side.
    [event]
        name=attack_end
        first_time_only=no
        id=charm_convert

        [filter_attack]
            special_id=weapon_charm
        [/filter_attack]
        [filter_second]
            canrecruit=no
            level=0,1
            [not]
                status=unplagueable
            [/not]
        [/filter_second]

        [if]
            [variable]
                name=unit.variables.charm_has_worked
                boolean_equals=no
            [/variable]
            [then]
                {VARIABLE unit.side $second_unit.side}
                [unstore_unit]
                    variable=unit
                    text= _ "Charm failed!"
                    {COLOR_HARM}
                [/unstore_unit]
            [/then]
            [else]
                {VARIABLE second_unit.side $unit.side}
                [unstore_unit]
                    variable=second_unit
                    text= _ "Charmed!"
                    {COLOR_HEAL}
                [/unstore_unit]

                # The variable needs to be unset as well.
                {CLEAR_VARIABLE unit.variables.charm_has_worked}
                [unstore_unit]
                    variable=unit
                [/unstore_unit]
            [/else]
        [/if]
    [/event]
#enddef

Bloodlust

Bloodlust is a very simple ability. If a unit having bloodlust kills an enemy unit when attacking, it may attack again, provided that there are more enemy units adjacent to it.

This would give the bloodlust ability to all Dwarvish Ulfserkers (making them insanely powerful):

{BLOODLUST (type=Dwarvish Ulfserker)}
#define BLOODLUST FILTER
    [event]
        name=die
        first_time_only=no

        [filter_second]
            {FILTER}
        [/filter_second]

        [modify_unit]
            [filter]
                x,y=$x2,$y2
            [/filter]
            moves=0
            attacks_left=1
        [/modify_unit]
    [/event]
#enddef

Pickpocket

This special could also be called loot. When a unit with this attack special successfully hits an enemy unit, it gains a certain amount of gold.

To do this, use this code:

#define WEAPON_SPECIAL_PICKPOCKET
    # Canned definition of the pickpocket ability to be included in a
    # [specials] clause.
    # dummy weapon special used to describe the effect to the user
    # and filter on special's id
    [dummy]
        id=weapon_pickpocket
        name= _ "pickpocket"
        description= _ "Gain money for attacking your foe. Each strike scores you one gold."
        apply_to=opponent
        active_on=offense
    [/dummy]
[/specials]
[/attack]

    # event that creates a "pickpocket has worked" variable
    # and sets it to "yes" if the attacker hits at least once.
    [event]
        name=attacker_hits
        first_time_only=no
        [filter_attack]
            special_id=weapon_pickpocket
        [/filter_attack]
        [store_unit]
            [filter]
                x,y=$x1,$y1
            [/filter]
            variable=unit_att_with_pickpocket
            mode=append
        [/store_unit]
        [set_variable]
            name=unit_att_with_pickpocket.variables.pickpocket_has_worked
            value=yes
        [/set_variable]
        [unstore_unit]
            variable=unit_att_with_pickpocket
        [/unstore_unit]
        {CLEAR_VARIABLE unit_att_with_pickpocket}
    [/event]
    [event]
        name=attacker_hits
        first_time_only=no
        [filter_attack]
            special_id=weapon_pickpocket
        [/filter_attack]
        [store_unit]
            [filter]
                x,y=$x1,$y1
            [/filter]
            variable=pickpocketer
            mode=append
        [/store_unit]   
        [store_unit]
            [filter]
                x,y=$x2,$y2
            [/filter]
            variable=pickpocketed
            mode=append
        [/store_unit]
        [if]
            [variable]
                name=pickpocketer.variables.pickpocket_has_worked
                boolean_equals=yes
            [/variable]
            [then]
                [gold]
                    side=$side_number
                    amount=2
                [/gold]
                [unstore_unit]
                    variable=pickpocketed
                    text="!"
                    {COLOR_HEAL}
                [/unstore_unit]
            [/then]
        [/if]
        {CLEAR_VARIABLE pickpocketer,pickpocketed}
    [/event]
    [+attack]
    [+specials]
#enddef

It can be placed after the [unit_type] tag, or in its own .cfg file.

To change the amount of gold given per hit, change

[gold]
    side=$side_number
    amount=X
[/gold]

Where X is the amount of gold you want.

If you want the gold to be constant, given at the end of the turn if at least one of the attack hits, instead of X amount of gold per hit, change

[event]
    name=attacker_hits
    first_time_only=no

to

[event]
   name=attack_end
   first_time_only=no

Soultaker

Any unit with this will gain an additional point of damage per strike every time it kills an enemy. Made for Melon’s Youkai faction (https://r.wesnoth.org/t20100). A variant which uses this as weapon special is used in ageless era (https://r.wesnoth.org/t25274).

One can add this as ability or as weapon special. As ability it will be used when the other unit is killed by any attack of this unit. Using it as weapon special is similar to the Necromancer’s plague staff: It will only take effect when the attack with the special is used to land the killing blow.

Place the following in any .cfg file loaded by the campaign or era:

#define SOULTAKER_DUMMY
   [dummy]
       id=soultaker
       name= _ "soultaker"
       description=_ "This unit gains an additional point added to its melee damage whenever it kills a living unit."
   [/dummy]
#enddef

#define SOULTAKER_EVENT
    [event]
        name=die
        first_time_only=no
        id=soultaker

        [filter]
            [not]
                status=undrainable
            [/not]
        [/filter]

        # Use this check if you want to use Soultaker as ability.
        [filter_second]
            ability=soultaker
        [/filter_second]

        # To use Soultaker as weapon special, use this check INSTEAD of the above one.
        # [filter_second_attack]
        #     special_id=soultaker
        # [/filter_second_attack]

        [floating_text]
            x,y=$x2,$y2
            text="<span color='#00ff00'>" + _ "+1 damage" + "</span>"
        [/floating_text]

        [object]
            silent=yes
            duration=forever
            [filter]
                x,y=$x2,$y2
            [/filter]

            [effect]
                apply_to=attack
                increase_damage=1
                range=melee
                # This will increase all melee attacks by 1. To only increase the attack used in this fight, use
                # name=$second_weapon.name
            [/effect]
        [/object]
    [/event]
#enddef

And the following in the unit's [abilities] tag. If you changed the code to use the weapon special variant, add instead to the unit’s [attack] an [specials] tag, into which you place:

{SOULTAKER_DUMMY}

Add to the [campaign] or [era] tag:

{SOULTAKER_EVENT}

Works

Unit with ability works will produce 1 gold per turn. This mechanism is used in the mainline multiplayer map »A New Land«.

Put this macro into you code before the last piece of code.

#define ABILITY_WORKS
    [works]
        id=peasant_works
        name="works"
        description= _ "This unit produces 1 gold per turn."
    [/works]
#enddef

Put this event into your code.

[event]
    name=side turn
    first_time_only=no
    [store_unit]
        [filter]
            ability=peasant_works
            side=$side_number
        [/filter]
        variable=workers
    [/store_unit]

    [foreach]
        array=workers
        [do]
            [gold]
                side=$this_item.side 
                amount=1
            [/gold] 
            [floating_text]
                x,y=$this_item.x,$this_item.y
                text="<span color='#ffff00'>" + _ "+1 gold" + "</span>"
            [/floating_text]
        [/do]
    [/foreach]

    {CLEAR_VARIABLE workers}
[/event]

And give the unit the ability like this:

[object]
    silent=yes
    [effect]
        apply_to=new_ability
        [abilities]
            {ABILITY_WORKS}
        [/abilities]
     [/effect]
 [/object]

Mind Flay

The weapon special gives an attacker 1 point of exp taken from a defender for each hit. This will violate minimum experience (i.e. defender can go below 0).

Give this special to the attack(s) you want it to have:

#define WEAPON_SPECIAL_MIND_FLAY
    [mindflay]
        id=mind_flay
        name= _ "Mind Flay"
        description= _ "When used offensively, each hit of the mind flay attack takes 1 point of experience from the defender and gives it to the attacker."
        active_on=offense
    [/mindflay]
#enddef

Include these events into your scenario:

[event]
    name=attack
    first_time_only=no
    [filter_attack]
        special_id=mind_flay
    [/filter_attack]
    {VARIABLE hit_number 0}
[/event]
[event]
    name=attacker_hits
    first_time_only=no
    [filter_attack]
        special_id=mind_flay
    [/filter_attack]
    {VARIABLE_OP hit_number add 1}
[/event]
[event]
    name=attack_end
    first_time_only=no
    [filter_attack]
        special_id=mind_flay
    [/filter_attack]
    {VARIABLE_OP second_unit.experience sub $hit_number}
    {VARIABLE_OP unit.experience add $hit_number}
    [unstore_unit]
        variable=unit
        text=$hit_number
        blue=255
    [/unstore_unit]
    [unstore_unit]
        variable=second_unit
    [/unstore_unit]
    {CLEAR_VARIABLE hit_number}
[/event]

Initiative

Initiative is an aura ability. Much like leadership, it affects adjacent allies but not the unit itself.

The ability is used in HttT by Li’sar, you can copy the code from data/campaigns/Heir_To_The_Throne/utils/abilities.cfg

Blitz

UtBS and TroW have with distract an ability, which lets adjacent units ignore the ZoC. It works similar to leadership and initiative, the bonus is valid while the unit is adjacent.

This ability does the same, but it works similar to healing: The bonus is applied at the beginning of the turn and still valid when not anymore being adjacent.

But it also differs from the way healing works for allied units:

  • With healing, it is useful if you move your injured unit to an ally, so that it is adjacent at the healing time.
  • With this ability, the unit who wants the bonus must be adjacent at the start of his own turn.
#define ABILITY_BLITZ
    [dummy]
        id=blitz    
        name= _ "blitz"
        description= _ "Allies that start their turn adjacent to this unit are granted skirmisher for that turn."
        special_note= _ "Instead of healing other units, this unit grants temporarily skirmisher for allied units at the beginning of their turn."
        active_on=offense
        affect_self=no
        affect_allies=yes
        [affect_adjacent][/affect_adjacent]
    [/dummy]
#enddef
#define ABILITY_BLITZ_EVENT
    [event]
        name=side turn
        first_time_only=no

        [modify_unit]
            # The units adjacent to a unit with the blitz ability …
            [filter]
                side=$side_number
                [filter_adjacent]
                    is_enemy=no
                    ability=blitz
                [/filter_adjacent]
            [/filter]

            # … receive temporarily this ability.
            [object]
                duration=turn end
                [effect]
                    apply_to=new_ability
                    [abilities]
                        {ABILITY_SKIRMISHER}
                    [/abilities]
                [/effect]
            [/object]
        [/modify_unit]
    [/event]
#enddef

Immune to drain or plague or poison

To make a unit immune to plague, poison or/and draining of life force, set the right [status] for this unit: One or multiple of unpoisonable, undrainable, unplagueable.

There are many ways to change a status, it can be set directly with [modify_unit], at recruitment via a [trait], or by giving the unit an [object]. In mainline, a [trait] is used to make undead units immune. Traits also have a name and description, which can be used to make it visible to the player that this unit is immune.

#define TRAIT_UNDRAINABLE
    # We make vampires undrainable with a trait.
    # Traits show up in the help browser, thus they should have proper descriptions.
    [trait]
        id=undrainable
        availability=musthave
        male_name= _ "vampire"
        female_name= _ "female^vampire"
        description= _ "This unit’s life force cannot be drained."
        help_text= _ "Vampires are like Undead immune to drain and plague, but still susceptible to poison. While this trait is usually seen among vampire units, other mythical beings have also been seen with it. Even some Mages managed to acquire it."
        # vampire is not a good name for a trait, as you can give the trait to anybody
        [effect]
            apply_to=status
            add=undrainable
        [/effect]
        [effect]
            apply_to=status
            add=unplagueable
        [/effect]
    [/trait]
#enddef

When you define a new [unit_type], add to it:

{TRAIT_UNDRAINABLE}
num_traits=3 # if you still want it to get 2 other traits

In other cases, if you want to make unit immune, i.e. one from mainline, give it the trait another way:

[event]
    name=prerecruit
    first_time_only=no
    [filter]
        type_adv_tree=Mage
        [or]
            race=elf
            side=2
        [/or]
    [/filter]

    [modify_unit]
        [filter]
            id=$unit.id
        [/filter]
        {TRAIT_UNDRAINABLE}

        # Or without trait / object:
        # [status]
        #     undrainable=yes
        # [/status]
    [/modify_unit]
[/event]

Whirlwind Attack

This attack is supposed to be an attack when you spin with your weapons in arms, hitting all nearby enemies, while they cannot counter. It should be used with the magical weapon special, because the spinning weapons are not easy to dodge and the player would pick to attack the unit with the lowest defence without it. It works with drain, slow and poison weapon specials. The attack is supposed to be attack-only, but it can be easily edited to work also on defence.

This is a pair of two macros, one is a weapon special that makes the enemy unable to counter (lowers the number of attacks by 10; for the case if there was a boss or something). The other one is an event that damages the units, that should be placed into every scenario where the unit appears (or the era), preferably through a macro.

This is the part that is the weapon special that marks it:

[attacks]      #This can be changed to a dummy tag if you don't want it to do anything.
    id=whirlwind
    name= _ "whirlwind"
    description= _ "When this attack is used, all units adjacent the attacker take the damage, and cannot be countered."
    value=0
    apply_to=opponent
    active_on=offense
[/attacks]

This is the event:

 [event]
    name=attacker_hits
    first_time_only=no
    [filter_attack]
        special_id=whirlwind
    [/filter_attack]
    {VARIABLE has_drain no}      # Notifies the weapon specials
    {VARIABLE has_slow no}
    {VARIABLE has_poison no}
    [if]
        [variable]
            name=weapon.specials.drains.id
            equals=drains
        [/variable]
        [then]
            {VARIABLE has_drain yes}
        [/then]
    [/if]
    [if]
        [variable]
            name=weapon.specials.poison.id
            equals=poison
        [/variable]
        [then]
            {VARIABLE has_poison yes}
        [/then]
    [/if]
    [if]
        [variable]
            name=weapon.specials.slow.id
            equals=slow
        [/variable]
        [then]
            {VARIABLE has_slow yes}
        [/then]
    [/if]
    [if]
        [variable]
            name=has_drain
            boolean_equals=yes
        [/variable]
        [then]
            [store_unit]        #We need to know how many units were drained, and what were their resistances
                [filter]
                    [filter_adjacent]
                        x,y=$x1,$y1
                    [/filter_adjacent]
                    [not]
                        side=$unit.side
                    [/not]
                    [not]         #The target unit is already hit by the attack
                        x,y=$x2,$y2
                    [/not]
                    [not]
                        status=undrainable,petrified
                    [/not]
                [/filter]
                variable=units
            [/store_unit]
            {VARIABLE healed_amount 0}
            [foreach]
                array=units
                [do]
                    [switch]            #Check the resistances
                        variable=weapon.type
                        [case]
                            value=arcane
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.arcane*$weapon.damage)"}
                        [/case]
                        [case]
                            value=fire
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.fire*$weapon.damage)"}
                        [/case]
                        [case]
                            value=cold
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.cold*$weapon.damage)"}
                        [/case]
                        [case]
                            value=blade
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.blade*$weapon.damage)"}
                        [/case]
                        [case]
                            value=pierce
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.pierce*$weapon.damage)"}
                        [/case]
                        [case]
                            value=impact
                            {VARIABLE_OP healed_amount add "$($this_item.resistance.impact*$weapon.damage)"}
                        [/case]
                    [/switch]
                [/do]
            [/foreach]
            #Float the healed amount over the unit, like if it had drained
            [floating_text]        #Two numbers will float, the one from the regular hit and one from this
                x,y=$x1,$y1        #Operating with huge numbers because rounding is a problem
                text="<span color='#00ff00'>" + "$($healed_amount/200)" + "</span>"
            [/floating_text]
            [heal_unit]
                [filter]
                    x,y=$x1,$y1
                [/filter]
                amount=$($healed_amount/200)
                restore_statuses=no
                animate=no
            [/heal_unit]
            {CLEAR_VARIABLE units,healed_amount}
        [/then]
    [/if]
    [harm_unit]
        [filter]
            [filter_adjacent]
                x,y=$x1,$y1
            [/filter_adjacent]
            [not]
                side=$unit.side
            [/not]
            [not]
                x,y=$x2,$y2
            [/not]
            [not]
                status=petrified
            [/not]
        [/filter]
        [filter_second]
            x,y=$x1,$y1
        [/filter_second]
        amount=$weapon.damage
        damage_type=$weapon.type
        fire_event=yes
        experience=yes      #You will have to think about this
        poisoned=$has_poison   #We have detected these two effects before
        slowed=$has_slow
    [/harm_unit] 
    {CLEAR_VARIABLE has_slow,has_poison,has_drain}
 [/event]

See Also

This page was last edited on 14 February 2023, at 02:15.