<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.wesnoth.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gnombat</id>
	<title>The Battle for Wesnoth Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.wesnoth.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gnombat"/>
	<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/Special:Contributions/Gnombat"/>
	<updated>2026-04-26T14:45:32Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.16</generator>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=LuaWML&amp;diff=74407</id>
		<title>LuaWML</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=LuaWML&amp;diff=74407"/>
		<updated>2025-06-21T19:31:09Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: For some reason, the code example of complex WML represented by a Lua table had way too many braces (some of them unbalanced).  It should be fixed now (I think).&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{WML Tags}}&lt;br /&gt;
&lt;br /&gt;
== The '''[lua]''' tag ==&lt;br /&gt;
&lt;br /&gt;
This tag is a part of [[ActionWML]], thus can be used inside [event] and at other places where [[ActionWML]] can be used. It makes it possible to write actions with the [http://www.lua.org Lua 5.4] language.&lt;br /&gt;
&lt;br /&gt;
{{DevFeature1.13|?}} In addition to ActionWML, the '''[lua]''' tag may now be used in several other places. It can be placed at toplevel (outside of any tag) to make code that loads no matter what. ('''Note''': This should usually be avoided, unless you're making a [[CoreWML|custom core]].) It can be placed in any [[AddonsWML|addon module tag]], such as '''[scenario]''', '''[era]''', or '''[resource]''', to load code when the scenario boots up. Lua code placed in either of these places is executed even earlier than a '''preload''' event. And finally, it can now be used as [[ConditionalActionsWML#.5Blua.5D|ConditionalWML]]. In this case, the code must return either '''true''' or '''false''' to determine the outcome of the condition.&lt;br /&gt;
&lt;br /&gt;
The '''[lua]''' tag can contain the following contents:&lt;br /&gt;
&lt;br /&gt;
* '''code''': A string containing the Lua script.&lt;br /&gt;
* '''name''': An arbitrary string used to identify this tag in error messages.&lt;br /&gt;
* '''[args]''': Arbitrary data that will be passed to the Lua script as its only argument. It can be accessed in the Lua code via the special variadic variable &amp;lt;code&amp;gt;...&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Since Lua makes usage of double quotes and curly braces, it is recommended to enclose the script between [[SyntaxWML#macro-protected-string|stronger quotes]] (as shown in the below example), as they prevent the preprocessor from performing macro expansion and tokenization. This is not strictly required, however. Example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
 [lua]&lt;br /&gt;
     code = &amp;lt;&amp;lt; wesnoth.interface.add_chat_message &amp;quot;Hello World!&amp;quot; &amp;gt;&amp;gt;&lt;br /&gt;
 [/lua]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The '''[args]''' tag is useful if you need to pass WML variables or macro expansions into the code.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
 [lua]&lt;br /&gt;
     code = &amp;lt;&amp;lt; local t = ...; wesnoth.interface.add_chat_message(tostring(t.text)) &amp;gt;&amp;gt;&lt;br /&gt;
     [args]&lt;br /&gt;
         text = _ &amp;quot;Hello $unit.name!&amp;quot;&lt;br /&gt;
     [/args]&lt;br /&gt;
 [/lua]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When code in a '''[lua]''' tag has errors, it's often hard to find the location of the error because the line numbers are not within the code string and not the entire file. To help with this, you can set the '''name''' key. When an error is reported, the value of '''name''' will be shown as if it were the filename, allowing you to more easily locate the tag that raised it.&lt;br /&gt;
&lt;br /&gt;
== Testing out Lua in-game ==&lt;br /&gt;
&lt;br /&gt;
The Lua kernel can also be accessed from [[CommandMode|command mode]]:&lt;br /&gt;
&lt;br /&gt;
 :lua local u = wesnoth.units.find_on_map{ id = &amp;quot;Konrad&amp;quot; }[1]; u.moves = 5&lt;br /&gt;
&lt;br /&gt;
In addition, if you enable debug mode, you can access a &amp;lt;acronym title=&amp;quot;Read, evaluate, print loop&amp;quot;&amp;gt;REPL&amp;lt;/acronym&amp;gt; console by pressing the Lua Console hotkey, which is bound to ~ by default. You can enable debug mode by using the &amp;lt;tt&amp;gt;:debug&amp;lt;/tt&amp;gt; command, or by running Wesnoth with the &amp;lt;tt&amp;gt;--debug&amp;lt;/tt&amp;gt; command-line argument. In the latter case, the Lua Console can even be summoned from the main menu screen.&lt;br /&gt;
&lt;br /&gt;
You can use the Lua console to examine anything about the Lua environment and execute any Lua code you wish. It is recommended to use command mode to execute Lua that affects the map however, for example moving a unit. In the Lua Console you can use a special [[LuaAPI/wesnoth#wesnoth.print_attributes|dir()]] function to examine the contents of objects and modules. You can also access a special &amp;lt;tt&amp;gt;_&amp;lt;/tt&amp;gt; variable which contains the result of the previous command executed in the console. Global variables assigned in the Lua console are not visible to scenario code, but remain between invocations of the console within a single game, as long as you don't reload. If you need to assign a global variable that is visible outside of the console, you can do so via the special variable &amp;lt;tt&amp;gt;_G&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Global environment ==&lt;br /&gt;
&lt;br /&gt;
All the Lua scripts of a scenario share the same global environment (aka Lua state). Unlike other parts of the configurable gamestate the Lua state is not stored in savefiles, thus [lua] tags in [scenario] are executed not only before the scenario starts but also each time the game is loaded. Functions defined in [lua] tags in [scenario] can be used in all [lua] tags in [event]s.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
 [scenario]&lt;br /&gt;
     [lua]&lt;br /&gt;
         code = &amp;lt;&amp;lt;&lt;br /&gt;
             function narrator(t)&lt;br /&gt;
                 -- Behave like the [message] tag.&lt;br /&gt;
                 wml.fire(&amp;quot;message&amp;quot;,&lt;br /&gt;
                   { speaker = &amp;quot;narrator&amp;quot;, message = t.sentence })&lt;br /&gt;
             end&lt;br /&gt;
         &amp;gt;&amp;gt;&lt;br /&gt;
     [/lua]&lt;br /&gt;
     [event]&lt;br /&gt;
         name = turn 1&lt;br /&gt;
         [lua]&lt;br /&gt;
             code = &amp;lt;&amp;lt; narrator(...) &amp;gt;&amp;gt;&lt;br /&gt;
             [args]&lt;br /&gt;
                 sentence = _ &amp;quot;Hello world!&amp;quot;&lt;br /&gt;
             [/args]&lt;br /&gt;
         [/lua]&lt;br /&gt;
         [lua]&lt;br /&gt;
             code = &amp;lt;&amp;lt; narrator(...) &amp;gt;&amp;gt;&lt;br /&gt;
             [args]&lt;br /&gt;
                 sentence = _ &amp;quot;How are you today?&amp;quot;&lt;br /&gt;
             [/args]&lt;br /&gt;
         [/lua]&lt;br /&gt;
     [/event]&lt;br /&gt;
     ...&lt;br /&gt;
 [/scenario]&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the example above, the redundant structure could be hidden behind macros. But it may be better to simply define a new WML tag.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
 [scenario]&lt;br /&gt;
     [lua]&lt;br /&gt;
         code = &amp;lt;&amp;lt;&lt;br /&gt;
             -- The function is now placed in the wesnoth.wml_actions table&lt;br /&gt;
             -- The tag is [narrator], same as the function name&lt;br /&gt;
             function wesnoth.wml_actions.narrator(t)&lt;br /&gt;
                 -- Behave like the [message] tag.&lt;br /&gt;
                 wml.fire(&amp;quot;message&amp;quot;,&lt;br /&gt;
                   { speaker = &amp;quot;narrator&amp;quot;, message = t.sentence })&lt;br /&gt;
             end&lt;br /&gt;
         &amp;gt;&amp;gt;&lt;br /&gt;
     [/lua]&lt;br /&gt;
 &lt;br /&gt;
     [event]&lt;br /&gt;
         name = turn 1&lt;br /&gt;
         [narrator]&lt;br /&gt;
             sentence = _ &amp;quot;Hello world!&amp;quot;&lt;br /&gt;
         [/narrator]&lt;br /&gt;
         [narrator]&lt;br /&gt;
             sentence = _ &amp;quot;How are you today?&amp;quot;&lt;br /&gt;
         [/narrator]&lt;br /&gt;
     [/event]&lt;br /&gt;
 [/scenario]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The global environment is not preserved over save/load cycles. Therefore, storing values in the global environment is generally a bad idea. The only time assigning global variables (including function definitions) makes sense is in a [lua] block directly in [scenario] or during a [[EventWML#Predefined 'name' Key Values|preload]] event, as this event is always run. Therefore, helper functions defined at that time will be available to all the later scripts.&lt;br /&gt;
&lt;br /&gt;
The global environment initially contains the following built-in modules: '''string''', '''table''', and '''math'''. A '''wesnoth''' module is also available, which provides access to the C++ game engine. Additionally, the functions '''clock''', '''date''', '''time''' and '''difftime''' from the '''os''' module are also available (but keep in mind that they aren't multiplayer- and replay-safe), as well as '''traceback''' from the '''debug''' module. There are also a few other built-in modules specific to Wesnoth – for full details, see [[LuaAPI]].&lt;br /&gt;
&lt;br /&gt;
At the start of a script, the variadic local variable '''...''' (three dots) is a proxy table representing [[#Encoding WML objects into Lua tables|WML data]]. This table is the content of the '''[args]''' sub-tag of the '''[lua]''' tag, if any.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
The following WML event is taken from Wesnoth' tutorial. It will serve as an example to present how Lua scripts are embedded into Wesnoth. The event is fired whenever a unit from side 1 (that is, the hero controlled by the user) moves to a tile that is not the one set in the WML variable ''target_hex''.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
 # General catch for them moving to the wrong place.&lt;br /&gt;
 [event]&lt;br /&gt;
     name=moveto&lt;br /&gt;
     first_time_only=no&lt;br /&gt;
     [allow_undo][/allow_undo]&lt;br /&gt;
     [filter]&lt;br /&gt;
         side=1&lt;br /&gt;
     [/filter]&lt;br /&gt;
 &lt;br /&gt;
     [if]&lt;br /&gt;
         [variable]&lt;br /&gt;
             name=target_hex.is_set&lt;br /&gt;
             equals=yes&lt;br /&gt;
         [/variable]&lt;br /&gt;
         [then]&lt;br /&gt;
             [if]&lt;br /&gt;
                 [variable]&lt;br /&gt;
                     name=x1&lt;br /&gt;
                     equals=$target_hex.x&lt;br /&gt;
                 [/variable]&lt;br /&gt;
                 [variable]&lt;br /&gt;
                     name=y1&lt;br /&gt;
                     equals=$target_hex.y&lt;br /&gt;
                 [/variable]&lt;br /&gt;
                 [then]&lt;br /&gt;
                 [/then]&lt;br /&gt;
                 [else]&lt;br /&gt;
                     [redraw][/redraw]&lt;br /&gt;
                     [message]&lt;br /&gt;
                         speaker=narrator&lt;br /&gt;
                         message=_ &amp;quot;*Oops!&lt;br /&gt;
 You moved to the wrong place! After this message, you can press 'u' to undo, then try again.&amp;quot; +&lt;br /&gt;
                         _ &amp;quot;&lt;br /&gt;
 *Left click or press spacebar to continue...&amp;quot;&lt;br /&gt;
                     [/message]&lt;br /&gt;
                 [/else]&lt;br /&gt;
             [/if]&lt;br /&gt;
         [/then]&lt;br /&gt;
     [/if]&lt;br /&gt;
 [/event]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A Lua script that performs the same action is presented below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
 [event]&lt;br /&gt;
     name=moveto&lt;br /&gt;
     first_time_only=no&lt;br /&gt;
     [allow_undo][/allow_undo]&lt;br /&gt;
     [filter]&lt;br /&gt;
         side=1&lt;br /&gt;
     [/filter]&lt;br /&gt;
 &lt;br /&gt;
     [lua]&lt;br /&gt;
         code = &amp;lt;&amp;lt;&lt;br /&gt;
&lt;br /&gt;
             local event_data = wesnoth.current.event_context&lt;br /&gt;
             if wml.variables[&amp;quot;target_hex.is_set&amp;quot;] and&lt;br /&gt;
                (event_data.x1 ~= wml.variables[&amp;quot;target_hex.x&amp;quot;] or event_data.y1 ~= wml.variables[&amp;quot;target_hex.y&amp;quot;])&lt;br /&gt;
             then&lt;br /&gt;
                 W.redraw()&lt;br /&gt;
                 narrator_says(_ &amp;quot;*Oops!\nYou moved to the wrong place! After this message, you can press 'u' to undo, then try again.&amp;quot;)&lt;br /&gt;
             end&lt;br /&gt;
         &amp;gt;&amp;gt;&lt;br /&gt;
     [/lua]&lt;br /&gt;
 [/event]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here is a more detailed explanation of the Lua code. Its first line&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
local event_data = wesnoth.current.event_context&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
puts the event data into the ''event_data'' local variable. Since it is a ''moveto'' event, the ''event_data'' table contains the destination of the unit in the ''x1'' and ''y1'' fields.&lt;br /&gt;
&lt;br /&gt;
The next two lines then test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
if wml.variables[&amp;quot;target_hex.is_set&amp;quot;] and&lt;br /&gt;
    (event_data.x1 ~= wml.variables[&amp;quot;target_hex.x&amp;quot;] or event_data.y1 ~= wml.variables[&amp;quot;target_hex.y&amp;quot;])&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
whether the variable ''wml.variables[&amp;quot;target_hex&amp;quot;]'' matches the event parameters. Since ''wml.variables'' is not a local variable, it is taken from the global environment. Usually, variables from the global environment are not persistent but the wesnoth engine maps the variable wml.variables to the storage of WML variables.&lt;br /&gt;
&lt;br /&gt;
The body of the conditional then performs the [[InterfaceActionsWML#Other interface tags|[redraw]]] action.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
W.redraw()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This short syntax is made possible by a line of the prelude that makes ''W'' a proxy for performing WML actions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
 [scenario]&lt;br /&gt;
     [lua]&lt;br /&gt;
         code = &amp;lt;&amp;lt;&lt;br /&gt;
             H = wesnoth.require &amp;quot;helper&amp;quot;&lt;br /&gt;
             W = H.set_wml_action_metatable {}&lt;br /&gt;
         &amp;gt;&amp;gt;&lt;br /&gt;
     [/lua]&lt;br /&gt;
     ...&lt;br /&gt;
 [/scenario]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Without this shortcut, the first statement would have been written&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
wml.fire(&amp;quot;redraw&amp;quot;)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
wesnoth.wml_actions.redraw {}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Finally the script displays a message by&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
narrator_says(_ &amp;quot;*Oops!\nYou moved to the wrong place! After this message, you can press 'u' to undo, then try again.&amp;quot;)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The ''narrator_says'' function is defined in the prelude too, since the construct behind it occurs several times in the tutorial. In plain WML, macros would have been used instead. The definition of the function is&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
function narrator_says(m)&lt;br /&gt;
    W.message { speaker=&amp;quot;narrator&amp;quot;,&lt;br /&gt;
                message = m .. _ &amp;quot;\n*Left click or press spacebar to continue...&amp;quot; }&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The function fires a [[InterfaceActionsWML#.5Bmessage.5D|[message]]] action and passes a WML object containing the usual two fields to it. The second field is initialized by concatenating the function argument with another string. Both strings are prefixed by the ''_'' symbol to mark them as translatable. (Note that ''_'' is just a unary function, not a keyword.) Again, this is made possible by a specific line of the prelude:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
_ = wesnoth.textdomain &amp;quot;wesnoth-tutorial&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- A longer translation of the tutorial is available at [https://gna.org/patch/download.php?file_id=5483]. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Encoding WML objects into Lua tables ==&lt;br /&gt;
&lt;br /&gt;
=== WML table ===&lt;br /&gt;
Many functions in the Wesnoth Lua API expect a table representing a WML object (that is, the contents of a WML tag) to be passed as a parameter, for example [[LuaAPI/wml#wml.fire|wml.fire]]. Other functions return WML data converted to a Lua table. All these tables have the same format. The Lua API documentation refers to a table using this specific format convention as a &amp;quot;WML table&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Scalar fields are transformed into WML attributes. For instance, the following Lua table&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    a_bool = true,&lt;br /&gt;
    an_int = 42,&lt;br /&gt;
    a_float = 1.25,&lt;br /&gt;
    a_string = &amp;quot;scout&amp;quot;,&lt;br /&gt;
    a_translation = _ &amp;quot;Hello World!&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
is equivalent to the content of the following WML object&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[dummy]&lt;br /&gt;
    a_bool = &amp;quot;yes&amp;quot;&lt;br /&gt;
    an_int = 42&lt;br /&gt;
    a_float = 1.25&lt;br /&gt;
    a_string = &amp;quot;scout&amp;quot;&lt;br /&gt;
    a_translation = _ &amp;quot;Hello World!&amp;quot;&lt;br /&gt;
[/dummy]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
WML child objects are not stored as Lua named fields, since several of them can have the same tag. Moreover, their tags can conflict with the attribute keys (it is possible to have a tag and an attribute with the same name). So child objects are stored as (string, table) pairs in the unnamed fields in definition order. This means that for every subtag appearing in the wml code there is an additional table &amp;quot;layer&amp;quot; in the corresponding WML table of the form &amp;lt;syntaxhighlight inline lang=lua&amp;gt;{tag = &amp;quot;tag_name&amp;quot;, contents = {}}&amp;lt;/syntaxhighlight&amp;gt;. The table under &amp;lt;tt&amp;gt;contents&amp;lt;/tt&amp;gt; in this subtable then holds the wml attributes from inside the wml subtag. So every subtag other than the toplevel tag corresponds to two nested tables each. In code, this format is constructed using [[LuaAPI/wml#wml.tag|wml.tag]] to improve readability. For example &amp;lt;syntaxhighlight inline lang=lua&amp;gt;wml.tag_name{}&amp;lt;/syntaxhighlight&amp;gt; is equivalent to the prior example.&lt;br /&gt;
&lt;br /&gt;
'''Note''': As of 1.17, the structure changed slightly. Previously the additional table &amp;quot;layer&amp;quot; for each tag looked like &amp;lt;syntaxhighlight inline lang=lua&amp;gt;{[1] = &amp;quot;tag_name&amp;quot;, [2] = {}}&amp;lt;/syntaxhighlight&amp;gt;. For backwards compatibility, accessing [1] and [2] still return or set tag and contents respectively (in fact, it is a structure created by [[LuaAPI/wesnoth#wesnoth.named_tuple|wesnoth.named_tuple]]). However, in older versions, only [1] and [2] work.&lt;br /&gt;
&lt;br /&gt;
For instance, the following Lua table&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    foo = 42,&lt;br /&gt;
    wml.tag.bar { v = 1, w = 2 },&lt;br /&gt;
    wml.tag.foo { x = false },&lt;br /&gt;
    wml.tag.bar { y = &amp;quot;foo&amp;quot; },&lt;br /&gt;
    wml.tag.foobar { z = 5, wml.tag.barfoo {} }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
is equivalent to the content of the following WML object&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[dummy]&lt;br /&gt;
    foo = 42&lt;br /&gt;
    [bar]&lt;br /&gt;
        v = 1&lt;br /&gt;
        w = 2&lt;br /&gt;
    [/bar]&lt;br /&gt;
    [foo]&lt;br /&gt;
        x = no&lt;br /&gt;
    [/foo]&lt;br /&gt;
    [bar]&lt;br /&gt;
        y = foo&lt;br /&gt;
    [bar]&lt;br /&gt;
    [foobar]&lt;br /&gt;
        z = 5&lt;br /&gt;
        [barfoo]&lt;br /&gt;
        [/barfoo]&lt;br /&gt;
    [/foobar]&lt;br /&gt;
[/dummy]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So assuming ''cfg'' contains the above WML object, the following accesses are possible:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=lua&amp;gt;&lt;br /&gt;
a_int = cfg.foo        -- &amp;quot;dummy.foo&amp;quot;, 42&lt;br /&gt;
a_string = cfg[3].contents.y -- &amp;quot;dummy.bar[1].y&amp;quot;, &amp;quot;foo&amp;quot;&lt;br /&gt;
a_table = cfg[4].contents    -- &amp;quot;dummy.foobar&amp;quot;, { z = 5, { &amp;quot;barfoo&amp;quot;, {} } }&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consider using the [[LuaAPI/wml#wml.get_child|wml.get_child]] and [[LuaAPI/wml#wml.child_range|wml.child_range]] helper functions to ease the access to subtags.&lt;br /&gt;
&lt;br /&gt;
{{DevFeature1.13|5}} As a convenience, attributes with array values (tables with only integer keys) are concatenated into a string when converting a Lua table into WML. For example, the following Lua code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=lua&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    x = {1, 2, 3, 4},&lt;br /&gt;
    y = {7, 8, 9, 10}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
produces the following WML table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=wml&amp;gt;&lt;br /&gt;
[dummy]&lt;br /&gt;
    x=1,2,3,4&lt;br /&gt;
    y=7,8,9,10&lt;br /&gt;
[/dummy]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== vconfig userdata ===&lt;br /&gt;
Functions registered in [[LuaAPI/wesnoth#wesnoth.wml_actions|wesnoth.wml_actions]] and other similar tables that provide hooks that the engine calls will receive their data either in lua tables encoding a WML object or as a [[LuaAPI/wml#wml.tovconfig|WML vconfig userdata]], which has the same structure but is read-only. Accessing fields or children on a vconfig performs variable substitution on the fly. Its '''__parsed''' and '''__literal''' fields provide translations to plain, writable tables. '''__literal''' returns the original text of the data (including dollar symbols in attributes and '''[insert_tag]''' children), while '''__parsed''' performs a full variable substitution.&lt;br /&gt;
&lt;br /&gt;
For instance, if you cannot stand any longer the fact that '''first_time_only''' is set to yes by default for the '''[event]''' tag, you can redefine it. But we have to be careful not to cause variable substitution, since the engine would perform a second variable substitution afterwards.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=lua&amp;gt;&lt;br /&gt;
local old_event_handler = wesnoth.wml_actions.event&lt;br /&gt;
function wesnoth.wml_actions.event(cfg)&lt;br /&gt;
    -- Get the plain text from the user.&lt;br /&gt;
    local new_cfg = wml.literal(cfg)&lt;br /&gt;
    -- The expression below is equivalent to cfg.__parsed.first_time_only,&lt;br /&gt;
    -- only faster. It is needed, since the first_time_only attribute may&lt;br /&gt;
    -- reference variables.&lt;br /&gt;
    local first = cfg.first_time_only&lt;br /&gt;
    -- Modify the default behavior of first_time_only.&lt;br /&gt;
    if first == nil then first = false end&lt;br /&gt;
    new_cfg.first_time_only = first&lt;br /&gt;
    -- Call the engine handler.&lt;br /&gt;
    old_event_handler(wml.tovconfig(new_cfg))&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(Note: The above example will only affect nested events. Toplevel events will still default to ''first_time_only=yes''.)&lt;br /&gt;
(Note2: You should not do that since it will break other addons that rely on the first_time_only=no default value.)&lt;br /&gt;
&amp;lt;!-- This should probably be replaced with a better example. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''pairs''' and '''ipairs''' also work on vconfig objects. However, '''pairs''' works a little differently than on plain configs (tables) - it returns only string keys (attributes in WML terms) and not integer keys (tags in WML terms).&lt;br /&gt;
&lt;br /&gt;
Another approach for handling userdata and tables in the same way, would be to convert the former into the latter beforehand. The [[LuaAPI/wml#wml.parsed|wml.parsed]] and [[LuaAPI/wml#wml.literal|wml.literal]] helpers take care of this for you.&lt;br /&gt;
&lt;br /&gt;
The vconfig userdata provides two other special fields: '''__shallow_parsed''' and '''__shallow_literal'''. They return a table corresponding to the WML userdata with variable substitution performed on the attributes (or not). [insert_tag] tags have also been parsed, so the number of children is faithful. But contrarily to '''__parsed''' and '''__literal''', the process is not recursive: all the children are still WML userdata and variable substitution can still happen for them. These shallow translators are meant as optimized versions of the deep ones, when only the toplevel attributes need to be writable.&lt;br /&gt;
&lt;br /&gt;
== Skeleton of a lua tag ==&lt;br /&gt;
&lt;br /&gt;
The following [lua] tag is a skeleton for a prelude enabling Lua in your WML events. It creates a table ''H'' containing the functions from helper.lua . It sets up a table ''T'' so be used for easier creation of valid WML tables. It also sets up a table ''V'' so that any access to it is redirected to the persistent WML storage. Finally, it loads a textdomain to be accessed through the ''_'' variable. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[scenario]&lt;br /&gt;
    [lua]&lt;br /&gt;
        code = &amp;lt;&amp;lt;&lt;br /&gt;
            H = wesnoth.require &amp;quot;lua/helper.lua&amp;quot;&lt;br /&gt;
            T = wml.tag&lt;br /&gt;
            V = wml.variables&lt;br /&gt;
            local _ = wesnoth.textdomain &amp;quot;my-campaign&amp;quot;&lt;br /&gt;
&lt;br /&gt;
            -- Define your global constants here.&lt;br /&gt;
            -- ...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
            -- Define your global functions here.&lt;br /&gt;
            -- ...&lt;br /&gt;
        &amp;gt;&amp;gt;&lt;br /&gt;
    [/lua]&lt;br /&gt;
    ... &lt;br /&gt;
[/scenario]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It may be worth putting the whole Lua script above inside a separate file and having the [lua] tag load it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='wml'&amp;gt;&lt;br /&gt;
[scenario]&lt;br /&gt;
    [lua]&lt;br /&gt;
        code = &amp;lt;&amp;lt; wesnoth.dofile &amp;quot;~add-ons/Whatever/file.lua&amp;quot; &amp;gt;&amp;gt;&lt;br /&gt;
    [/lua]&lt;br /&gt;
    ...&lt;br /&gt;
[/scenario]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note''': When a multiplayer scenario is hosted on the multiplayer server, separate Lua files are not transmitted over the network from the host to the peers. Therefore, it may happen that the Lua code from the separate files is executed on the host but not on the peers. This may result in out of-sync type errors. Only the Lua code that is embedded in the scenario WML, that is without wesnoth.dofile, will be transmitted and executed. To prevent these issues, the Lua files that are to be loaded with wesnoth.dofile must be distributed to the end-user explicitly.&lt;br /&gt;
&lt;br /&gt;
== Remarks on Random Numbers ==&lt;br /&gt;
&lt;br /&gt;
The math.random function is not safe for replays and multiplayer games, since the random values will be different each time and on all the clients. Instead, the Lua code should use the [[LuaAPI/mathx#mathx.random|mathx.random]] function to synchronize random values. It has the same interface as math.random but is multiplayer-safe.&lt;br /&gt;
&lt;br /&gt;
Also available is [[LuaAPI/mathx#mathx.random_choice|mathx.random_choice]], which takes the same argument in the same format as [[InternalActionsWML#.5Bset_variable.5D|[set_variable]]] rand=.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
 local random_variable = mathx.random_choice(&amp;quot;1,2,3&amp;quot;)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Random Lua table iteration ==&lt;br /&gt;
&lt;br /&gt;
Table iteration order ('''pairs''') is not strictly defined in Lua. If your code depends on the order of iteration, different clients may have different data in a multiplayer game. For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
  local table = { [&amp;quot;Mage&amp;quot;] = true, [&amp;quot;Wose&amp;quot;] = true }&lt;br /&gt;
  local concat = &amp;quot;&amp;quot;&lt;br /&gt;
  local bad_usage = next(table) -- wrong, leads to OOS&lt;br /&gt;
  for k, _ in pairs(table) do -- wrong, leads to OOS&lt;br /&gt;
    concat = concat .. k&lt;br /&gt;
  end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To avoid the problem, sort the table keys before iterating. Or alternatively, use Lua &amp;quot;arrays&amp;quot; and the '''ipairs''' function, which have a strictly defined order and never lead to OOS. Example of correct code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang='lua'&amp;gt;&lt;br /&gt;
  local array = { &amp;quot;Mage&amp;quot;, &amp;quot;Wose&amp;quot; }&lt;br /&gt;
  local good_usage = table[1] -- correct&lt;br /&gt;
  local concat = &amp;quot;&amp;quot;&lt;br /&gt;
  for _, v in ipairs(array) do -- correct&lt;br /&gt;
    concat = concat .. v&lt;br /&gt;
  end&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category: Lua Reference|*]]&lt;br /&gt;
[[Category: WML Reference]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Mainline_Campaigns&amp;diff=74266</id>
		<title>Mainline Campaigns</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Mainline_Campaigns&amp;diff=74266"/>
		<updated>2025-04-22T12:55:01Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Updated forum link for Eastern Invasion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Translations}}&lt;br /&gt;
&lt;br /&gt;
These campaigns are included in the Wesnoth distribution. Most were written by fans of the game.&lt;br /&gt;
See [[ReferenceWML]] for information on how to make your own scenarios using the Wesnoth Markup Language. The following links are very likely to contain spoilers regarding the storyline.&lt;br /&gt;
&lt;br /&gt;
== The Rise of Wesnoth ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/The_Rise_Of_Wesnoth/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Rise_Of_Wesnoth/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=388 Shade]&lt;br /&gt;
&lt;br /&gt;
Lead Prince Haldric through the distruction of the Green Isle and across the Ocean to establish the very kingdom of Wesnoth itself. The confrontation with Lich-Lord Jevyan awaits... (Hard level, 20 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[TheRiseOfWesnoth|Walkthrough]]&lt;br /&gt;
* [[TrowStoryLine|Story outline]], [[CharactersStorys#The_Rise_of_Wesnoth|Characters]], [[WesnothFigures#The_Rise_Of_Wesnoth|Biographies]], [[CampaignDialogue:TROW|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10613 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/The_Rise_of_Wesnoth.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#The_Rise_of_Wesnoth|Geographical references]], [[Timeline_of_Wesnoth#5-2_BW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Winds of Fate ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/1.14/data/core/images/portraits/drakes/inferno.png https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/core/images/portraits/drakes/inferno.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by Jonathan Kelly (name), SigurdFireDragon (based on the original by Fabi and ESR)&lt;br /&gt;
&lt;br /&gt;
As the once plentiful hunting grounds of Morogor slip below the waves, war looms between drakes driven rogue by hunger and those still honorable. Yet the winds of fate may be shifting, for inspired by legends of vast far away lands, a pack of fledgling hunters makes ready to lead their kind on a journey towards salvation. (Hard level, 11 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[Winds of Fate|Winds of Fate Walkthrough]]&lt;br /&gt;
* [https://forums.wesnoth.org/viewtopic.php?t=49140 Discussion Thread]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== An Orcish Incursion ==&lt;br /&gt;
Note: This campaign was removed in version 1.15.3 of the game.&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/An_Orcish_Incursion/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/An_Orcish_Incursion/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by Josh Parsons; adapted for mainline by ESR.&lt;br /&gt;
&lt;br /&gt;
Defend the forest of the elves against the first orcs to reach the Great Continent, learning valuable tactics as you do so. (Rookie level, 7 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[AnOrcishIncursion|Walkthrough]] &lt;br /&gt;
* [[An_Orcish_Incursion story|Story outline]], [[CharactersStorys#An_Orcish_Incursion|Characters]], [[CampaignDialogue:AOI|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20249 Discussion thread]&lt;br /&gt;
* [[Geography_of_Wesnoth#An_Orcish_Incursion|Geographical references]], [[Timeline_of_Wesnoth#8_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Legend of Wesmere ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Legend_of_Wesmere/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Legend_of_Wesmere/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by Santi; adapted for mainline by esr and fendrin&lt;br /&gt;
&lt;br /&gt;
The tale of Kalenz, the High Lord who rallied his people after the second orcish invasion of the Great Continent and became the most renowned hero in the recorded history of the elves. (Hard level, 18 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[LegendofWesmere|Walkthrough]]&lt;br /&gt;
* [[LegendofWesmereStory|Story outline]], [[CharactersStorys#Legend_of_Wesmere|Characters]], [[WesnothFigures#Legend_of_Wesmere|Biographies]], [[CampaignDialogue:LOW|Dialogue]]&lt;br /&gt;
* [//forums.wesnoth.org/viewforum.php?f=51 Discussion threads]&lt;br /&gt;
*[[Geography_of_Wesnoth#The_Legend_of_Wesmere|Geographical references]], [[Timeline_of_Wesnoth#20_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Secrets of the Ancients ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/1.16/data/campaigns/Secrets_of_the_Ancients/images/portraits/campaign-image.png https://raw.githubusercontent.com/wesnoth/wesnoth/1.16/data/campaigns/Secrets_of_the_Ancients/images/portraits/campaign-image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By [//forums.wesnoth.org/memberlist.php?mode=viewprofile&amp;amp;u=107794 beetlenaut]&lt;br /&gt;
&lt;br /&gt;
Rediscover the secrets known by the lich lords of the Green Isle. They knew how to live forever, so why can't you?&lt;br /&gt;
(Hard level, 18 scenarios.)&lt;br /&gt;
&lt;br /&gt;
*[[Secrets_of_the_Ancients_Walkthrough|Walkthrough]]&lt;br /&gt;
*[[CharactersStorys#Secrets_of_the_Ancients|Characters]], [[WesnothFigures#Secrets_of_the_Ancients|Biographies]], [[CampaignDialogue:SOTA|Dialogue]]&lt;br /&gt;
*[//forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545 Discussion Thread], [//forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=43116 Feedback Thread]&lt;br /&gt;
*[//units.wesnoth.org/trunk/mainline/en_US/Secrets%20of%20the%20Ancients.html Custom units]&lt;br /&gt;
*[[Geography_of_Wesnoth#Secrets_of_the_Ancients|Geographical references]], [[Timeline_of_Wesnoth#22-23_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Sceptre of Fire ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Sceptre_of_Fire/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Sceptre_of_Fire/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by turin&lt;br /&gt;
&lt;br /&gt;
''The mark of Wesnoth's banner bold''&lt;br /&gt;
&lt;br /&gt;
''Comes not from its own land;''&lt;br /&gt;
&lt;br /&gt;
''It comes from Dwarfdom, grim and old''&lt;br /&gt;
&lt;br /&gt;
''Made by a runesmith's hand.''&lt;br /&gt;
&lt;br /&gt;
''So now I tell from whence it came -''&lt;br /&gt;
&lt;br /&gt;
''The Fire-sceptre great -''&lt;br /&gt;
&lt;br /&gt;
''And of the makers of the same,''&lt;br /&gt;
&lt;br /&gt;
''Their tale I now relate...'' (Hard level, 10 scenarios)&lt;br /&gt;
&lt;br /&gt;
* [[Sceptre of Fire|Walkthrough]]&lt;br /&gt;
* [[Sceptre of Fire story|Story outline]], [[CharactersStorys#Sceptre_of_Fire|Characters]], [[CampaignDialogue:SOF|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20255 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Sceptre_of_Fire.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Scepter_of_Fire|Geographical references]], [[Timeline_of_Wesnoth#25-40_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== A Tale of Two Brothers ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Two_Brothers/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Two_Brothers/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=93 Circon]&lt;br /&gt;
&lt;br /&gt;
An evil mage is threatening the small village of Maghre and its inhabitants. The village's mage sends to his warrior brother for help, but not all goes as planned. Can you help? (Novice level, 4 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[ATaleOfTwoBrothers|Walkthrough]]&lt;br /&gt;
* [[A Tale Of Two Brothers Story|Story outline]], [[CharactersStorys#A_Tale_Of_Two_Brothers|Characters]], [[CampaignDialogue:TB1.9|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10339 Discussion thread]&lt;br /&gt;
* [[Geography_of_Wesnoth#A_Tale_of_Two_Brothers|Geographical references]], [[Timeline_of_Wesnoth#363_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Descent into Darkness ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Descent_Into_Darkness/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Descent_Into_Darkness/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by esci&lt;br /&gt;
&lt;br /&gt;
The northern frontier town of Parthyn is annually raided by neighbouring tribes of orcs. Malin Keshar, an outcast mage, seeks to defend his home and wreak vengeance on the orcs by any means necessary, even if it means sacrificing his own soul in the process. (Intermediate level, 10 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[DescentIntoDarkness|Walkthrough]] &lt;br /&gt;
* [[Descent Into Darkness story|Story outline]], [[CharactersStorys#Descent_into_Darkness|Characters]], [[CampaignDialogue:DID|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20251 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Descent_into_Darkness.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Descent_Into_Darkness|Geographical references]], [[Timeline_of_Wesnoth#389_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Delfador's Memoirs ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Delfadors_Memoirs/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Delfadors_Memoirs/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Wesnoth seems to be slipping inexorably into chaos, as marauding orcs pour south across the Great River, and mysterious and deadly creatures roam the night. Who is the shadowy Iliah-Malal? Can you defeat him before he destroys all life in Wesnoth? (Intermediate level, 19 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[DelfadorsMemoirs|Walkthrough]]&lt;br /&gt;
* [[DelfadorsMemoirsStory|Story outline]], [[CharactersStorys#Delfador.27s_Memoirs|Characters]], [[CampaignDialogue:DM|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=25554 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Delfadors_Memoirs.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Delfador.27s_Memoirs|Geographical references]], [[Timeline_of_Wesnoth#468_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Liberty ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Liberty/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Liberty/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by scott&lt;br /&gt;
&lt;br /&gt;
As the shadow of civil war deepens across Wesnoth, a band of hardy marchlanders revolts against the governance of the new queen. To win their way to freedom, they must learn to use shadows and deception to rout the trained blades of the Wesnothian army. (Novice level, 7 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[Liberty|Walkthrough]]&lt;br /&gt;
* [[Liberty story|Story outline]], [[CharactersStorys#Liberty|Characters]], [[CampaignDialogue:L|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20252 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Liberty.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Liberty|Geographical references]], [[Timeline_of_Wesnoth#501_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Heir to the Throne ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Heir_To_The_Throne/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=3 Dave]&lt;br /&gt;
&lt;br /&gt;
Fight to regain the throne of Wesnoth, of which you are the legitimate heir. (Novice level, 23 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[HeirToTheThrone|Walkthrough]]&lt;br /&gt;
* [[HtttStoryLine|Story outline]], [[CharactersStorys#Heir_to_the_Throne|Characters]], [[WesnothFigures#Heir_to_the_Throne|Biographies]], [[CampaignDialogue:HttT|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10322 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Heir_To_The_Throne.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Heir_To_The_Throne|Geographical references]], [[Timeline_of_Wesnoth#517_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Northern Rebirth ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Northern_Rebirth/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Northern_Rebirth/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=100782 Taurus]&lt;br /&gt;
&lt;br /&gt;
For the people of Dwarven Doors the choice was stark: either drudge as downtrodden slaves for the orcs until the end of their brief and miserable lives, or risk all for freedom and rise against their cruel overlords. Little did they suspect that their struggle would be the hinge of great events that might restore the Northlands to the glory they had once known. (Expert level, 13 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[Northern Rebirth|Walkthrough]]&lt;br /&gt;
* [[Northern Rebirth story|Story outline]] , [[CharactersStorys#Northern_Rebirth|Characters]], [[CampaignDialogue:NR|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20253 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Northern_Rebirth.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Northern_Rebirth|Geographical references]], [[Timeline_of_Wesnoth#534_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Hammer of Thursagan ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/The_Hammer_of_Thursagan/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by ESR (Eric S. Raymond)&lt;br /&gt;
&lt;br /&gt;
In the first years of the Northern Alliance, an expedition from Knalga seeks out their kin at Kal Kartha and to learn the fate of the legendary Hammer of Thursagan. The perils of their journey through the wild Northern Lands, though great, pale beside the evil they will face at its end. (Intermediate level, 8 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[TheHammerOfThursagan|Walkthrough]] &lt;br /&gt;
* [[TheHammerOfThursagan story|Story outline]], [[CharactersStorys#The_Hammer_of_Thursagan|Characters]], [[WesnothFigures#The_Hammer_Of_Thursagan|Biographies]], [[CampaignDialogue:THOT|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20258 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/The_Hammer_of_Thursagan.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#The_Hammer_of_Thursagan|Geographical references]], [[Timeline_of_Wesnoth#550_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The South Guard ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/The_South_Guard/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_South_Guard/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=872 aelius]&lt;br /&gt;
&lt;br /&gt;
A young Knight, Deoran is dispatched to the southern Wesnoth province of Kerlath to investigate the ravaged towns at the border. Thrust quickly into a hapless conflict against marauding bandits, Deoran must rally the remaining men of the derelict South Guard to defend his country. (Novice level, 8 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[TheSouthGuard|Walkthrough]]&lt;br /&gt;
* [[South Guard story|Story outline]], [[CharactersStorys#The_South_Guard|Characters]], [[CampaignDialogue:TSG|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10323 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/The_South_Guard.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#The_South_Guard|Geographical references]], [[Timeline_of_Wesnoth#607_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Eastern Invasion ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Eastern_Invasion/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=176 Turin]&lt;br /&gt;
&lt;br /&gt;
There are rumours of undead attacks on the eastern border of Wesnoth. You, an officer in the Royal Army, have been sent to the eastern front to protect the villagers and find out what is happening. (Intermediate level, 16 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[TheEasternInvasion|Walkthrough]]&lt;br /&gt;
* [[EiStoryLine|Story outline]], [[CharactersStorys#Eastern_Invasion|Characters]], [[CampaignDialogue:EI|Dialogue]]&lt;br /&gt;
* [https://forums.wesnoth.org/viewtopic.php?t=57895 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Eastern_Invasion.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Eastern_Invasion|Geographical references]], [[Timeline_of_Wesnoth#625_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Dead Water ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Dead_Water/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Dead_Water/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By [//forums.wesnoth.org/memberlist.php?mode=viewprofile&amp;amp;u=107794 beetlenaut]&lt;br /&gt;
&lt;br /&gt;
You are Kai Krellis, son and heir of the last merman king but only a child. A necromancer is turning your subjects into undead slaves! Lead your people on a mission to convince a powerful mer-sorceress to help you repel the invasion. The oceans near the Northern Lands are perilous, so you will need cunning and bravery to survive. But first you need to gain the respect of your troops!&lt;br /&gt;
(Intermediate Level, 10 scenarios.)&lt;br /&gt;
&lt;br /&gt;
*[[Dead_Water|Walkthrough]]&lt;br /&gt;
*[[CharactersStorys#Dead_Water|Characters]], [[WesnothFigures#Dead_Water|Biographies]], [[CampaignDialogue:DW|Dialogue]]&lt;br /&gt;
*[//forums.wesnoth.org/viewtopic.php?f=45&amp;amp;t=31304 Discussion Thread]&lt;br /&gt;
*[//units.wesnoth.org/trunk/mainline/en_US/Dead_Water.html Custom units]&lt;br /&gt;
*[[Geography_of_Wesnoth#Dead_Water|Geographical references]], [[Timeline_of_Wesnoth#626_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Son of the Black-Eye ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Son_Of_The_Black_Eye/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
started by Benj, completed by Taurus&lt;br /&gt;
&lt;br /&gt;
Your father Karun Black-Eye was the greatest orcish leader that ever lived. Now, as his son, it's up to you to thwart the selfish designs of the humans who have broken the old agreements with the orcs and are bent upon taking your lands. Unite the warring orcish tribes, bring together the Orcish Council and call up the Great Horde to send the human-worms and their wose-born allies to the Land of the Dead! (Expert level, 18 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[SonOfThe_BlackEye|Walkthrough]]&lt;br /&gt;
* [[Black Eye story|Story outline]], [[CharactersStorys#Son_of_the_Black_Eye|Characters]], [[WesnothFigures#Son_Of_The_Black_Eye|Biographies]], [[CampaignDialogue:SOTBE|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20257 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Son_of_the_Black-Eye.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Son_Of_The_Black_Eye|Geographical references]], [[Timeline_of_Wesnoth#842_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Under the Burning Suns ==&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Under_the_Burning_Suns/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=149 quartex]&lt;br /&gt;
&lt;br /&gt;
In the distant future a small band of elves struggles to survive amidst the ruins of fallen empires. Lead your people out of the desert on an epic journey to find a new home. (Expert level, 10 scenarios.)&lt;br /&gt;
&lt;br /&gt;
* [[UnderTheBurningSuns|Walkthrough]]&lt;br /&gt;
* [[UtBSStoryLine|Story outline]], [[CharactersStorys#Under_the_Burning_Sun|Characters]], [[CampaignDialogue:UTBS|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10491 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Under_the_Burning_Suns.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Under_The_Burning_Suns|Geographical references]], [[Timeline_of_Wesnoth#After_the_Fall|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Guide_to_UMC_Campaigns]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Review on Release]]&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:World_of_Wesnoth]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=BeginnerCampaigns&amp;diff=65102</id>
		<title>BeginnerCampaigns</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=BeginnerCampaigns&amp;diff=65102"/>
		<updated>2019-11-20T15:41:13Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Fix name of campaign&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Scenarios / Campaigns for Beginners ==&lt;br /&gt;
&lt;br /&gt;
First, beginners should take a tour through the ''tutorial'' (a mini-campaign with two scenarios),&lt;br /&gt;
to see how Wesnoth works.&lt;br /&gt;
&lt;br /&gt;
After that, these campaigns are quite short:&lt;br /&gt;
&lt;br /&gt;
=== ''An Orcish Incursion'' ===&lt;br /&gt;
&lt;br /&gt;
By Josh Parsons. This campaign is in mainline.&lt;br /&gt;
&lt;br /&gt;
A 7 scenario mini-campaign with an emphasis on strategy, with hints for beginners.&lt;br /&gt;
You play Erlornas, an Elvish noble living on the border of the great Forest of Wesmere who is the first of his people to directly encounter orcs after their arrival on the Great Continent. &lt;br /&gt;
&lt;br /&gt;
Each of the scenarios has a unique and definite winning strategy. On EASY or MEDIUM difficulty, this campaign is a good way to learn Wesnoth tactics. On HARD it can be quite a challenge.&lt;br /&gt;
&lt;br /&gt;
See: [[AnOrcishIncursion]]&lt;br /&gt;
&lt;br /&gt;
=== ''A Tale of Two Brothers'' ===&lt;br /&gt;
&lt;br /&gt;
By Circon, with contributions by Ivanovic and chrber. This campaign is in mainline.&lt;br /&gt;
&lt;br /&gt;
A campaign useful for beginners. &lt;br /&gt;
&lt;br /&gt;
See: [[ATaleOfTwoBrothers]]&lt;br /&gt;
&lt;br /&gt;
=== ''The South Guard'' ===&lt;br /&gt;
&lt;br /&gt;
By aelius. This campaign is in mainline.&lt;br /&gt;
&lt;br /&gt;
This campaign tells the story of a relatively quiet part of the Wesnoth border.&lt;br /&gt;
&lt;br /&gt;
A campaign useful for beginners.&lt;br /&gt;
&lt;br /&gt;
See: [[TheSouthGuard]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=BeginnerCampaigns&amp;diff=65101</id>
		<title>BeginnerCampaigns</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=BeginnerCampaigns&amp;diff=65101"/>
		<updated>2019-11-20T15:39:23Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Remove obsolete UMC version numbers&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Scenarios / Campaigns for Beginners ==&lt;br /&gt;
&lt;br /&gt;
First, beginners should take a tour through the ''tutorial'' (a mini-campaign with two scenarios),&lt;br /&gt;
to see how Wesnoth works.&lt;br /&gt;
&lt;br /&gt;
After that, these campaigns are quite short:&lt;br /&gt;
&lt;br /&gt;
=== ''An Orcish Incursion'' ===&lt;br /&gt;
&lt;br /&gt;
By Josh Parsons. This campaign is in mainline.&lt;br /&gt;
&lt;br /&gt;
A 7 scenario mini-campaign with an emphasis on strategy, with hints for beginners.&lt;br /&gt;
You play Erlornas, an Elvish noble living on the border of the great Forest of Wesmere who is the first of his people to directly encounter orcs after their arrival on the Great Continent. &lt;br /&gt;
&lt;br /&gt;
Each of the scenarios has a unique and definite winning strategy. On EASY or MEDIUM difficulty, this campaign is a good way to learn Wesnoth tactics. On HARD it can be quite a challenge.&lt;br /&gt;
&lt;br /&gt;
See: [[AnOrcishIncursion]]&lt;br /&gt;
&lt;br /&gt;
=== ''Two Brothers'' ===&lt;br /&gt;
&lt;br /&gt;
By Circon, with contributions by Ivanovic and chrber. This campaign is in mainline.&lt;br /&gt;
&lt;br /&gt;
A campaign useful for beginners. &lt;br /&gt;
&lt;br /&gt;
See: [[ATaleOfTwoBrothers]]&lt;br /&gt;
&lt;br /&gt;
=== ''The South Guard'' ===&lt;br /&gt;
&lt;br /&gt;
By aelius. This campaign is in mainline.&lt;br /&gt;
&lt;br /&gt;
This campaign tells the story of a relatively quiet part of the Wesnoth border.&lt;br /&gt;
&lt;br /&gt;
A campaign useful for beginners.&lt;br /&gt;
&lt;br /&gt;
See: [[TheSouthGuard]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Campaigns]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=WesnothFigures&amp;diff=65098</id>
		<title>WesnothFigures</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=WesnothFigures&amp;diff=65098"/>
		<updated>2019-11-20T03:24:07Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Fix broken image&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;tt&amp;gt;This section does not meet WesnothPedian Standards for excellence. ;)&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Historian's Notes'''&lt;br /&gt;
&lt;br /&gt;
This is a collection of short biographies of some of the most notable figures in the history of the Kingdom of Wesnoth, and the Irdyan world, as a whole.  The article is arranged by historical epoch, and the biographies within each epoch are listed in alphabetical order, using the name by which the person was most commonly referred to in the historical records.  Dates are consistent with the system of chronology used in the [[WesnothHistory|Wesnoth History]] section. The appearance of a triple question mark (???) indicates that the information needs to be verified. &lt;br /&gt;
&lt;br /&gt;
:''See also [[CharactersStorys|Character's stories]], for brief descriptions of a wider range of the inhabitants of Wesnoth and the rest of Irdya.''&lt;br /&gt;
&lt;br /&gt;
== The Rise Of Wesnoth ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Addroran''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/addroran.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: &lt;br /&gt;
** Reigned: A King in the Green Isle, baesed in Southbay.&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Defence of Southbay against the orcs.&lt;br /&gt;
** Makes a deal with [https://wiki.wesnoth.org/WesnothFigures#Jessene Jessene]that wesfolk refugees may shelter in Southbay in exchange for information. She reveals that she can translate the book that allows [http://wiki.wesnoth.org/WesnothFigures#Haldric Haldric] to use the Ruby of Fire. Secondly she knows the way to the Great Continent.&lt;br /&gt;
*Background&lt;br /&gt;
***He knew Prince Haldric as a boy, and his people that preceded him. He tells Haldric that he considered King Eldaric an honorable man.&lt;br /&gt;
***His legacy of descendents are a dead adventurer and a missing fool and as a result, his line ends with his kingdom.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Eldaric''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/eldaric.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: After the second scenery&lt;br /&gt;
** Married: &lt;br /&gt;
** Reigned: A King in the Green Isle&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Haldric''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/haldric.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 20 YW&lt;br /&gt;
** Married: Jessene&lt;br /&gt;
** Reigned: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Founded Wesnoth&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Jessene''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/jessica.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: Haldric&lt;br /&gt;
** Reigned: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Makes a deal with [https://wiki.wesnoth.org/WesnothFigures#Addoran Addoran] that wesfolk refugees may shelter in Southbay in exchange for information. She reveals that she can translate the book that allows [http://wiki.wesnoth.org/WesnothFigures#Haldric Haldric] to use the Ruby of Fire. Secondly that she knows the way to the Great Continent. She was Addoran's son's navigator and companion.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Typhon''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/typhon.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: &lt;br /&gt;
** Reigned: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Legend of Wesmere ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kalenz''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Legend_of_Wesmere/images/portraits/kalenz_young.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: [http://wiki.wesnoth.org/WesnothFigures#Cleodil Cleodil]&lt;br /&gt;
** Reigned: Unanimously chosen as ''High Lord of the Elves''. North and South Elves swore allegiance to him.&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Legend_of_Wesmere Legend of Wesmere], [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne], [http://wiki.wesnoth.org/Mainline_Campaigns#Delfadors_Memoirs Delfadors Memoirs]. Mentioned in [http://wiki.wesnoth.org/Mainline_Campaigns#Tale_Of_Two_Brothers Tale Of Two Brothers].&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Defeats [https://wiki.wesnoth.org/WesnothFigures#Landar Landar] in elven civil war.&lt;br /&gt;
**Protector and companion of [http://wiki.wesnoth.org/WesnothFigures#Konrad Konrad].&lt;br /&gt;
**Extremely long lived, even for an elf due to Aquagar's curse that he would never find lasting peace in all his years and lose his dearest.&lt;br /&gt;
* Background&lt;br /&gt;
**From the forest of Lintanir&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Cleodil''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Legend_of_Wesmere/images/portraits/cleodil.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 251 YW&lt;br /&gt;
** Married: Kalenz&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Legend_of_Wesmere Legend of Wesmere]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Guardian of the book of Crelanu.&lt;br /&gt;
** Warns Haldric II that the Ruby of fire can have evil effects on its wieldersand advises him to enclose it in a net or filigree of pure gold charged with the magic of light.&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Landar''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Legend_of_Wesmere/images/portraits/landar.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 93 YW&lt;br /&gt;
** Married:&lt;br /&gt;
** Reigned: proclaimed himself ''High Warlord of the Elves''&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Legend_of_Wesmere Legend of Wesmere]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Fought [https://wiki.wesnoth.org/WesnothFigures#Kalenz Kalenz] in an elven civil war.&lt;br /&gt;
**Died in a battle in the forest of Gitamoth.&lt;br /&gt;
**Kalenz buried Landar with full honors and made him a monument worthy of a true elvish hero.&lt;br /&gt;
**Landar’s remaining followers’ lives were spared, but they were banished to Gitamoth forest, henceforth known as Silent Forest.&lt;br /&gt;
 &lt;br /&gt;
* Background&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Delfador's Memoirs ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Leollyn''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Delfadors_Memoirs/images/portraits/leollyn.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: Killed by Sagus near the end of Delfadors Memoirs.&lt;br /&gt;
** Married:&lt;br /&gt;
** Title: Chief Mage of the High Council, Master Leollyn&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Delfadors_Memoirs Delfadors Memoirs]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Delfador was the legate and emissary of Leollyn.&lt;br /&gt;
* Background&lt;br /&gt;
**One of [https://wiki.wesnoth.org/Mainline_Campaigns#Garard_I Garard I]'s, King of Wesnoth's most trusted advisors.&lt;br /&gt;
**A friend of Methor.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Eldred''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Delfadors_Memoirs/images/portraits/eldred.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: Son of [https://wiki.wesnoth.org/WesnothFigures#Garard_II Garard II] and [http://wiki.wesnoth.org/WesnothFigures#Asheviere Asheviere]&lt;br /&gt;
** Died: Killed by [https://wiki.wesnoth.org/WesnothFigures#Delfador Delfador].&lt;br /&gt;
** Married:&lt;br /&gt;
** Title: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Delfadors_Memoirs Delfadors Memoirs]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Betrayed his father [https://wiki.wesnoth.org/WesnothFigures#Garard_II Garard II] in battle at the Ford of Abez.&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Heir to the Throne ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Asheviere''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Heir_To_The_Throne/images/portraits/asheviere.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 462 YW ???&lt;br /&gt;
** Died: 518 YW&lt;br /&gt;
** Married: King [https://wiki.wesnoth.org/WesnothFigures#Garard_II Garard II] (478 - 501 YW), Widowed&lt;br /&gt;
** Reigned:  as ''Queen consort'' 478-501; ruled Wesnoth ''de facto'' &amp;amp; (debatably) ''de jure'' as ''Queen Dowager'', &amp;amp; (theoretically) as ''Regent'' for her daughter 501-518; deposed, died in the course of her overthrow.&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Mother of Li'sar&lt;br /&gt;
** Catalyst in the deaths of King Gerard II, Prince Arand, and all male heirs within the contemporary royal family of Wesnoth (chief conspirator in all cases except for Arand, her son, with whose faction she was aligned).&lt;br /&gt;
**Highly skilled &amp;amp; cunning politician, tactician, &amp;amp; strategist.  Known in her youth for her great beauty, known in later life for her ruthlessness &amp;amp; willingness to spill (other people's) blood in pursuit of her goals.&lt;br /&gt;
**Became a popular figure in subsequent Wesnothian folklore as a villainous tyrant, responsible for the deaths of all those around her, and doomed to destruction as a result of her own paranoid, over-ambitious plotting.&lt;br /&gt;
* Background&lt;br /&gt;
&amp;quot;Perhaps it would be easier to condemn Asheviere for her evil deeds committed later in her life. Yet even rotten apples, not suitable for consumption, may provide the seeds for a fresh field of trees.&amp;quot; - ''anonymous''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Delfador''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/portraits/delfador.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 442 YW&lt;br /&gt;
** Died: 533 YW&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne], [http://wiki.wesnoth.org/Mainline_Campaigns#Delfador.27s_Memoirs Delfador's Memoirs]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Defeats Iliah Malal.&lt;br /&gt;
** Killer of Prince Eldred.&lt;br /&gt;
** Protector of Konrad.&lt;br /&gt;
* Background&lt;br /&gt;
[ insert text here ]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Konrad''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/portraits/konrad-human.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 500 YW&lt;br /&gt;
** Died: 563 YW&lt;br /&gt;
** Married: Li'sar (~520 - 563 YW) &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne]&lt;br /&gt;
* Notable Deeds &lt;br /&gt;
** Recovered the Scepter of Fire with Li'sar's assistance.&lt;br /&gt;
** ''King consort'' of Wesnoth after the defeat of Asheviere (through marriage to Li'sar).&lt;br /&gt;
* Background Information&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Identity curses men from birth, as does fate. Konrad, forgive me for the burdens which I shoulder you with. I pray that you will wear them as a badge on your heart, not a stone around your neck.&amp;quot; - ''Delfador, at the coronation of Li'sar &amp;amp; Konrad''&lt;br /&gt;
&lt;br /&gt;
Had Parandra of Elvendom not been as prudent and as benevolent, the tale of the boy who became Konrad, King of Wesnoth would never have been sung in the minstrel's tunes. Konrad never knew his real parents; he was found by Elves, as an infant, abandoned in a copse a few strides off an Elvish trader's path. Parandra the wise, knowing the baby had been there for some time, (as evidenced by certain smells emanating from the child's swaddling clothes) set aside all hope of reuniting him with his unknown parents. She picked up the orphaned child and took him as her own.&lt;br /&gt;
&lt;br /&gt;
Delfador arrived sometime thereafter, bearing the grim evidence of his failed rescue; the lifeless body of the murdered infant-Prince Konrad. Parandra and Delfador discussed the situation at length, including the co-incidental discovery of the other, nameless child. Both of them shared their worries that this plan, this trick, wouldn't work.  However, staring down at the foundling in his new crib, touched by his liveliness and cheer, they agreed to give him and the people of Wesnoth, a chance.&lt;br /&gt;
&lt;br /&gt;
That night, while the corpse of one child was laid to rest in the green woods, another child, the boy abandoned &amp;amp; left for dead, was given a new destiny as the fugitive Konrad, Prince &amp;amp; Heir to the throne of Wesnoth.&lt;br /&gt;
&lt;br /&gt;
Delfador raised Konrad as his son, yet never pretended to be his father. Konrad grew up knowing only the life that Delfador created for him. Delfador trained him as a warrior and leader. Each new lesson gave way to another for the precocious student.&lt;br /&gt;
&lt;br /&gt;
During his seventeenth year with Delfador, Konrad and his mentor fled the land of the elves during an attack led by Asheviere.&lt;br /&gt;
&lt;br /&gt;
Konrad's life during these times is chronicled in the [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne '''Heir to the Throne'''] campaign.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Li'sar''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/portraits/lisar.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 498 YW&lt;br /&gt;
** Died: 563 YW&lt;br /&gt;
** Child of Gerald II &amp;amp; Asheviere, only surviving member of the royal family after the death of Asheviere&lt;br /&gt;
** Married: Konrad (~520 - 563 YW)&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne]&lt;br /&gt;
* Notable as&lt;br /&gt;
** Successor to the throne of Wesnoth (only legitimate claimant), became ''Queen Regnant'' after the defeat of Asheviere.&lt;br /&gt;
** Respected as a skilled military commander within the armed forces of Wesnoth, prior to becoming Queen&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
[ Insert background here ]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Hammer Of Thursagan ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;'' Aiglondur''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/portraits/aiglondur.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born:&lt;br /&gt;
** Died:&lt;br /&gt;
** Married:&lt;br /&gt;
**Reigned: Became lord of Kal Kartha after Karrag's downfall. Early [https://wiki.wesnoth.org/Timeline_of_Wesnoth#550 551] YW&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Hammer_of_Thursagan The Hammer Of Thursagan]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Defeat of Karrag&lt;br /&gt;
*Background&lt;br /&gt;
**Great-nephew of Lord Hamel and Guard Captain of the east gate of Knalga.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;'' Karrag''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/portraits/karrag.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born:&lt;br /&gt;
** Died: At the hands of Aiglondur's forces in the underlevels of Kal Kartha. [https://wiki.wesnoth.org/Timeline_of_Wesnoth#550 551] YW&lt;br /&gt;
** Married:&lt;br /&gt;
**Reigned: Lord of Kal Kartha until early [https://wiki.wesnoth.org/Timeline_of_Wesnoth#550 551] YW&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Hammer_of_Thursagan The Hammer Of Thursagan]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Became a lich&lt;br /&gt;
**Launched fiercely xenophobic war against other races&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;'' Hamel''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/portraits/hamel.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born:&lt;br /&gt;
** Died: &lt;br /&gt;
** Married:&lt;br /&gt;
**Reigned: Lord of Knalga, Lord Companion of the Northern Alliance&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Northern_Rebirth Northern Rebirth], [https://wiki.wesnoth.org/Mainline_Campaigns#The_Hammer_of_Thursagan The Hammer Of Thursagan]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Eastern Invasion ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Gweddry''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/gweddry.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 605 YW ???&lt;br /&gt;
** Died: 655 YW ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** At the sight of their new born boy, Gweddry's parents decided to name him after a close friend who fell under Gweddry's father's command. [https://www.wesnoth.org/forum/viewtopic.php?t=15716&amp;amp;start=16]&lt;br /&gt;
** Sent by Konrad II with Dacyn and Owaec to man the old River Guard strongpoints. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#625 625 YW)])&lt;br /&gt;
** Gweddry breaks through Mal-Ravanal's Undead armies lines to reach WeldynGweddry's army kills Mal-Ravanal. Wesnoth is saved. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#627 627 YW)])&lt;br /&gt;
** Gweddry is made Grand Marshal of the Wesnothian Army after he saved Weldyn from destruction. [https://www.wesnoth.org/forum/viewtopic.php?t=15716&amp;amp;start=16]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Dacyn''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/dacyn.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 533 YW&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Dacyn successfully competed with Ravanal, an eastern wizard, to becomw the king's advisor. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#589 589YW])&lt;br /&gt;
** Advisor to Haldric VII then Konrad II after Haldric's death. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#612 612YW])&lt;br /&gt;
** The journey outlined in [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#625 625 YW]- [https://wiki.wesnoth.org/Timeline_of_Wesnoth#628 628 YW])&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Owaec''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/owaec.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
* Background&lt;br /&gt;
** A horse clan noble with loyalty to the Wesnoth crown&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Konrad II''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/konrad_II.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 673&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**King of Wesnoth&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Mal Ravanal''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/mal-ravanal.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Dead Water==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kai Krellis''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Dead_Water/images/portraits/kai_krellis2.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Dead_Water Dead Water]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Evacuates Jotha under threat of Mal-Ravanal's undead onslaught.&lt;br /&gt;
** Defeats suarian slavers and freed their prisoners.&lt;br /&gt;
** Gains support of Tyegëa, high priestess.&lt;br /&gt;
** Reconquers merfolk city Jotha from undead.&lt;br /&gt;
*Background&lt;br /&gt;
**Grandson of high priestess, Tyegëa.&lt;br /&gt;
**His father, Kai Laudiss, and mother die at the hands of orcs from the city of Tirigaz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Son Of The Black Eye ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kapou'e''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/portraits/kapoue-angry.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Son_of_the_Black_Eye Son of the Black Eye]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Leader of the Great Horde&lt;br /&gt;
** Made a mug from his rival, Shan Taum's skull&lt;br /&gt;
** Made Barag Gor his capital as Orcish Sovereign&lt;br /&gt;
* Background&lt;br /&gt;
**Son of the orc leader, Black Eye Karun&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Earl Lanbec'h''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/portraits/lanbech.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Son_of_the_Black_Eye Son of the Black Eye]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Launched invasion of orc lands determined to extinguish the orc menace.&lt;br /&gt;
* Background&lt;br /&gt;
**The most powerful human warlord of the North&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Howgarth III''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/portraits/howgarth.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Son_of_the_Black_Eye Son of the Black Eye]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Issued an invitation to Kapou'e to join the Northern Alliance. Kapou'e declined.&lt;br /&gt;
* Background&lt;br /&gt;
**Sucessor to Rahul I as Lord Protector of the Northern Alliance&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Under the Burning Suns ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kaleh''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/portraits/kaleh.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: in post Wesnothian times&lt;br /&gt;
** Died: still alive at the end of UtBS&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): Under the Burning Suns&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Leader of the Quenoth elves&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
Kaleh, as happens to some great leaders, fell into the job of leading the remnants of the Quenoth elves. The once great town of these sand dwelling elves was decimated over night by meteorites. Their leader slain, the remaining elves looked up to Kaleh for guidance as he was the next in line.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Nym''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/portraits/nym.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: in post Wesnothian times&lt;br /&gt;
** Died: unknown&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): Under the Burning Suns&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Sidekick of Kaleh on the great journey of the Quenoth elves.&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
[insert details here]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Zhul''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/portraits/zhul.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: in post Wesnothian times&lt;br /&gt;
** Died: unknown&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): Under the Burning Suns&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Head priestess of the Quenoth elves.&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
[insert details here]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:World of Wesnoth]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=WesnothFigures&amp;diff=65097</id>
		<title>WesnothFigures</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=WesnothFigures&amp;diff=65097"/>
		<updated>2019-11-20T03:22:31Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Fix broken image&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;tt&amp;gt;This section does not meet WesnothPedian Standards for excellence. ;)&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Historian's Notes'''&lt;br /&gt;
&lt;br /&gt;
This is a collection of short biographies of some of the most notable figures in the history of the Kingdom of Wesnoth, and the Irdyan world, as a whole.  The article is arranged by historical epoch, and the biographies within each epoch are listed in alphabetical order, using the name by which the person was most commonly referred to in the historical records.  Dates are consistent with the system of chronology used in the [[WesnothHistory|Wesnoth History]] section. The appearance of a triple question mark (???) indicates that the information needs to be verified. &lt;br /&gt;
&lt;br /&gt;
:''See also [[CharactersStorys|Character's stories]], for brief descriptions of a wider range of the inhabitants of Wesnoth and the rest of Irdya.''&lt;br /&gt;
&lt;br /&gt;
== The Rise Of Wesnoth ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Addroran''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/addroran.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: &lt;br /&gt;
** Reigned: A King in the Green Isle, baesed in Southbay.&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Defence of Southbay against the orcs.&lt;br /&gt;
** Makes a deal with [https://wiki.wesnoth.org/WesnothFigures#Jessene Jessene]that wesfolk refugees may shelter in Southbay in exchange for information. She reveals that she can translate the book that allows [http://wiki.wesnoth.org/WesnothFigures#Haldric Haldric] to use the Ruby of Fire. Secondly she knows the way to the Great Continent.&lt;br /&gt;
*Background&lt;br /&gt;
***He knew Prince Haldric as a boy, and his people that preceded him. He tells Haldric that he considered King Eldaric an honorable man.&lt;br /&gt;
***His legacy of descendents are a dead adventurer and a missing fool and as a result, his line ends with his kingdom.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Eldaric''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/eldaric.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: After the second scenery&lt;br /&gt;
** Married: &lt;br /&gt;
** Reigned: A King in the Green Isle&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Haldric''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/haldric.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 20 YW&lt;br /&gt;
** Married: Jessene&lt;br /&gt;
** Reigned: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Founded Wesnoth&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Jessene''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/jessica.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: Haldric&lt;br /&gt;
** Reigned: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Makes a deal with [https://wiki.wesnoth.org/WesnothFigures#Addoran Addoran] that wesfolk refugees may shelter in Southbay in exchange for information. She reveals that she can translate the book that allows [http://wiki.wesnoth.org/WesnothFigures#Haldric Haldric] to use the Ruby of Fire. Secondly that she knows the way to the Great Continent. She was Addoran's son's navigator and companion.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Typhon''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/typhon.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: &lt;br /&gt;
** Reigned: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Legend of Wesmere ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kalenz''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Legend_of_Wesmere/images/portraits/kalenz_young.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: [http://wiki.wesnoth.org/WesnothFigures#Cleodil Cleodil]&lt;br /&gt;
** Reigned: Unanimously chosen as ''High Lord of the Elves''. North and South Elves swore allegiance to him.&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Legend_of_Wesmere Legend of Wesmere], [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne], [http://wiki.wesnoth.org/Mainline_Campaigns#Delfadors_Memoirs Delfadors Memoirs]. Mentioned in [http://wiki.wesnoth.org/Mainline_Campaigns#Tale_Of_Two_Brothers Tale Of Two Brothers].&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Defeats [https://wiki.wesnoth.org/WesnothFigures#Landar Landar] in elven civil war.&lt;br /&gt;
**Protector and companion of [http://wiki.wesnoth.org/WesnothFigures#Konrad Konrad].&lt;br /&gt;
**Extremely long lived, even for an elf due to Aquagar's curse that he would never find lasting peace in all his years and lose his dearest.&lt;br /&gt;
* Background&lt;br /&gt;
**From the forest of Lintanir&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Cleodil''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Legend_of_Wesmere/images/portraits/cleodil.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 251 YW&lt;br /&gt;
** Married: Kalenz&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Legend_of_Wesmere Legend of Wesmere]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Guardian of the book of Crelanu.&lt;br /&gt;
** Warns Haldric II that the Ruby of fire can have evil effects on its wieldersand advises him to enclose it in a net or filigree of pure gold charged with the magic of light.&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Landar''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Legend_of_Wesmere/images/portraits/landar.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 93 YW&lt;br /&gt;
** Married:&lt;br /&gt;
** Reigned: proclaimed himself ''High Warlord of the Elves''&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Legend_of_Wesmere Legend of Wesmere]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Fought [https://wiki.wesnoth.org/WesnothFigures#Kalenz Kalenz] in an elven civil war.&lt;br /&gt;
**Died in a battle in the forest of Gitamoth.&lt;br /&gt;
**Kalenz buried Landar with full honors and made him a monument worthy of a true elvish hero.&lt;br /&gt;
**Landar’s remaining followers’ lives were spared, but they were banished to Gitamoth forest, henceforth known as Silent Forest.&lt;br /&gt;
 &lt;br /&gt;
* Background&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Delfador's Memoirs ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Leollyn''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Delfadors_Memoirs/images/portraits/leollyn.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: Killed by Sagus near the end of Delfadors Memoirs.&lt;br /&gt;
** Married:&lt;br /&gt;
** Title: Chief Mage of the High Council, Master Leollyn&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Delfadors_Memoirs Delfadors Memoirs]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Delfador was the legate and emissary of Leollyn.&lt;br /&gt;
* Background&lt;br /&gt;
**One of [https://wiki.wesnoth.org/Mainline_Campaigns#Garard_I Garard I]'s, King of Wesnoth's most trusted advisors.&lt;br /&gt;
**A friend of Methor.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Eldred''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Delfadors_Memoirs/images/portraits/eldred.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: Son of [https://wiki.wesnoth.org/WesnothFigures#Garard_II Garard II] and [http://wiki.wesnoth.org/WesnothFigures#Asheviere Asheviere]&lt;br /&gt;
** Died: Killed by [https://wiki.wesnoth.org/WesnothFigures#Delfador Delfador].&lt;br /&gt;
** Married:&lt;br /&gt;
** Title: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Delfadors_Memoirs Delfadors Memoirs]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Betrayed his father [https://wiki.wesnoth.org/WesnothFigures#Garard_II Garard II] in battle at the Ford of Abez.&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Heir to the Throne ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Asheviere''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Heir_To_The_Throne/images/portraits/asheviere.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 462 YW ???&lt;br /&gt;
** Died: 518 YW&lt;br /&gt;
** Married: King [https://wiki.wesnoth.org/WesnothFigures#Garard_II Garard II] (478 - 501 YW), Widowed&lt;br /&gt;
** Reigned:  as ''Queen consort'' 478-501; ruled Wesnoth ''de facto'' &amp;amp; (debatably) ''de jure'' as ''Queen Dowager'', &amp;amp; (theoretically) as ''Regent'' for her daughter 501-518; deposed, died in the course of her overthrow.&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Mother of Li'sar&lt;br /&gt;
** Catalyst in the deaths of King Gerard II, Prince Arand, and all male heirs within the contemporary royal family of Wesnoth (chief conspirator in all cases except for Arand, her son, with whose faction she was aligned).&lt;br /&gt;
**Highly skilled &amp;amp; cunning politician, tactician, &amp;amp; strategist.  Known in her youth for her great beauty, known in later life for her ruthlessness &amp;amp; willingness to spill (other people's) blood in pursuit of her goals.&lt;br /&gt;
**Became a popular figure in subsequent Wesnothian folklore as a villainous tyrant, responsible for the deaths of all those around her, and doomed to destruction as a result of her own paranoid, over-ambitious plotting.&lt;br /&gt;
* Background&lt;br /&gt;
&amp;quot;Perhaps it would be easier to condemn Asheviere for her evil deeds committed later in her life. Yet even rotten apples, not suitable for consumption, may provide the seeds for a fresh field of trees.&amp;quot; - ''anonymous''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Delfador''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/portraits/delfador.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 442 YW&lt;br /&gt;
** Died: 533 YW&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne], [http://wiki.wesnoth.org/Mainline_Campaigns#Delfador.27s_Memoirs Delfador's Memoirs]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Defeats Iliah Malal.&lt;br /&gt;
** Killer of Prince Eldred.&lt;br /&gt;
** Protector of Konrad.&lt;br /&gt;
* Background&lt;br /&gt;
[ insert text here ]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Konrad''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/portraits/konrad-human.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 500 YW&lt;br /&gt;
** Died: 563 YW&lt;br /&gt;
** Married: Li'sar (~520 - 563 YW) &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne]&lt;br /&gt;
* Notable Deeds &lt;br /&gt;
** Recovered the Scepter of Fire with Li'sar's assistance.&lt;br /&gt;
** ''King consort'' of Wesnoth after the defeat of Asheviere (through marriage to Li'sar).&lt;br /&gt;
* Background Information&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Identity curses men from birth, as does fate. Konrad, forgive me for the burdens which I shoulder you with. I pray that you will wear them as a badge on your heart, not a stone around your neck.&amp;quot; - ''Delfador, at the coronation of Li'sar &amp;amp; Konrad''&lt;br /&gt;
&lt;br /&gt;
Had Parandra of Elvendom not been as prudent and as benevolent, the tale of the boy who became Konrad, King of Wesnoth would never have been sung in the minstrel's tunes. Konrad never knew his real parents; he was found by Elves, as an infant, abandoned in a copse a few strides off an Elvish trader's path. Parandra the wise, knowing the baby had been there for some time, (as evidenced by certain smells emanating from the child's swaddling clothes) set aside all hope of reuniting him with his unknown parents. She picked up the orphaned child and took him as her own.&lt;br /&gt;
&lt;br /&gt;
Delfador arrived sometime thereafter, bearing the grim evidence of his failed rescue; the lifeless body of the murdered infant-Prince Konrad. Parandra and Delfador discussed the situation at length, including the co-incidental discovery of the other, nameless child. Both of them shared their worries that this plan, this trick, wouldn't work.  However, staring down at the foundling in his new crib, touched by his liveliness and cheer, they agreed to give him and the people of Wesnoth, a chance.&lt;br /&gt;
&lt;br /&gt;
That night, while the corpse of one child was laid to rest in the green woods, another child, the boy abandoned &amp;amp; left for dead, was given a new destiny as the fugitive Konrad, Prince &amp;amp; Heir to the throne of Wesnoth.&lt;br /&gt;
&lt;br /&gt;
Delfador raised Konrad as his son, yet never pretended to be his father. Konrad grew up knowing only the life that Delfador created for him. Delfador trained him as a warrior and leader. Each new lesson gave way to another for the precocious student.&lt;br /&gt;
&lt;br /&gt;
During his seventeenth year with Delfador, Konrad and his mentor fled the land of the elves during an attack led by Asheviere.&lt;br /&gt;
&lt;br /&gt;
Konrad's life during these times is chronicled in the [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne '''Heir to the Throne'''] campaign.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Li'sar''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/portraits/lisar.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 498 YW&lt;br /&gt;
** Died: 563 YW&lt;br /&gt;
** Child of Gerald II &amp;amp; Asheviere, only surviving member of the royal family after the death of Asheviere&lt;br /&gt;
** Married: Konrad (~520 - 563 YW)&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne]&lt;br /&gt;
* Notable as&lt;br /&gt;
** Successor to the throne of Wesnoth (only legitimate claimant), became ''Queen Regnant'' after the defeat of Asheviere.&lt;br /&gt;
** Respected as a skilled military commander within the armed forces of Wesnoth, prior to becoming Queen&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
[ Insert background here ]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Hammer Of Thursagan ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;'' Aiglondur''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/portraits/aiglondur.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born:&lt;br /&gt;
** Died:&lt;br /&gt;
** Married:&lt;br /&gt;
**Reigned: Became lord of Kal Kartha after Karrag's downfall. Early [https://wiki.wesnoth.org/Timeline_of_Wesnoth#550 551] YW&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Hammer_of_Thursagan The Hammer Of Thursagan]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Defeat of Karrag&lt;br /&gt;
*Background&lt;br /&gt;
**Great-nephew of Lord Hamel and Guard Captain of the east gate of Knalga.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;'' Karrag''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/portraits/karrag.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born:&lt;br /&gt;
** Died: At the hands of Aiglondur's forces in the underlevels of Kal Kartha. [https://wiki.wesnoth.org/Timeline_of_Wesnoth#550 551] YW&lt;br /&gt;
** Married:&lt;br /&gt;
**Reigned: Lord of Kal Kartha until early [https://wiki.wesnoth.org/Timeline_of_Wesnoth#550 551] YW&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Hammer_of_Thursagan The Hammer Of Thursagan]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Became a lich&lt;br /&gt;
**Launched fiercely xenophobic war against other races&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;'' Hamel''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/portraits/hamel.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born:&lt;br /&gt;
** Died: &lt;br /&gt;
** Married:&lt;br /&gt;
**Reigned: Lord of Knalga, Lord Companion of the Northern Alliance&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Northern_Rebirth Northern Rebirth], [https://wiki.wesnoth.org/Mainline_Campaigns#The_Hammer_of_Thursagan The Hammer Of Thursagan]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Eastern Invasion ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Gweddry''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/gweddry.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 605 YW ???&lt;br /&gt;
** Died: 655 YW ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** At the sight of their new born boy, Gweddry's parents decided to name him after a close friend who fell under Gweddry's father's command. [https://www.wesnoth.org/forum/viewtopic.php?t=15716&amp;amp;start=16]&lt;br /&gt;
** Sent by Konrad II with Dacyn and Owaec to man the old River Guard strongpoints. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#625 625 YW)])&lt;br /&gt;
** Gweddry breaks through Mal-Ravanal's Undead armies lines to reach WeldynGweddry's army kills Mal-Ravanal. Wesnoth is saved. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#627 627 YW)])&lt;br /&gt;
** Gweddry is made Grand Marshal of the Wesnothian Army after he saved Weldyn from destruction. [https://www.wesnoth.org/forum/viewtopic.php?t=15716&amp;amp;start=16]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Dacyn''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/dacyn.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 533 YW&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Dacyn successfully competed with Ravanal, an eastern wizard, to becomw the king's advisor. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#589 589YW])&lt;br /&gt;
** Advisor to Haldric VII then Konrad II after Haldric's death. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#612 612YW])&lt;br /&gt;
** The journey outlined in [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#625 625 YW]- [https://wiki.wesnoth.org/Timeline_of_Wesnoth#628 628 YW])&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Owaec''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/owaec.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
* Background&lt;br /&gt;
** A horse clan noble with loyalty to the Wesnoth crown&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Konrad II''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/konrad_II.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 673&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**King of Wesnoth&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Mal Ravanal''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/mal-ravanal.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Dead Water==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kai Krellis''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Dead_Water/images/portraits/transparent/kai_krellis2.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Dead_Water Dead Water]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Evacuates Jotha under threat of Mal-Ravanal's undead onslaught.&lt;br /&gt;
** Defeats suarian slavers and freed their prisoners.&lt;br /&gt;
** Gains support of Tyegëa, high priestess.&lt;br /&gt;
** Reconquers merfolk city Jotha from undead.&lt;br /&gt;
*Background&lt;br /&gt;
**Grandson of high priestess, Tyegëa.&lt;br /&gt;
**His father, Kai Laudiss, and mother die at the hands of orcs from the city of Tirigaz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Son Of The Black Eye ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kapou'e''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/portraits/kapoue-angry.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Son_of_the_Black_Eye Son of the Black Eye]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Leader of the Great Horde&lt;br /&gt;
** Made a mug from his rival, Shan Taum's skull&lt;br /&gt;
** Made Barag Gor his capital as Orcish Sovereign&lt;br /&gt;
* Background&lt;br /&gt;
**Son of the orc leader, Black Eye Karun&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Earl Lanbec'h''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/portraits/lanbech.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Son_of_the_Black_Eye Son of the Black Eye]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Launched invasion of orc lands determined to extinguish the orc menace.&lt;br /&gt;
* Background&lt;br /&gt;
**The most powerful human warlord of the North&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Howgarth III''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/portraits/howgarth.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Son_of_the_Black_Eye Son of the Black Eye]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Issued an invitation to Kapou'e to join the Northern Alliance. Kapou'e declined.&lt;br /&gt;
* Background&lt;br /&gt;
**Sucessor to Rahul I as Lord Protector of the Northern Alliance&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Under the Burning Suns ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kaleh''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/portraits/kaleh.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: in post Wesnothian times&lt;br /&gt;
** Died: still alive at the end of UtBS&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): Under the Burning Suns&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Leader of the Quenoth elves&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
Kaleh, as happens to some great leaders, fell into the job of leading the remnants of the Quenoth elves. The once great town of these sand dwelling elves was decimated over night by meteorites. Their leader slain, the remaining elves looked up to Kaleh for guidance as he was the next in line.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Nym''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/portraits/nym.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: in post Wesnothian times&lt;br /&gt;
** Died: unknown&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): Under the Burning Suns&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Sidekick of Kaleh on the great journey of the Quenoth elves.&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
[insert details here]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Zhul''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/portraits/zhul.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: in post Wesnothian times&lt;br /&gt;
** Died: unknown&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): Under the Burning Suns&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Head priestess of the Quenoth elves.&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
[insert details here]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:World of Wesnoth]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=WesnothFigures&amp;diff=65096</id>
		<title>WesnothFigures</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=WesnothFigures&amp;diff=65096"/>
		<updated>2019-11-20T03:18:13Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Clear floats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;tt&amp;gt;This section does not meet WesnothPedian Standards for excellence. ;)&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Historian's Notes'''&lt;br /&gt;
&lt;br /&gt;
This is a collection of short biographies of some of the most notable figures in the history of the Kingdom of Wesnoth, and the Irdyan world, as a whole.  The article is arranged by historical epoch, and the biographies within each epoch are listed in alphabetical order, using the name by which the person was most commonly referred to in the historical records.  Dates are consistent with the system of chronology used in the [[WesnothHistory|Wesnoth History]] section. The appearance of a triple question mark (???) indicates that the information needs to be verified. &lt;br /&gt;
&lt;br /&gt;
:''See also [[CharactersStorys|Character's stories]], for brief descriptions of a wider range of the inhabitants of Wesnoth and the rest of Irdya.''&lt;br /&gt;
&lt;br /&gt;
== The Rise Of Wesnoth ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Addroran''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/addroran.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: &lt;br /&gt;
** Reigned: A King in the Green Isle, baesed in Southbay.&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Defence of Southbay against the orcs.&lt;br /&gt;
** Makes a deal with [https://wiki.wesnoth.org/WesnothFigures#Jessene Jessene]that wesfolk refugees may shelter in Southbay in exchange for information. She reveals that she can translate the book that allows [http://wiki.wesnoth.org/WesnothFigures#Haldric Haldric] to use the Ruby of Fire. Secondly she knows the way to the Great Continent.&lt;br /&gt;
*Background&lt;br /&gt;
***He knew Prince Haldric as a boy, and his people that preceded him. He tells Haldric that he considered King Eldaric an honorable man.&lt;br /&gt;
***His legacy of descendents are a dead adventurer and a missing fool and as a result, his line ends with his kingdom.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Eldaric''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/eldaric.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: After the second scenery&lt;br /&gt;
** Married: &lt;br /&gt;
** Reigned: A King in the Green Isle&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Haldric''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/haldric.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 20 YW&lt;br /&gt;
** Married: Jessene&lt;br /&gt;
** Reigned: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Founded Wesnoth&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Jessene''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/jessica.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: Haldric&lt;br /&gt;
** Reigned: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Makes a deal with [https://wiki.wesnoth.org/WesnothFigures#Addoran Addoran] that wesfolk refugees may shelter in Southbay in exchange for information. She reveals that she can translate the book that allows [http://wiki.wesnoth.org/WesnothFigures#Haldric Haldric] to use the Ruby of Fire. Secondly that she knows the way to the Great Continent. She was Addoran's son's navigator and companion.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Typhon''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/typhon.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: &lt;br /&gt;
** Reigned: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Rise_of_Wesnoth The Rise of Wesnoth]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Legend of Wesmere ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kalenz''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Legend_of_Wesmere/images/portraits/kalenz_young.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: [http://wiki.wesnoth.org/WesnothFigures#Cleodil Cleodil]&lt;br /&gt;
** Reigned: Unanimously chosen as ''High Lord of the Elves''. North and South Elves swore allegiance to him.&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Legend_of_Wesmere Legend of Wesmere], [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne], [http://wiki.wesnoth.org/Mainline_Campaigns#Delfadors_Memoirs Delfadors Memoirs]. Mentioned in [http://wiki.wesnoth.org/Mainline_Campaigns#Tale_Of_Two_Brothers Tale Of Two Brothers].&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Defeats [https://wiki.wesnoth.org/WesnothFigures#Landar Landar] in elven civil war.&lt;br /&gt;
**Protector and companion of [http://wiki.wesnoth.org/WesnothFigures#Konrad Konrad].&lt;br /&gt;
**Extremely long lived, even for an elf due to Aquagar's curse that he would never find lasting peace in all his years and lose his dearest.&lt;br /&gt;
* Background&lt;br /&gt;
**From the forest of Lintanir&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Cleodil''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Legend_of_Wesmere/images/portraits/cleodil.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 251 YW&lt;br /&gt;
** Married: Kalenz&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Legend_of_Wesmere Legend of Wesmere]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Guardian of the book of Crelanu.&lt;br /&gt;
** Warns Haldric II that the Ruby of fire can have evil effects on its wieldersand advises him to enclose it in a net or filigree of pure gold charged with the magic of light.&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Landar''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Legend_of_Wesmere/images/portraits/landar.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 93 YW&lt;br /&gt;
** Married:&lt;br /&gt;
** Reigned: proclaimed himself ''High Warlord of the Elves''&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Legend_of_Wesmere Legend of Wesmere]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Fought [https://wiki.wesnoth.org/WesnothFigures#Kalenz Kalenz] in an elven civil war.&lt;br /&gt;
**Died in a battle in the forest of Gitamoth.&lt;br /&gt;
**Kalenz buried Landar with full honors and made him a monument worthy of a true elvish hero.&lt;br /&gt;
**Landar’s remaining followers’ lives were spared, but they were banished to Gitamoth forest, henceforth known as Silent Forest.&lt;br /&gt;
 &lt;br /&gt;
* Background&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Delfador's Memoirs ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Leollyn''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Delfadors_Memoirs/images/portraits/leollyn.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: Killed by Sagus near the end of Delfadors Memoirs.&lt;br /&gt;
** Married:&lt;br /&gt;
** Title: Chief Mage of the High Council, Master Leollyn&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Delfadors_Memoirs Delfadors Memoirs]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Delfador was the legate and emissary of Leollyn.&lt;br /&gt;
* Background&lt;br /&gt;
**One of [https://wiki.wesnoth.org/Mainline_Campaigns#Garard_I Garard I]'s, King of Wesnoth's most trusted advisors.&lt;br /&gt;
**A friend of Methor.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Eldred''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Delfadors_Memoirs/images/portraits/eldred.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: Son of [https://wiki.wesnoth.org/WesnothFigures#Garard_II Garard II] and [http://wiki.wesnoth.org/WesnothFigures#Asheviere Asheviere]&lt;br /&gt;
** Died: Killed by [https://wiki.wesnoth.org/WesnothFigures#Delfador Delfador].&lt;br /&gt;
** Married:&lt;br /&gt;
** Title: &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Delfadors_Memoirs Delfadors Memoirs]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Betrayed his father [https://wiki.wesnoth.org/WesnothFigures#Garard_II Garard II] in battle at the Ford of Abez.&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Heir to the Throne ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Asheviere''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/1.14/data/campaigns/Heir_To_The_Throne/images/portraits/asheviere.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 462 YW ???&lt;br /&gt;
** Died: 518 YW&lt;br /&gt;
** Married: King [https://wiki.wesnoth.org/WesnothFigures#Garard_II Garard II] (478 - 501 YW), Widowed&lt;br /&gt;
** Reigned:  as ''Queen consort'' 478-501; ruled Wesnoth ''de facto'' &amp;amp; (debatably) ''de jure'' as ''Queen Dowager'', &amp;amp; (theoretically) as ''Regent'' for her daughter 501-518; deposed, died in the course of her overthrow.&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Mother of Li'sar&lt;br /&gt;
** Catalyst in the deaths of King Gerard II, Prince Arand, and all male heirs within the contemporary royal family of Wesnoth (chief conspirator in all cases except for Arand, her son, with whose faction she was aligned).&lt;br /&gt;
**Highly skilled &amp;amp; cunning politician, tactician, &amp;amp; strategist.  Known in her youth for her great beauty, known in later life for her ruthlessness &amp;amp; willingness to spill (other people's) blood in pursuit of her goals.&lt;br /&gt;
**Became a popular figure in subsequent Wesnothian folklore as a villainous tyrant, responsible for the deaths of all those around her, and doomed to destruction as a result of her own paranoid, over-ambitious plotting.&lt;br /&gt;
* Background&lt;br /&gt;
&amp;quot;Perhaps it would be easier to condemn Asheviere for her evil deeds committed later in her life. Yet even rotten apples, not suitable for consumption, may provide the seeds for a fresh field of trees.&amp;quot; - ''anonymous''&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Delfador''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/portraits/delfador.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 442 YW&lt;br /&gt;
** Died: 533 YW&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne], [http://wiki.wesnoth.org/Mainline_Campaigns#Delfador.27s_Memoirs Delfador's Memoirs]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Defeats Iliah Malal.&lt;br /&gt;
** Killer of Prince Eldred.&lt;br /&gt;
** Protector of Konrad.&lt;br /&gt;
* Background&lt;br /&gt;
[ insert text here ]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Konrad''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/portraits/konrad.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 500 YW&lt;br /&gt;
** Died: 563 YW&lt;br /&gt;
** Married: Li'sar (~520 - 563 YW) &lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne]&lt;br /&gt;
* Notable Deeds &lt;br /&gt;
** Recovered the Scepter of Fire with Li'sar's assistance.&lt;br /&gt;
** ''King consort'' of Wesnoth after the defeat of Asheviere (through marriage to Li'sar).&lt;br /&gt;
* Background Information&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Identity curses men from birth, as does fate. Konrad, forgive me for the burdens which I shoulder you with. I pray that you will wear them as a badge on your heart, not a stone around your neck.&amp;quot; - ''Delfador, at the coronation of Li'sar &amp;amp; Konrad''&lt;br /&gt;
&lt;br /&gt;
Had Parandra of Elvendom not been as prudent and as benevolent, the tale of the boy who became Konrad, King of Wesnoth would never have been sung in the minstrel's tunes. Konrad never knew his real parents; he was found by Elves, as an infant, abandoned in a copse a few strides off an Elvish trader's path. Parandra the wise, knowing the baby had been there for some time, (as evidenced by certain smells emanating from the child's swaddling clothes) set aside all hope of reuniting him with his unknown parents. She picked up the orphaned child and took him as her own.&lt;br /&gt;
&lt;br /&gt;
Delfador arrived sometime thereafter, bearing the grim evidence of his failed rescue; the lifeless body of the murdered infant-Prince Konrad. Parandra and Delfador discussed the situation at length, including the co-incidental discovery of the other, nameless child. Both of them shared their worries that this plan, this trick, wouldn't work.  However, staring down at the foundling in his new crib, touched by his liveliness and cheer, they agreed to give him and the people of Wesnoth, a chance.&lt;br /&gt;
&lt;br /&gt;
That night, while the corpse of one child was laid to rest in the green woods, another child, the boy abandoned &amp;amp; left for dead, was given a new destiny as the fugitive Konrad, Prince &amp;amp; Heir to the throne of Wesnoth.&lt;br /&gt;
&lt;br /&gt;
Delfador raised Konrad as his son, yet never pretended to be his father. Konrad grew up knowing only the life that Delfador created for him. Delfador trained him as a warrior and leader. Each new lesson gave way to another for the precocious student.&lt;br /&gt;
&lt;br /&gt;
During his seventeenth year with Delfador, Konrad and his mentor fled the land of the elves during an attack led by Asheviere.&lt;br /&gt;
&lt;br /&gt;
Konrad's life during these times is chronicled in the [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne '''Heir to the Throne'''] campaign.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Li'sar''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/portraits/lisar.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 498 YW&lt;br /&gt;
** Died: 563 YW&lt;br /&gt;
** Child of Gerald II &amp;amp; Asheviere, only surviving member of the royal family after the death of Asheviere&lt;br /&gt;
** Married: Konrad (~520 - 563 YW)&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Heir_to_the_Throne Heir to the Throne]&lt;br /&gt;
* Notable as&lt;br /&gt;
** Successor to the throne of Wesnoth (only legitimate claimant), became ''Queen Regnant'' after the defeat of Asheviere.&lt;br /&gt;
** Respected as a skilled military commander within the armed forces of Wesnoth, prior to becoming Queen&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
[ Insert background here ]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Hammer Of Thursagan ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;'' Aiglondur''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/portraits/aiglondur.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born:&lt;br /&gt;
** Died:&lt;br /&gt;
** Married:&lt;br /&gt;
**Reigned: Became lord of Kal Kartha after Karrag's downfall. Early [https://wiki.wesnoth.org/Timeline_of_Wesnoth#550 551] YW&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Hammer_of_Thursagan The Hammer Of Thursagan]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Defeat of Karrag&lt;br /&gt;
*Background&lt;br /&gt;
**Great-nephew of Lord Hamel and Guard Captain of the east gate of Knalga.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;'' Karrag''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/portraits/karrag.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born:&lt;br /&gt;
** Died: At the hands of Aiglondur's forces in the underlevels of Kal Kartha. [https://wiki.wesnoth.org/Timeline_of_Wesnoth#550 551] YW&lt;br /&gt;
** Married:&lt;br /&gt;
**Reigned: Lord of Kal Kartha until early [https://wiki.wesnoth.org/Timeline_of_Wesnoth#550 551] YW&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Hammer_of_Thursagan The Hammer Of Thursagan]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Became a lich&lt;br /&gt;
**Launched fiercely xenophobic war against other races&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;'' Hamel''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/portraits/hamel.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born:&lt;br /&gt;
** Died: &lt;br /&gt;
** Married:&lt;br /&gt;
**Reigned: Lord of Knalga, Lord Companion of the Northern Alliance&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Northern_Rebirth Northern Rebirth], [https://wiki.wesnoth.org/Mainline_Campaigns#The_Hammer_of_Thursagan The Hammer Of Thursagan]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Eastern Invasion ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Gweddry''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/gweddry.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 605 YW ???&lt;br /&gt;
** Died: 655 YW ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** At the sight of their new born boy, Gweddry's parents decided to name him after a close friend who fell under Gweddry's father's command. [https://www.wesnoth.org/forum/viewtopic.php?t=15716&amp;amp;start=16]&lt;br /&gt;
** Sent by Konrad II with Dacyn and Owaec to man the old River Guard strongpoints. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#625 625 YW)])&lt;br /&gt;
** Gweddry breaks through Mal-Ravanal's Undead armies lines to reach WeldynGweddry's army kills Mal-Ravanal. Wesnoth is saved. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#627 627 YW)])&lt;br /&gt;
** Gweddry is made Grand Marshal of the Wesnothian Army after he saved Weldyn from destruction. [https://www.wesnoth.org/forum/viewtopic.php?t=15716&amp;amp;start=16]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Dacyn''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/dacyn.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: 533 YW&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Dacyn successfully competed with Ravanal, an eastern wizard, to becomw the king's advisor. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#589 589YW])&lt;br /&gt;
** Advisor to Haldric VII then Konrad II after Haldric's death. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#612 612YW])&lt;br /&gt;
** The journey outlined in [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]. ([https://wiki.wesnoth.org/Timeline_of_Wesnoth#625 625 YW]- [https://wiki.wesnoth.org/Timeline_of_Wesnoth#628 628 YW])&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Owaec''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/owaec.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
* Background&lt;br /&gt;
** A horse clan noble with loyalty to the Wesnoth crown&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Konrad II''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/konrad_II.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: 673&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**King of Wesnoth&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Mal Ravanal''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/portraits/mal-ravanal.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: &lt;br /&gt;
** Died: &lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#The_Eastern_Invasion Eastern Invasion]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
* Background&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Dead Water==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kai Krellis''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Dead_Water/images/portraits/transparent/kai_krellis2.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In Game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Dead_Water Dead Water]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Evacuates Jotha under threat of Mal-Ravanal's undead onslaught.&lt;br /&gt;
** Defeats suarian slavers and freed their prisoners.&lt;br /&gt;
** Gains support of Tyegëa, high priestess.&lt;br /&gt;
** Reconquers merfolk city Jotha from undead.&lt;br /&gt;
*Background&lt;br /&gt;
**Grandson of high priestess, Tyegëa.&lt;br /&gt;
**His father, Kai Laudiss, and mother die at the hands of orcs from the city of Tirigaz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Son Of The Black Eye ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kapou'e''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/portraits/kapoue-angry.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Son_of_the_Black_Eye Son of the Black Eye]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Leader of the Great Horde&lt;br /&gt;
** Made a mug from his rival, Shan Taum's skull&lt;br /&gt;
** Made Barag Gor his capital as Orcish Sovereign&lt;br /&gt;
* Background&lt;br /&gt;
**Son of the orc leader, Black Eye Karun&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Earl Lanbec'h''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/portraits/lanbech.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Son_of_the_Black_Eye Son of the Black Eye]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Launched invasion of orc lands determined to extinguish the orc menace.&lt;br /&gt;
* Background&lt;br /&gt;
**The most powerful human warlord of the North&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Howgarth III''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/portraits/howgarth.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: ???&lt;br /&gt;
** Died: ???&lt;br /&gt;
** Married: ???&lt;br /&gt;
** In game Appearance(s): [https://wiki.wesnoth.org/Mainline_Campaigns#Son_of_the_Black_Eye Son of the Black Eye]&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
**Issued an invitation to Kapou'e to join the Northern Alliance. Kapou'e declined.&lt;br /&gt;
* Background&lt;br /&gt;
**Sucessor to Rahul I as Lord Protector of the Northern Alliance&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Under the Burning Suns ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Kaleh''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/portraits/kaleh.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: in post Wesnothian times&lt;br /&gt;
** Died: still alive at the end of UtBS&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): Under the Burning Suns&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Leader of the Quenoth elves&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
Kaleh, as happens to some great leaders, fell into the job of leading the remnants of the Quenoth elves. The once great town of these sand dwelling elves was decimated over night by meteorites. Their leader slain, the remaining elves looked up to Kaleh for guidance as he was the next in line.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Nym''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/portraits/nym.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: in post Wesnothian times&lt;br /&gt;
** Died: unknown&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): Under the Burning Suns&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Sidekick of Kaleh on the great journey of the Quenoth elves.&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
[insert details here]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;u&amp;gt;''Zhul''&amp;lt;/u&amp;gt; ===&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right&amp;quot;&amp;gt;&lt;br /&gt;
https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/portraits/zhul.png&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
* Bio&lt;br /&gt;
** Born: in post Wesnothian times&lt;br /&gt;
** Died: unknown&lt;br /&gt;
** Married: N/A&lt;br /&gt;
** In game Appearance(s): Under the Burning Suns&lt;br /&gt;
* Notable Deeds&lt;br /&gt;
** Head priestess of the Quenoth elves.&lt;br /&gt;
* Background&lt;br /&gt;
&lt;br /&gt;
[insert details here]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:World of Wesnoth]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=Mainline_Campaigns&amp;diff=65095</id>
		<title>Mainline Campaigns</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=Mainline_Campaigns&amp;diff=65095"/>
		<updated>2019-11-20T02:57:44Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Fix broken images&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Translations}}&lt;br /&gt;
&lt;br /&gt;
These scenarios are included in the Wesnoth distribution. Most were written by fans of the game.&lt;br /&gt;
See [[ReferenceWML]] for information on how to make your own scenarios using the Wesnoth Markup Language. The following links are very likely to contain spoilers regarding the storyline.&lt;br /&gt;
&lt;br /&gt;
== Heir to the Throne ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Heir_To_The_Throne/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Heir_To_The_Throne/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=3 Dave]&lt;br /&gt;
&lt;br /&gt;
This is the original campaign, and probably the most played. It features Konrad, fighting to overturn the rule of the dark queen Asheviere. It is 25 scenarios, no more are planned, and is considered complete.&lt;br /&gt;
&lt;br /&gt;
* [[HeirToTheThrone|Walkthrough]]&lt;br /&gt;
* [[HtttStoryLine|Story outline]], [[CharactersStorys#Heir_to_the_Throne|Characters]], [[WesnothFigures#Heir_to_the_Throne|Biographies]], [[CampaignDialogue:HttT|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10322 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Heir_To_The_Throne.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Heir_To_The_Throne|Geographical references]], [[Timeline_of_Wesnoth#517_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== A Tale of Two Brothers ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Two_Brothers/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Two_Brothers/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=93 Circon]&lt;br /&gt;
&lt;br /&gt;
A village is being terrorized by a black Mage. He is defeated, but the local Mage, Baran, is kidnapped. His brother, Arvith, must go rescue him. It has 4 scenarios, and is aimed at first-time players on Easy.&lt;br /&gt;
&lt;br /&gt;
* [[ATaleOfTwoBrothers|Walkthrough]]&lt;br /&gt;
* [[A Tale Of Two Brothers Story|Story outline]], [[CharactersStorys#A_Tale_Of_Two_Brothers|Characters]], [[CampaignDialogue:TB1.9|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10339 Discussion thread]&lt;br /&gt;
* [[Geography_of_Wesnoth#A_Tale_of_Two_Brothers|Geographical references]], [[Timeline_of_Wesnoth#363_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== An Orcish Incursion ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/An_Orcish_Incursion/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/An_Orcish_Incursion/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by Josh Parsons; adapted for mainline by ESR.&lt;br /&gt;
&lt;br /&gt;
Erlornas is an elven noble of Wesmere during the first years after the arrival of humans and orcs on the western shore of the Great Continent.  It is his fate to be the first of his people to be directly confronted by the invading orcs.&lt;br /&gt;
&lt;br /&gt;
* [[AnOrcishIncursion|Walkthrough]] &lt;br /&gt;
* [[An_Orcish_Incursion story|Story outline]], [[CharactersStorys#An_Orcish_Incursion|Characters]], [[CampaignDialogue:AOI|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20249 Discussion thread]&lt;br /&gt;
* [[Geography_of_Wesnoth#An_Orcish_Incursion|Geographical references]], [[Timeline_of_Wesnoth#8_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The South Guard ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/The_South_Guard/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_South_Guard/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=872 aelius]&lt;br /&gt;
&lt;br /&gt;
A young Knight, Deoran is dispatched to take command of the South Guard. This campaign has 9 or 10 scenarios, depending on the branch you take, and is aimed at beginners on the easiest difficulty.&lt;br /&gt;
&lt;br /&gt;
* [[TheSouthGuard|Walkthrough]]&lt;br /&gt;
* [[South Guard story|Story outline]], [[CharactersStorys#The_South_Guard|Characters]], [[CampaignDialogue:TSG|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10323 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/The_South_Guard.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#The_South_Guard|Geographical references]], [[Timeline_of_Wesnoth#607_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Liberty ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Liberty/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Liberty/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by scott&lt;br /&gt;
&lt;br /&gt;
The chronicles of how a certain group of Wesnothians were betrayed by their ruler and decided to fight back. This made them outlaws in the crown's eyes, but hopefully heroes in ours.&lt;br /&gt;
&lt;br /&gt;
There are 9 scenarios and some goodies to boot. The main focus is to provide the experience of recruiting and recalling higher level outlaw characters, which you don't normally get to do. While there is a range of difficulty in the scenarios, the overall intent is for them to be straightforward and not too difficult.&lt;br /&gt;
&lt;br /&gt;
* [[Liberty|Walkthrough]]&lt;br /&gt;
* [[Liberty story|Story outline]], [[CharactersStorys#Liberty|Characters]], [[CampaignDialogue:L|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20252 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Liberty.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Liberty|Geographical references]], [[Timeline_of_Wesnoth#501_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Legend of Wesmere ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Legend_of_Wesmere/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Legend_of_Wesmere/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by Santi; adapted for mainline by esr and fendrin&lt;br /&gt;
&lt;br /&gt;
''The tale of Kalenz, the High Lord who rallied his people after the second orcish invasion of the Great Continent and became the most renowned hero in the recorded history of the Elves.''&lt;br /&gt;
&lt;br /&gt;
* [[LegendofWesmere|Walkthrough]]&lt;br /&gt;
* [[LegendofWesmereStory|Story outline]], [[CharactersStorys#Legend_of_Wesmere|Characters]], [[WesnothFigures#Legend_of_Wesmere|Biographies]], [[CampaignDialogue:LOW|Dialogue]]&lt;br /&gt;
* [//forums.wesnoth.org/viewforum.php?f=51 Discussion threads]&lt;br /&gt;
*[[Geography_of_Wesnoth#The_Legend_of_Wesmere|Geographical references]], [[Timeline_of_Wesnoth#20_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Eastern Invasion ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Eastern_Invasion/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Eastern_Invasion/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=176 Turin]&lt;br /&gt;
&lt;br /&gt;
This campaign follows Gweddry, a Wesnothian Army Officer, battling against undead invaders. It has 18 scenarios, and no more are planned.&lt;br /&gt;
&lt;br /&gt;
* [[TheEasternInvasion|Walkthrough]]&lt;br /&gt;
* [[EiStoryLine|Story outline]], [[CharactersStorys#Eastern_Invasion|Characters]], [[CampaignDialogue:EI|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10325 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Eastern_Invasion.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Eastern_Invasion|Geographical references]], [[Timeline_of_Wesnoth#625_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Hammer of Thursagan ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/The_Hammer_of_Thursagan/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Hammer_of_Thursagan/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by ESR (Eric S. Raymond)&lt;br /&gt;
&lt;br /&gt;
In the first years of the Northern Alliance, the dwarves of Knalga attempt to re-establish contact with their kin in the east at Kal Kartha.  Many perils beset the expedition, but none so dire as the dark secret they will discover at their destination.&lt;br /&gt;
&lt;br /&gt;
* [[TheHammerOfThursagan|Walkthrough]] &lt;br /&gt;
* [[TheHammerOfThursagan story|Story outline]], [[CharactersStorys#The_Hammer_of_Thursagan|Characters]], [[WesnothFigures#The_Hammer_Of_Thursagan|Biographies]], [[CampaignDialogue:THOT|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20258 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/The_Hammer_of_Thursagan.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#The_Hammer_of_Thursagan|Geographical references]], [[Timeline_of_Wesnoth#550_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Descent into Darkness ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Descent_Into_Darkness/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Descent_Into_Darkness/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by esci&lt;br /&gt;
&lt;br /&gt;
Malin Keshar, a young mage from the town of Parthyn, attempts to defend his home from marauding orcs by enlisting the help of a necromancer named Darken Volk. He learns the forbidden art of raising and controlling the deceased and the true power of the undead, and is gradually drawn further into the secrets of necromancy.&lt;br /&gt;
&lt;br /&gt;
* [[DescentIntoDarkness|Walkthrough]] &lt;br /&gt;
* [[Descent Into Darkness story|Story outline]], [[CharactersStorys#Descent_into_Darkness|Characters]], [[CampaignDialogue:DID|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20251 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Descent_into_Darkness.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Descent_Into_Darkness|Geographical references]], [[Timeline_of_Wesnoth#389_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Delfador's Memoirs ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Delfadors_Memoirs/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Delfadors_Memoirs/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Wesnoth seems to be slipping inexorably into chaos, as marauding orcs pour south across the Great River, and mysterious and deadly creatures roam the night. Who is the shadowy Iliah-Malal? Can you defeat him before he destroys all life in Wesnoth?''&lt;br /&gt;
&lt;br /&gt;
* [[DelfadorsMemoirs|Walkthrough]]&lt;br /&gt;
* [[DelfadorsMemoirsStory|Story outline]], [[CharactersStorys#Delfador.27s_Memoirs|Characters]], [[CampaignDialogue:DM|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=25554 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Delfadors_Memoirs.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Delfador.27s_Memoirs|Geographical references]], [[Timeline_of_Wesnoth#468_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Dead Water ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Dead_Water/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Dead_Water/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By [//forums.wesnoth.org/memberlist.php?mode=viewprofile&amp;amp;u=107794 beetlenaut]&lt;br /&gt;
&lt;br /&gt;
''You are Kai Krellis, a merman king, but only a child. A necromancer has arrived and is turning your subjects into undead slaves! Lead your people on a mission to convince a powerful mermaid to help you repel the invasion. The oceans near the Northern Lands are perilous, so you will need cunning and bravery to survive, but first you need to gain the respect of your troops!''&lt;br /&gt;
(Intermediate Level, 10 scenarios)&lt;br /&gt;
&lt;br /&gt;
*[[Dead_Water|Walkthrough]]&lt;br /&gt;
*[[CharactersStorys#Dead_Water|Characters]], [[WesnothFigures#Dead_Water|Biographies]], [[CampaignDialogue:DW|Dialogue]]&lt;br /&gt;
*[//forums.wesnoth.org/viewtopic.php?f=45&amp;amp;t=31304 Discussion Thread]&lt;br /&gt;
*[//units.wesnoth.org/trunk/mainline/en_US/Dead_Water.html Custom units]&lt;br /&gt;
*[[Geography_of_Wesnoth#Dead_Water|Geographical references]], [[Timeline_of_Wesnoth#626_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Secrets of the Ancients ==&lt;br /&gt;
{{DevFeature1.13|7}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Secrets_of_the_Ancients/images/portraits/campaign-image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Secrets_of_the_Ancients/images/portraits/campaign-image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By [//forums.wesnoth.org/memberlist.php?mode=viewprofile&amp;amp;u=107794 beetlenaut]&lt;br /&gt;
&lt;br /&gt;
''Rediscover the secrets known by the lich lords of the Green Isle. They knew how to live forever, so why can't you?''&lt;br /&gt;
(Intermediate level, 21 scenarios.)&lt;br /&gt;
&lt;br /&gt;
*[[Secrets_of_the_Ancients_Walkthrough|Walkthrough]]&lt;br /&gt;
*[[CharactersStorys#Secrets_of_the_Ancients|Characters]], [[WesnothFigures#Secrets_of_the_Ancients|Biographies]], [[CampaignDialogue:SOTA|Dialogue]]&lt;br /&gt;
*[//forums.wesnoth.org/viewtopic.php?f=8&amp;amp;t=40545 Discussion Thread], [//forums.wesnoth.org/viewtopic.php?f=31&amp;amp;t=43116 Feedback Thread]&lt;br /&gt;
*[//units.wesnoth.org/trunk/mainline/en_US/Secrets%20of%20the%20Ancients.html Custom units]&lt;br /&gt;
*[[Geography_of_Wesnoth#Secrets_of_the_Ancients|Geographical references]], [[Timeline_of_Wesnoth#22-23_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Sceptre of Fire ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Sceptre_of_Fire/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Sceptre_of_Fire/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by turin&lt;br /&gt;
&lt;br /&gt;
King Haldric of the humans strikes a deal with the young dwarf Rugnor. In exchange for ten thousand in silver, the dwarves will create a sceptre of fire for the human king.&lt;br /&gt;
&lt;br /&gt;
* [[Sceptre of Fire|Walkthrough]]&lt;br /&gt;
* [[Sceptre of Fire story|Story outline]], [[CharactersStorys#Sceptre_of_Fire|Characters]], [[CampaignDialogue:SOF|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20255 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Sceptre_of_Fire.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Scepter_of_Fire|Geographical references]], [[Timeline_of_Wesnoth#25-40_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Son of the Black-Eye ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Son_Of_The_Black_Eye/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Son_Of_The_Black_Eye/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
started by Benj, completed by Taurus&lt;br /&gt;
&lt;br /&gt;
You are the orcish chieftain Kapou'e, son of the famed Black-Eye Karun who was treacherously murdered by the human-worms twenty-seven years ago. You must expel the human invaders from orcish lands and avenge your father's death. It has 18 scenarios.&lt;br /&gt;
&lt;br /&gt;
* [[SonOfThe_BlackEye|Walkthrough]]&lt;br /&gt;
* [[Black Eye story|Story outline]], [[CharactersStorys#Son_of_the_Black_Eye|Characters]], [[WesnothFigures#Son_Of_The_Black_Eye|Biographies]], [[CampaignDialogue:SOTBE|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20257 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Son_of_the_Black-Eye.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Son_Of_The_Black_Eye|Geographical references]], [[Timeline_of_Wesnoth#842_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== The Rise of Wesnoth ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/The_Rise_Of_Wesnoth/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/The_Rise_Of_Wesnoth/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=388 Shade]&lt;br /&gt;
&lt;br /&gt;
This campaign revolves around the events that brought Haldric I to the 'Great Continent' to found the Kingdom of&lt;br /&gt;
Wesnoth. It has 25 scenarios, and is considered complete.&lt;br /&gt;
&lt;br /&gt;
* [[TheRiseOfWesnoth|Walkthrough]]&lt;br /&gt;
* [[TrowStoryLine|Story outline]], [[CharactersStorys#The_Rise_of_Wesnoth|Characters]], [[WesnothFigures#The_Rise_Of_Wesnoth|Biographies]], [[CampaignDialogue:TROW|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10613 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/The_Rise_of_Wesnoth.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#The_Rise_of_Wesnoth|Geographical references]], [[Timeline_of_Wesnoth#5-2_BW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Northern Rebirth ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Northern_Rebirth/images/campaign_image.jpg https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Northern_Rebirth/images/campaign_image.jpg]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=100782 Taurus]&lt;br /&gt;
&lt;br /&gt;
The people of Dwarven Doors rise against their orcish oppressors in a struggle that will shape the fate of the Northlands. 14 scenarios.&lt;br /&gt;
&lt;br /&gt;
* [[Northern Rebirth|Walkthrough]]&lt;br /&gt;
* [[Northern Rebirth story|Story outline]] , [[CharactersStorys#Northern_Rebirth|Characters]], [[CampaignDialogue:NR|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=20253 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Northern_Rebirth.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Northern_Rebirth|Geographical references]], [[Timeline_of_Wesnoth#534_YW|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Under the Burning Suns ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;thumb tright&amp;quot;&amp;gt;&lt;br /&gt;
[https://github.com/wesnoth/wesnoth/blob/master/data/campaigns/Under_the_Burning_Suns/images/campaign_image.png https://raw.githubusercontent.com/wesnoth/wesnoth/master/data/campaigns/Under_the_Burning_Suns/images/campaign_image.png]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
by [//www.wesnoth.org/forum/profile.php?mode=viewprofile&amp;amp;u=149 quartex]&lt;br /&gt;
&lt;br /&gt;
Set in the distant future, where elves live in the desert. It has 11 scenarios, and is not recommended for beginners because it changes some parts of Wesnoth, including the elves stats and the day/night cycle.&lt;br /&gt;
&lt;br /&gt;
* [[UnderTheBurningSuns|Walkthrough]]&lt;br /&gt;
* [[UtBSStoryLine|Story outline]], [[CharactersStorys#Under_the_Burning_Sun|Characters]], [[CampaignDialogue:UTBS|Dialogue]]&lt;br /&gt;
* [//www.wesnoth.org/forum/viewtopic.php?f=22&amp;amp;t=10491 Discussion thread]&lt;br /&gt;
* [//units.wesnoth.org/trunk/mainline/en_US/Under_the_Burning_Suns.html Custom units]&lt;br /&gt;
* [[Geography_of_Wesnoth#Under_The_Burning_Suns|Geographical references]], [[Timeline_of_Wesnoth#After_the_Fall|Position in timeline]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Guide_to_UMC_Campaigns]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Review on Release]]&lt;br /&gt;
[[Category:Campaigns|*]]&lt;br /&gt;
[[Category:World_of_Wesnoth]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=58381</id>
		<title>SpellingMistakes</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=58381"/>
		<updated>2017-04-23T19:27:49Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Add correction for Secrets of the Ancients&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to be a list of spelling mistakes in campaigns and other translatable texts in the en_US development version of the game.&lt;br /&gt;
&lt;br /&gt;
Note: The house style of Wesnoth uses a good many words and constructions that are archaic, poetic, or dialectal. If you speak modern English as a second language you may incorrectly read these as errors.  Please see [[NotSpellingMistakes]] for a list of things you will encounter that may look like spelling or usage errors but are not. Note that the mainline campaigns are now using correct typography, including sexed quotes and en and em dashes. These will appear as three byte sequences if you are not using a viewer that supports UTF-8.&lt;br /&gt;
&lt;br /&gt;
==Mainline Campaigns==&lt;br /&gt;
&lt;br /&gt;
===An Orcish Incursion===&lt;br /&gt;
&lt;br /&gt;
===Dead Water===&lt;br /&gt;
&lt;br /&gt;
===Delfador’s Memoirs===&lt;br /&gt;
&lt;br /&gt;
===Descent into Darkness===&lt;br /&gt;
&lt;br /&gt;
===Eastern Invasion===&lt;br /&gt;
&lt;br /&gt;
===Heir to the Throne===&lt;br /&gt;
&lt;br /&gt;
===Liberty===&lt;br /&gt;
&lt;br /&gt;
===Northern Rebirth===&lt;br /&gt;
&lt;br /&gt;
===Sceptre of Fire===&lt;br /&gt;
&lt;br /&gt;
===Secrets of the Ancients===&lt;br /&gt;
&lt;br /&gt;
====Scenario 01: Slipping Away====&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;I have determined that this is probably not be the way death is avoided.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;gt;&amp;gt; Suggested change: &amp;quot;I have determined that this is probably not '''to''' be the way death is avoided.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Son of the Black Eye===&lt;br /&gt;
&lt;br /&gt;
===The Hammer of Thursagan===&lt;br /&gt;
&lt;br /&gt;
====Scenario 08: Fear====&lt;br /&gt;
&lt;br /&gt;
* The presence of Master Perrin’s journeymen gives you the ability to recruit mages.&lt;br /&gt;
&lt;br /&gt;
&amp;gt;&amp;gt; There is only one journeyman on NORMAL/HARD difficulties&lt;br /&gt;
&lt;br /&gt;
===The Legend of Wesmere===&lt;br /&gt;
&lt;br /&gt;
===The Rise of Wesnoth===&lt;br /&gt;
&lt;br /&gt;
===The South Guard===&lt;br /&gt;
&lt;br /&gt;
===Two Brothers===&lt;br /&gt;
&lt;br /&gt;
===Under the Burning Suns===&lt;br /&gt;
&lt;br /&gt;
==Wesnoth Game==&lt;br /&gt;
&lt;br /&gt;
===Editor===&lt;br /&gt;
&lt;br /&gt;
===Help===&lt;br /&gt;
* [leadership]: id=leadership&lt;br /&gt;
* This unit can lead our own units that are next to it...&lt;br /&gt;
&amp;gt;&amp;gt; … can lead your own units ...&lt;br /&gt;
&lt;br /&gt;
===Tutorial===&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
&lt;br /&gt;
===Manpages===&lt;br /&gt;
&lt;br /&gt;
===Units===&lt;br /&gt;
&lt;br /&gt;
===Other (unit descriptions, ...)===&lt;br /&gt;
&lt;br /&gt;
===Multiplayer maps===&lt;br /&gt;
&lt;br /&gt;
===Translation code bugs===&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
[[Category:Writing]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=57020</id>
		<title>SpellingMistakes</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=57020"/>
		<updated>2016-01-23T20:49:52Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: /* Other (unit descriptions, ...) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to be a list of spelling mistakes in campaigns and other translatable texts in the en_US development version of the game.&lt;br /&gt;
&lt;br /&gt;
Note: The house style of Wesnoth uses a good many words and constructions that are archaic, poetic, or dialectal. If you speak modern English as a second language you may incorrectly read these as errors.  Please see [[NotSpellingMistakes]] for a list of things you will encounter that may look like spelling or usage errors but are not. Note that the mainline campaigns are now using correct typography, including sexed quotes and en and em dashes. These will appear as three byte sequences if you are not using a viewer that supports UTF-8.&lt;br /&gt;
&lt;br /&gt;
==Mainline Campaigns==&lt;br /&gt;
&lt;br /&gt;
===An Orcish Incursion===&lt;br /&gt;
&lt;br /&gt;
===Dead Water===&lt;br /&gt;
&lt;br /&gt;
===Delfador’s Memoirs===&lt;br /&gt;
&lt;br /&gt;
===Descent into Darkness===&lt;br /&gt;
&lt;br /&gt;
===Eastern Invasion===&lt;br /&gt;
&lt;br /&gt;
===Heir to the Throne===&lt;br /&gt;
&lt;br /&gt;
===Liberty===&lt;br /&gt;
&lt;br /&gt;
===Northern Rebirth===&lt;br /&gt;
&lt;br /&gt;
===Sceptre of Fire===&lt;br /&gt;
&lt;br /&gt;
===Son of the Black Eye===&lt;br /&gt;
&lt;br /&gt;
===The Hammer of Thursagan===&lt;br /&gt;
Scenario 08_Fear&lt;br /&gt;
&lt;br /&gt;
* The presence of Master Perrin’s journeymen gives you the ability to recruit mages.&lt;br /&gt;
&lt;br /&gt;
&amp;gt;&amp;gt; There is only one journeyman on NORMAL/HARD difficulties&lt;br /&gt;
&lt;br /&gt;
===The Legend of Wesmere===&lt;br /&gt;
&lt;br /&gt;
===The Rise of Wesnoth===&lt;br /&gt;
&lt;br /&gt;
===The South Guard===&lt;br /&gt;
&lt;br /&gt;
===Two Brothers===&lt;br /&gt;
&lt;br /&gt;
===Under the Burning Suns===&lt;br /&gt;
&lt;br /&gt;
==Wesnoth Game==&lt;br /&gt;
&lt;br /&gt;
===Editor===&lt;br /&gt;
&lt;br /&gt;
===Help===&lt;br /&gt;
* [leadership]: id=leadership&lt;br /&gt;
* This unit can lead our own units that are next to it...&lt;br /&gt;
&amp;gt;&amp;gt; … can lead your own units ...&lt;br /&gt;
&lt;br /&gt;
===Tutorial===&lt;br /&gt;
&lt;br /&gt;
* 02_Tutorial_part_2.cfg&lt;br /&gt;
  Change &amp;quot;as as&amp;quot; to &amp;quot;so as&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
  Missing period at end of &amp;quot;You should secure them for income and healing&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
&lt;br /&gt;
===Manpages===&lt;br /&gt;
&lt;br /&gt;
===Units===&lt;br /&gt;
&lt;br /&gt;
===Other (unit descriptions, ...)===&lt;br /&gt;
Under Help -&amp;gt; Encyclopedia -&amp;gt; Geography -&amp;gt; Great Ocean, it says &amp;quot;Far to the west in '''the the''' Great Ocean...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Multiplayer maps===&lt;br /&gt;
&lt;br /&gt;
===Translation code bugs===&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
[[Category:Writing]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=55370</id>
		<title>SpellingMistakes</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=55370"/>
		<updated>2014-08-13T02:38:03Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: /* Heir to the Throne */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to be a list of spelling mistakes in campaigns and other translatable texts in the en_US development version of the game.&lt;br /&gt;
&lt;br /&gt;
Note: The house style of Wesnoth uses a good many words and constructions that are archaic, poetic, or dialectal. If you speak modern English as a second language you may incorrectly read these as errors.  Please see [[NotSpellingMistakes]] for a list of things you will encounter that may look like spelling or usage errors but are not. Note that the mainline campaigns are now using correct typography, including sexed quotes and en and em dashes. These will appear as three byte sequences if you are not using a viewer that supports UTF-8.&lt;br /&gt;
&lt;br /&gt;
==Mainline Campaigns==&lt;br /&gt;
&lt;br /&gt;
===An Orcish Incursion===&lt;br /&gt;
&lt;br /&gt;
===Dead Water===&lt;br /&gt;
&lt;br /&gt;
===Delfador’s Memoirs===&lt;br /&gt;
&lt;br /&gt;
===Descent into Darkness===&lt;br /&gt;
&lt;br /&gt;
===Eastern Invasion===&lt;br /&gt;
&lt;br /&gt;
===Heir to the Throne===&lt;br /&gt;
&lt;br /&gt;
In &amp;quot;Test of the Clan,&amp;quot; the dialogue &amp;quot;... Who do we serve?&amp;quot; should be &amp;quot;Who'''m''' do we serve?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Liberty===&lt;br /&gt;
&lt;br /&gt;
===Northern Rebirth===&lt;br /&gt;
&lt;br /&gt;
===Sceptre of Fire===&lt;br /&gt;
&lt;br /&gt;
===Son of the Black Eye===&lt;br /&gt;
&lt;br /&gt;
===The Hammer of Thursagan===&lt;br /&gt;
&lt;br /&gt;
===The Legend of Wesmere===&lt;br /&gt;
&lt;br /&gt;
===The Rise of Wesnoth===&lt;br /&gt;
&lt;br /&gt;
===The South Guard===&lt;br /&gt;
&lt;br /&gt;
===Two Brothers===&lt;br /&gt;
&lt;br /&gt;
===Under the Burning Suns===&lt;br /&gt;
&lt;br /&gt;
==Wesnoth Game==&lt;br /&gt;
&lt;br /&gt;
===Editor===&lt;br /&gt;
&lt;br /&gt;
===Help===&lt;br /&gt;
&lt;br /&gt;
===Tutorial===&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
&lt;br /&gt;
===Manpages===&lt;br /&gt;
&lt;br /&gt;
===Units===&lt;br /&gt;
&lt;br /&gt;
===Other (unit descriptions, ...)===&lt;br /&gt;
&lt;br /&gt;
===Multiplayer maps===&lt;br /&gt;
&lt;br /&gt;
===Translation code bugs===&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
[[Category:Writing]]&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=52532</id>
		<title>SpellingMistakes</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=52532"/>
		<updated>2013-11-28T01:43:30Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Noted problem with dates in AToTB&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to be a list of spelling mistakes in campaigns and other translatable texts in the en_US development version of the game.&lt;br /&gt;
&lt;br /&gt;
Note: The house style of Wesnoth uses a good many words and constructions that are archaic, poetic, or dialectal. If you speak modern English as a second language you may incorrectly read these as errors.  Please see [[NotSpellingMistakes]] for a list of things you will encounter that may look like spelling or usage errors but are not. Note that the mainline campaigns are now using correct typography, including sexed quotes and en and em dashes. These will appear as three byte sequences if you are not using a viewer that supports UTF-8.&lt;br /&gt;
&lt;br /&gt;
==Mainline Campaigns==&lt;br /&gt;
&lt;br /&gt;
===An Orcish Incursion===&lt;br /&gt;
&lt;br /&gt;
===Dead Water===&lt;br /&gt;
&lt;br /&gt;
===Delfador’s Memoirs===&lt;br /&gt;
* &amp;quot;Yes, close by the southeast wall of our fort across '''the the''' Ford. But they are jealous of their privileges and hold aloof from us.&amp;quot; scenario 12_Terror_at_the_Ford_of_Parthyn.cfg:418&lt;br /&gt;
* &amp;quot;He is a like a blazing fire&amp;quot;. Seems strange to me, however English is not my native language. I would have writen &amp;quot;He is like a blazing fire&amp;quot; or maybe &amp;quot;He is alike a blazing fire&amp;quot; ? scenario 14_Shadows.cfg:304&lt;br /&gt;
* &amp;quot;I will send Dudpon, instead with most of my army&amp;quot;, I would move the comma : &amp;quot;I will send Dudpon instead, with most of my army&amp;quot; 16_Dark_Sky_Over_Weldyn.cfg:71&lt;br /&gt;
* &amp;quot;Defeat all enemies&amp;quot; is using in three scenarios but, at least in one of them (Terror at the Ford of Parthyn) you only need to defeat all enemy '''leaders'''&lt;br /&gt;
&lt;br /&gt;
===Descent into Darkness===&lt;br /&gt;
&lt;br /&gt;
===Eastern Invasion===&lt;br /&gt;
&lt;br /&gt;
===Heir to the Throne===&lt;br /&gt;
&lt;br /&gt;
===Liberty===&lt;br /&gt;
&lt;br /&gt;
===Northern Rebirth===&lt;br /&gt;
&lt;br /&gt;
===Sceptre of Fire===&lt;br /&gt;
&lt;br /&gt;
===Son of the Black Eye===&lt;br /&gt;
In the first scenario Vrag is saying: ''There is a huge human army marching on us! They can’t be more then one or two days march from here.'' Should be '''''than'''''.&lt;br /&gt;
&lt;br /&gt;
===The Hammer of Thursagan===&lt;br /&gt;
&lt;br /&gt;
===The Legend of Wesmere===&lt;br /&gt;
&amp;quot;At last I have '''found, you alive and well'''! We need you back at once! The orcs have attacked the humans.&amp;quot;&lt;br /&gt;
(data/campaigns/Legend_of_Wesmere/scenarios/chapter4/13_News_from_the_Front.cfg:165)&lt;br /&gt;
&lt;br /&gt;
The comma should be moved one word ahead, after 'you'.&lt;br /&gt;
&lt;br /&gt;
===The Rise of Wesnoth===&lt;br /&gt;
&lt;br /&gt;
===The South Guard===&lt;br /&gt;
&lt;br /&gt;
 03_A_Desperate_Errand NORMAL difficulty. When you kill off the bandits it says &amp;quot;I hope that’s the last of the bandits! How many more of these foul undead must we fight?&amp;quot; but there are no undead at this difficulty.  Perhaps it could be changed to &amp;quot;foul creatures&amp;quot; or perhaps some weak undead could be added to the scenario.&lt;br /&gt;
&lt;br /&gt;
===Two Brothers===&lt;br /&gt;
&lt;br /&gt;
There seems to be a discrepancy in the dates given in the four scenarios:&lt;br /&gt;
&lt;br /&gt;
Scenario 1: 12 V, 363 YW&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Scenario 2: 16 V, 363 YW&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Scenario 3: 19 '''IV''', 363 YW&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Scenario 4: 27 V, 363 YW&lt;br /&gt;
&lt;br /&gt;
Should the date in scenario 3 be &amp;quot;19 '''V''', 363 YW&amp;quot;?&lt;br /&gt;
&lt;br /&gt;
(Note that the date appears twice in scenario 3.)&lt;br /&gt;
&lt;br /&gt;
===Under the Burning Suns===&lt;br /&gt;
&lt;br /&gt;
* Scenario 10: &amp;quot;They sent this second sun, who you call Naia, hurling through the sky so that there was only a few hours of dark each night.&amp;quot; suggest change to &amp;quot;hurtling&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* Scenario 10: &amp;quot;Eloh’s reach is long and her vengeance is terrible.&amp;quot; suggest change to &amp;quot;Yechnagoth&amp;quot; because at this point they know the real villain and Eloh's good name has been cleared.&lt;br /&gt;
&lt;br /&gt;
* Scenario 10: &amp;quot;their power failed and the mountain crashed down onto the humans capital&amp;quot; - suggest change to &amp;quot;humans’ capital&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Wesnoth Game==&lt;br /&gt;
&lt;br /&gt;
===Editor===&lt;br /&gt;
&lt;br /&gt;
===Help===&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Undead&amp;quot;, 1st paragraph: &amp;quot;An undead creature does not require the constant attention of the necromancer to command and sustain, but can work autonomously according to the commands of it's master.&amp;quot; should be changed to &amp;quot;...of '''its''' master.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Tutorial===&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
&lt;br /&gt;
===Manpages===&lt;br /&gt;
&lt;br /&gt;
===Units===&lt;br /&gt;
&lt;br /&gt;
===1.11 Announcement===&lt;br /&gt;
&lt;br /&gt;
One line of the development release line says this: &amp;quot;which might include quite many bugs.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Quite many&amp;quot; is not proper grammar.  It should instead read: &amp;quot;which might include many bugs.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Other (unit descriptions, ...)===&lt;br /&gt;
&lt;br /&gt;
===Multiplayer maps===&lt;br /&gt;
&lt;br /&gt;
===Translation code bugs===&lt;br /&gt;
&lt;br /&gt;
==Unofficial campaigns==&lt;br /&gt;
&lt;br /&gt;
===Invasion from the Unknown===&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=52145</id>
		<title>SpellingMistakes</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=52145"/>
		<updated>2013-10-03T12:19:07Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Noted typo in UtBS scenario 10.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to be a list of spelling mistakes in campaigns and other translatable texts in the en_US development version of the game.&lt;br /&gt;
&lt;br /&gt;
Note: The house style of Wesnoth uses a good many words and constructions that are archaic, poetic, or dialectal. If you speak modern English as a second language you may incorrectly read these as errors.  Please see [[NotSpellingMistakes]] for a list of things you will encounter that may look like spelling or usage errors but are not. Note that the mainline campaigns are now using correct typography, including sexed quotes and en and em dashes. These will appear as three byte sequences if you are not using a viewer that supports UTF-8.&lt;br /&gt;
&lt;br /&gt;
==Mainline Campaigns==&lt;br /&gt;
&lt;br /&gt;
===An Orcish Incursion===&lt;br /&gt;
&lt;br /&gt;
===Dead Water===&lt;br /&gt;
&lt;br /&gt;
===Delfador’s Memoirs===&lt;br /&gt;
* &amp;quot;Yes, close by the southeast wall of our fort across '''the the''' Ford. But they are jealous of their privileges and hold aloof from us.&amp;quot; scenario 12_Terror_at_the_Ford_of_Parthyn.cfg:418&lt;br /&gt;
* &amp;quot;He is a like a blazing fire&amp;quot;. Seems strange to me, however English is not my native language. I would have writen &amp;quot;He is like a blazing fire&amp;quot; or maybe &amp;quot;He is alike a blazing fire&amp;quot; ? scenario 14_Shadows.cfg:304&lt;br /&gt;
* &amp;quot;I will send Dudpon, instead with most of my army&amp;quot;, I would move the comma : &amp;quot;I will send Dudpon instead, with most of my army&amp;quot; 16_Dark_Sky_Over_Weldyn.cfg:71&lt;br /&gt;
* &amp;quot;Defeat all enemies&amp;quot; is using in three scenarios but, at least in one of them (Terror at the Ford of Parthyn) you only need to defeat all enemy '''leaders'''&lt;br /&gt;
&lt;br /&gt;
===Descent into Darkness===&lt;br /&gt;
&lt;br /&gt;
===Eastern Invasion===&lt;br /&gt;
&lt;br /&gt;
===Heir to the Throne===&lt;br /&gt;
&lt;br /&gt;
===Liberty===&lt;br /&gt;
&lt;br /&gt;
===Northern Rebirth===&lt;br /&gt;
&lt;br /&gt;
===Sceptre of Fire===&lt;br /&gt;
&lt;br /&gt;
===Son of the Black Eye===&lt;br /&gt;
In the first scenario Vrag is saying: ''There is a huge human army marching on us! They can’t be more then one or two days march from here.'' Should be '''''than'''''.&lt;br /&gt;
&lt;br /&gt;
===The Hammer of Thursagan===&lt;br /&gt;
&lt;br /&gt;
===The Legend of Wesmere===&lt;br /&gt;
&amp;quot;At last I have '''found, you alive and well'''! We need you back at once! The orcs have attacked the humans.&amp;quot;&lt;br /&gt;
(data/campaigns/Legend_of_Wesmere/scenarios/chapter4/13_News_from_the_Front.cfg:165)&lt;br /&gt;
&lt;br /&gt;
The comma should be moved one word ahead, after 'you'.&lt;br /&gt;
&lt;br /&gt;
===The Rise of Wesnoth===&lt;br /&gt;
&lt;br /&gt;
===The South Guard===&lt;br /&gt;
&lt;br /&gt;
 03_A_Desperate_Errand NORMAL difficulty. When you kill off the bandits it says &amp;quot;I hope that’s the last of the bandits! How many more of these foul undead must we fight?&amp;quot; but there are no undead at this difficulty.  Perhaps it could be changed to &amp;quot;foul creatures&amp;quot; or perhaps some weak undead could be added to the scenario.&lt;br /&gt;
&lt;br /&gt;
===Two Brothers===&lt;br /&gt;
&lt;br /&gt;
===Under the Burning Suns===&lt;br /&gt;
&lt;br /&gt;
* Scenario 10: &amp;quot;They sent this second sun, who you call Naia, hurling through the sky so that there was only a few hours of dark each night.&amp;quot; suggest change to &amp;quot;hurtling&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
* Scenario 10: &amp;quot;Eloh’s reach is long and her vengeance is terrible.&amp;quot; suggest change to &amp;quot;Yechnagoth&amp;quot; because at this point they know the real villain and Eloh's good name has been cleared.&lt;br /&gt;
&lt;br /&gt;
* Scenario 10: &amp;quot;their power failed and the mountain crashed down onto the humans capital&amp;quot; - suggest change to &amp;quot;humans’ capital&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Wesnoth Game==&lt;br /&gt;
&lt;br /&gt;
===Editor===&lt;br /&gt;
&lt;br /&gt;
===Help===&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Undead&amp;quot;, 1st paragraph: &amp;quot;An undead creature does not require the constant attention of the necromancer to command and sustain, but can work autonomously according to the commands of it's master.&amp;quot; should be changed to &amp;quot;...of '''its''' master.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Tutorial===&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
&lt;br /&gt;
===Manpages===&lt;br /&gt;
&lt;br /&gt;
===Units===&lt;br /&gt;
&lt;br /&gt;
===1.11 Announcement===&lt;br /&gt;
&lt;br /&gt;
One line of the development release line says this: &amp;quot;which might include quite many bugs.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Quite many&amp;quot; is not proper grammar.  It should instead read: &amp;quot;which might include many bugs.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Other (unit descriptions, ...)===&lt;br /&gt;
&lt;br /&gt;
===Multiplayer maps===&lt;br /&gt;
&lt;br /&gt;
===Translation code bugs===&lt;br /&gt;
&lt;br /&gt;
==Unofficial campaigns==&lt;br /&gt;
&lt;br /&gt;
===Invasion from the Unknown===&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=45015</id>
		<title>SpellingMistakes</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=45015"/>
		<updated>2012-01-31T18:19:06Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: /* Manual */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to be a list of spelling mistakes in campaigns and other translatable texts in the en_US development version of the game.&lt;br /&gt;
&lt;br /&gt;
Note: The house style of Wesnoth uses a good many words and constructions that are archaic, poetic, or dialectal. If you speak modern English as a second language you may incorrectly read these as errors.  Please see [[NotSpellingMistakes]] for a list of things you will encounter that may look like spelling or usage errors but are not. Note that the mainline campaigns are now using correct typography, including sexed quotes and en and em dashes. These will appear as three byte sequences if you are not using a viewer that supports UTF-8.&lt;br /&gt;
&lt;br /&gt;
==Mainline Campaigns==&lt;br /&gt;
&lt;br /&gt;
===An Orcish Incursion===&lt;br /&gt;
&lt;br /&gt;
===Dead Water===&lt;br /&gt;
&lt;br /&gt;
===Delfador’s Memoirs===&lt;br /&gt;
&lt;br /&gt;
===Descent into Darkness===&lt;br /&gt;
&lt;br /&gt;
===Eastern Invasion===&lt;br /&gt;
&lt;br /&gt;
===Heir to the Throne===&lt;br /&gt;
&lt;br /&gt;
Battle for Wesnoth 1.10.0, 24_Battle_for_Wesnoth.cfg, line 384: should be &amp;quot;whom&amp;quot;, not &amp;quot;who&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Liberty===&lt;br /&gt;
&lt;br /&gt;
===Northern Rebirth===&lt;br /&gt;
&lt;br /&gt;
===Sceptre of Fire===&lt;br /&gt;
&lt;br /&gt;
===Son of the Black Eye===&lt;br /&gt;
&lt;br /&gt;
===The Hammer of Thursagan===&lt;br /&gt;
&lt;br /&gt;
===The Legend of Wesmere===&lt;br /&gt;
&lt;br /&gt;
===The Rise of Wesnoth===&lt;br /&gt;
&lt;br /&gt;
===The South Guard===&lt;br /&gt;
&lt;br /&gt;
===Two Brothers===&lt;br /&gt;
&lt;br /&gt;
===Under the Burning Suns===&lt;br /&gt;
&lt;br /&gt;
==Wesnoth Game==&lt;br /&gt;
&lt;br /&gt;
===Editor===&lt;br /&gt;
&lt;br /&gt;
===Help===&lt;br /&gt;
&lt;br /&gt;
===Tutorial===&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
&lt;br /&gt;
Explanation of gold carryover obsolete:&lt;br /&gt;
&lt;br /&gt;
http://svn.gna.org/viewcvs/*checkout*/wesnoth/trunk/doc/manual/manual.en.html#_gold_2&lt;br /&gt;
&lt;br /&gt;
===Manpages===&lt;br /&gt;
&lt;br /&gt;
===Units===&lt;br /&gt;
&lt;br /&gt;
===1.10 Announcement===&lt;br /&gt;
&lt;br /&gt;
===Other (unit descriptions, ...)===&lt;br /&gt;
&lt;br /&gt;
===Multiplayer maps===&lt;br /&gt;
&lt;br /&gt;
===Translation code bugs===&lt;br /&gt;
&lt;br /&gt;
==Unofficial campaigns==&lt;br /&gt;
&lt;br /&gt;
===Invasion from the Unknown===&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=45014</id>
		<title>SpellingMistakes</title>
		<link rel="alternate" type="text/html" href="https://wiki.wesnoth.org/index.php?title=SpellingMistakes&amp;diff=45014"/>
		<updated>2012-01-31T18:11:46Z</updated>

		<summary type="html">&lt;p&gt;Gnombat: Added error report.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is meant to be a list of spelling mistakes in campaigns and other translatable texts in the en_US development version of the game.&lt;br /&gt;
&lt;br /&gt;
Note: The house style of Wesnoth uses a good many words and constructions that are archaic, poetic, or dialectal. If you speak modern English as a second language you may incorrectly read these as errors.  Please see [[NotSpellingMistakes]] for a list of things you will encounter that may look like spelling or usage errors but are not. Note that the mainline campaigns are now using correct typography, including sexed quotes and en and em dashes. These will appear as three byte sequences if you are not using a viewer that supports UTF-8.&lt;br /&gt;
&lt;br /&gt;
==Mainline Campaigns==&lt;br /&gt;
&lt;br /&gt;
===An Orcish Incursion===&lt;br /&gt;
&lt;br /&gt;
===Dead Water===&lt;br /&gt;
&lt;br /&gt;
===Delfador’s Memoirs===&lt;br /&gt;
&lt;br /&gt;
===Descent into Darkness===&lt;br /&gt;
&lt;br /&gt;
===Eastern Invasion===&lt;br /&gt;
&lt;br /&gt;
===Heir to the Throne===&lt;br /&gt;
&lt;br /&gt;
Battle for Wesnoth 1.10.0, 24_Battle_for_Wesnoth.cfg, line 384: should be &amp;quot;whom&amp;quot;, not &amp;quot;who&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Liberty===&lt;br /&gt;
&lt;br /&gt;
===Northern Rebirth===&lt;br /&gt;
&lt;br /&gt;
===Sceptre of Fire===&lt;br /&gt;
&lt;br /&gt;
===Son of the Black Eye===&lt;br /&gt;
&lt;br /&gt;
===The Hammer of Thursagan===&lt;br /&gt;
&lt;br /&gt;
===The Legend of Wesmere===&lt;br /&gt;
&lt;br /&gt;
===The Rise of Wesnoth===&lt;br /&gt;
&lt;br /&gt;
===The South Guard===&lt;br /&gt;
&lt;br /&gt;
===Two Brothers===&lt;br /&gt;
&lt;br /&gt;
===Under the Burning Suns===&lt;br /&gt;
&lt;br /&gt;
==Wesnoth Game==&lt;br /&gt;
&lt;br /&gt;
===Editor===&lt;br /&gt;
&lt;br /&gt;
===Help===&lt;br /&gt;
&lt;br /&gt;
===Tutorial===&lt;br /&gt;
&lt;br /&gt;
===Manual===&lt;br /&gt;
&lt;br /&gt;
===Manpages===&lt;br /&gt;
&lt;br /&gt;
===Units===&lt;br /&gt;
&lt;br /&gt;
===1.10 Announcement===&lt;br /&gt;
&lt;br /&gt;
===Other (unit descriptions, ...)===&lt;br /&gt;
&lt;br /&gt;
===Multiplayer maps===&lt;br /&gt;
&lt;br /&gt;
===Translation code bugs===&lt;br /&gt;
&lt;br /&gt;
==Unofficial campaigns==&lt;br /&gt;
&lt;br /&gt;
===Invasion from the Unknown===&lt;/div&gt;</summary>
		<author><name>Gnombat</name></author>
		
	</entry>
</feed>