This file is indexed.

/usr/share/games/wesnoth/1.10/data/campaigns/The_South_Guard/utils/sg_help.cfg is in wesnoth-1.10-tsg 1:1.10.7-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#textdomain wesnoth-tsg
# This file is meant to provide players of the South Guard who have played
# no other campaigns with a brief overview of the various units in the game
# as they encounter them.

#ifdef EASY

[event]
    name=attack
    [filter]
        type=Thug
    [/filter]
    [filter_second]
        side=1
    [/filter_second]
    [if]
        [variable]
            name=sg_thug_info
            not_equals=true
        [/variable]
        [then]
            [set_variable]
                name=sg_thug_info
                value=true
            [/set_variable]
            [message]
                speaker=narrator
                image="units/human-outlaws/thug-melee-3.png~RC(magenta>red)"
                message= _ "Thugs are the mainstay of the bandit armies. They do not have a <i>ranged</i> attack, and are vulnerable to your archers. Deoran’s lance will also strike fear into their hearts! Like all of the bandit units, they are much more dangerous at night."
            [/message]
        [/then]
    [/if]
[/event]

[event]
    name=attack
    [filter]
        type=Thief
    [/filter]
    [filter_second]
        side=1
    [/filter_second]
    [if]
        [variable]
            name=sg_thief_info
            not_equals=true
        [/variable]
        [then]
            [set_variable]
                name=sg_thief_info
                value=true
            [/set_variable]
            [message]
                speaker=narrator
                image="units/human-outlaws/thief-defend-2-2.png~RC(magenta>red)"
                message= _ "Thieves are more subtle than thugs. They try to surround your units and stab them in the back. Make sure that thieves never have an opportunity to attack when they have an ally directly behind the unit they are attacking — they’ll do double damage! Like thugs, thieves are vulnerable to the ranged attacks of your archers."
            [/message]
        [/then]
    [/if]
[/event]

[event]
    name=attack
    [filter]
        type=Footpad
    [/filter]
    [filter_second]
        side=1
    [/filter_second]
    [if]
        [variable]
            name=sg_footpad_info
            not_equals=true
        [/variable]
        [then]
            [set_variable]
                name=sg_footpad_info
                value=true
            [/set_variable]
            [message]
                speaker=narrator
                image="units/human-outlaws/footpad+female-attack1.png~RC(magenta>red)"
                message= _ "Footpads are the scouts of the bandit armies. They are quick, and have both a <i>melee</i> attack and a <i>ranged</i> attack. Neither of their attacks is very strong, however, and your spearmen will make quick work of them during the day."
            [/message]
        [/then]
    [/if]
[/event]

[event]
    name=attack
    [filter]
        type=Skeleton
    [/filter]
    [filter_second]
        side=1
    [/filter_second]
    [if]
        [variable]
            name=sg_skeleton_info
            not_equals=true
        [/variable]
        [then]
            [set_variable]
                name=sg_skeleton_info
                value=true
            [/set_variable]
            [message]
                speaker=narrator
                image="units/undead-skeletal/skeleton-attack-2.png~RC(magenta>red)"
                message= _ "Skeletons are the bones of fallen warriors raised by some dark magic. They are almost immune to piercing weapons like arrows and spears. Bladed attacks like swords will injure them, and Minister Hylas’s <i>arcane</i> attack is deadly against them. Like the rest of the bandits, they are more dangerous at night!"
            [/message]
        [/then]
    [/if]
[/event]

[event]
    name=attack
    [filter]
        type=Walking Corpse
    [/filter]
    [filter_second]
        side=1
    [/filter_second]
    [if]
        [variable]
            name=sg_walking_corpse_info
            not_equals=true
        [/variable]
        [then]
            [set_variable]
                name=sg_walking_corpse_info
                value=true
            [/set_variable]
            [message]
                speaker=narrator
                image="units/undead/zombie-attack-s.png~RC(magenta>red)"
                message= _ "Walking corpses are the bodies of slain warriors, filled with some black magic. They are slow and weak — any of your units is more than a match for them. They are only dangerous in packs..."
            [/message]
        [/then]
    [/if]
[/event]

#endif