pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/games/wesnoth



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Nov  2 18:35:04 UTC 2021

Modified Files:
        pkgsrc/games/wesnoth: Makefile PLIST distinfo
        pkgsrc/games/wesnoth/patches: patch-CMakeLists.txt
            patch-src_CMakeLists.txt

Log Message:
wesnoth: updated to 1.16.0

Version 1.16.0
  Campaigns
   * Sceptre of Fire
     * S06: Fix some WML variable handling causing autodefeat in S06 or rune-equip bugs in a later scenario
   * Under the Burning Suns
     * S05: Avoid village just taken by the player being re-assigned to the enemy
  Lua API
   * Fixed `wesnoth.audio.volume = N` always setting volume to 0.
  Translations
   * Updated translations: British English, Czech, Finnish, Italian, Japanese, Portuguese (Brazil), Spanish.
  User interface
   * Don't display the locale API identifier on the Language button.
  Miscellaneous and Bug Fixes
   * Fix the engine exiting immediately due to a corrupt .mo file
   * When showing [message] with [options] but no default, highlight the first one
   * Ensure that [modify_unit] has some expected side-effects of unstoring a unit

Version 1.15.18
  Campaigns
   * Northern Rebirth
     * Give Eryssa’s side a consistent team color
   * The Rise of Wesnoth
     * Remove time-runs-out lose condition for final scenario
   * Under the Burning Suns
     * Avoid a few possibilities where the Dust Devil could speak
     * Avoid dehydration status icon persisting into the next scenario
  Editor
   * Avoid rare crash situation after editing scenarios
  Translations
   * Updated translations: British English, Bulgarian, Czech, French, Italian, Portuguese (Brazil), Russian, Spanish.
   * gettext plural forms now have caret prefixes stripped as well.
  User interface
   * Steam cloud file is no longer listed in the Load Game dialog.
   * Redefine green text in dialogs and tool-tips so they are no longer ‘too dark’ with recent Pango versions
   * Gave the main menu's Language button a label again, now displaying the current language.
   * Tweaked margins around the main menu's bottom row.
   * Difficulty no longer displayed in the Load Game dialog when it is not relevant to a save file
  Miscellaneous and Bug Fixes
   * Correct unit display adjustments on certain tiles when at zoom level other than 100%

Version 1.15.17
  Campaigns
   * World Conquest is re-enabled.
  Translations
   * Updated translations: British English, Polish
  Miscellaneous and Bug Fixes
   * Messenger MAI: fixed bug of own units sometimes blocking the path to a waypoint for the messenger
   * A bug that would corrupt WML sent to the multiplayer and add-ons server was fixed.

Version 1.15.16
  Campaigns
   * Liberty
     * S06: Enforce failure condition for allied team
   * The South Guard
     * S8b: Reduced difficulty
   * Tutorial
     * S01: Don't let the first Quintain chase the player to a village
     * S01: Synchronise the choice of character dialog, so that replays don't get OOS
     * S01: Fix some glitches on HDPI displays
   * Secrets of the Ancients
     * Synchronise the walking corpse recruitment dialog, so that replays don't get OOS
   * Under the Burning Suns
     * S09: Reveal the boss of the scenario at the end of part 1
   * World Conquest
     * Add campaign icons, campaign image and credits
     * Update to new mushroom terrain from the deprecated mushroom terrain
  Multiplayer
   * If an add-on needs to be installed on all players' devices but doesn't specify a min version, assume it needs the latest
  Terrain
   * Fix transition between snowy mountains and castles
  Translations
   * Updated translations: British English, Chinese (Traditional), Czech, Finnish, French, Indonesian, Italian, Polish, Portuguese (Brazil), Russian, Turkish
  Units
   * Added and improved Naga animations
   * Added Troll defense animations
  User interface
   * The names of the abilities used as specials appear in the attack prediction window with specials weapons
   * In the Load Game dialog, list directories from previous versions in decending order
   * Refined design of the Faction Select screen
   * Made the campaign selection on bigger on HDPI screens
  Miscellaneous and Bug Fixes
   * Added a timeout when connecting to the wesnothd server
   * Improved logging of deprecation messages, fixing duplication and missing timestamps
   * Added `[era]` attributes to the schema
   * Added to wmllint an automatic update of four terrain-graphics macros
   * Removed wmllint's check for spaces in e-mail addresses
   * Standardised the date line of copyright statements, and updated them to 2021

Version 1.15.15
  Translations
   * Updated translations: British English, Bulgarian, Chinese (Traditional), Czech, Italian, Portuguese (Brazil), Russian, Spanish, Turkish
  User interface
   * Added a prompt to allow migrating settings and redownloading add-ons used in a previous version of Wesnoth when starting a new versions for the first time.
  Miscellaneous and Bug Fixes
   * Fixed: keyboard input during the loading screen intermittently caused a crash
   * AI: fixed custom synced commands not changing the game state

Version 1.15.14
  Add-ons client
   * Fixed: using the versions drop-down in small-screen mode returned to the title screen
   * Fixed: keyboard input in small-screen mode returned to the title screen
  Campaigns
   * A Tale of Two Brothers
     * S02: Dialog revisions.
   * Sceptre of Fire
     * Revisions to the last two scenarios.
   * Tutorial
     * S02: Mention the acceleration factor preference.
  Lua API
   * Pathfinding functions are now in a new wesnoth.paths module.
     * Pathfinding in map generation now takes an options table as the third argument.
   * New sync module that contains functions for multiplayer synchronization
     * In particular, wesnoth.synchronize_choice is now wesnoth.sync.evaluate_single
   * allow_end_turn and end_turn moved to the wesnoth.interface module
   * wesnoth.message is now wesnoth.interface.add_chat_message
   * Shroud and fog control are now in the wesnoth.sides module
     * Shroud data strings and the special string "all" are no longer supported by place_shroud -
       only a list of locations is supported
     * wesnoth.map.parse_bitmap transforms a shroud data string into a list of locations
     * wesnoth.map.make_bitmap builds a shroud data string from a list of locations
     * There are now two different ways of altering shroud: place_shroud merges with existing shroud,
       while override_shroud replaces the entire shroud with the new value.
   * New schedule module for working with schedules and time areas
     * wesnoth.map.get_time_area now returns the area's schedule object
     * The global scenario schedule is available as wesnoth.current.schedule
     * wesnoth.get_time_of_day is split into wesnoth.schedule.get_time_of_day (ignoring illumination)
       and wesnoth.get_illumination (which considers illumination). Both functions now take the location
       as the first argument.
     * wesnoth.get_max_liminal_bonus() is now wesnoth.current.schedule.liminal_bonus
     * wesnoth.replace_schedule is now wesnoth.schedule.replace
   * wesnoth.end_level() and wesnoth.get_end_level_data() are now removed - instead, there's
     an end_level_data field in wesnoth.scenario.that serves both purposes.
   * wesnoth.get_traits() is now wesnoth.game_config.global_traits
   * wesnoth.teleport moved to the units module
  Multiplayer
   * Added Isle of Mists, a new single player or coop survival scenario.
  Networking
   * Added support for encrypting connection using TLS to multiplayer/addon client/server
   * Moved password hashing code from client to server, relying on TLS to avoid sending cleartext passwords
  Packaging
  Terrain
   * Added some great tree variations
   * Added 'icy cobbles' (terrain code `Rra`) - mostly useful for the transitions
  Translations
   * Updated translations: British English, Chinese (Traditional), Czech, Indonesian, Italian, Japanese, Scottish Gaelic, Slovak, Spanish
  Units
   * Added missing Seahorse graphics
   * Revised Jinn (unit config and graphics)
   * Fire Wraith added
   * added LordBob's Jinn, Fire Guardian, and Fire Wraith portraits
   * Moved Naga guardian line from UtBS to core, and made some revisions
   * Dune Apothecary experience needed to level up changed from 100 to 65
   * Dune Captain experience needed to level up changed from 86 to 75
   * Dune Herbalist cost changed form 15 to 14
   * Dune Horse Archer experience needed to level up changed form 70 to 65
   * Naga Sicarius hp changed form 55 to 53 and melee damage changed form 9 to 6, new special "deflect" added to melee attack
   * Fire Guardian can now level into Fire Wraith, experience needed to level up for Fire Guardian changed from 50 to 29
   * Revised statistics of all animal horses, Bay Horse can now level into Great Horse
  Wesnoth Formula Language
   * The use of "side" on units and "owner" on terrain objects is now deprecated.
     Instead, you should use "side_number" or "owner_side", respectively.
     The old key returns 0 for side 1 and so on, so the new key is preferred.
   * A unit object now has a "terrain" key that returns the terrain object the unit is standing on.
   * Add new functions tod_bonus() and base_tod_bonus() to get the bonus on a specific location
  WML Engine
   * add 'unslowable' and 'unpetrifiable' status to immune to slow or petrifies
   * Schema validation now checks whether string values are translatable or not, according to what the
     schema specifies.
   * Fix schema validation rejecting Lua AI goals
   * Unit special notes are now read directly from weapon specials, abilities, and a few other places, meaning
     the `[special_note]` tag is usually not required in `[unit]` or `[unit_type]`.
   * A warning is now displayed when the next scenario is unknown.
   * Changed the default duration for `[print]` to 5000 milliseconds, and added support for `duration=unlimited`.
  Miscellaneous and Bug Fixes
   * The unit description tooltip in the sidebar now includes the text from `[special_note]`s.
   * Added a collection of item images
   * AI: fixed crash when using attacks aspect with invalidate_on_gamestate_change=no
   * AI: fixed crash when using custom_synced_commands
   * Micro AIs: fixed unit variables getting lost when continuing from replay
   * Fixed AI state initialization problem after reloading

Version 1.15.13
  Add-ons client
   * The details panel now shows the list of tags in each add-on.
   * Added a filter based on tags.
  Lua API
   * Added `pango_color` to the `wesnoth.colors` table, for easy use in formatted text.
   * Add new function `filesystem.resolve_asset` to convert `[binary_path]` relative paths to data-relative paths.
   * Add new function `filesystem.have_asset` which can determine if an image or sound exists.
   * `wesnoth.have_file`, `wesnoth.read_file`, `wesnoth.image_size` moved to new `filesystem` library
   * Add a more advanced way of manipulating version strings via `wesnoth.version` constructor function.
   * Add a `wesnoth.scenario` data module that consolidates everything there is to know about the current scenario. Much of this information was previously available through `wesnoth.game_config`, 
but there are some new details too.
   * Fixed a regression introduced in 1.15.5 causing GUI2 widgets set to a hidden state to remain visible but not able to be interacted with.
   * Fixed a regression introduced in 1.15.5 causing GUI2 listboxes to break when cleared and re-filled under certain circumstances.
  Packaging
   * Increased minimum required version of SDL to 2.0.8.
  Translations
   * Updated translations: British English, Czech, Dutch, Italian, Russian.
  Units
   * Horses added
   * Seahorse added
   * Zombie horse variation added
   * Update piglet/boar graphics
  User interface
   * The multiplayer "turns over" dialog now uses each team's colors when showing teams' names.
  WML Engine
   * Modify implementation of overwrite_specials attribute for replace yes/no parameter by none/one_side/both_sides and select abilities used like weapons and specials who must be overwrited(owned by 
fighter where special applied or both)
   * Add a `ability_id_active` attribute to `[filter]`
   * `[terrain_mask]` now accepts `mask_file` as an alternative to an inline mask. The file is loaded from the same place as `map_file` in the `[scenario]` tag (ie, a maps/ subdirectory of your 
binary path). Anyone who prefers to keep masks separate from regular maps is free to make a subdirectory for their masks (or just keep all their masks inline).
   * `[effect]apply_to=movement` now always affects vision too, except when given the `apply_to_vision=no` attribute
  Miscellaneous and Bug Fixes
   * More optimization in the UI drawing code, fixes the crash displaying the full credits.
   * Made GUI.pyw compatible with Python 3.9.
   * Removed workarounds for bugs affecting older SDL 2.0 versions, including an extra copy of the game screen made during gamemap scrolling.
   * FPS values calculated when the :fps or :benchmark are now written to a file which can then be used to track FPS values over time.
   * Removed old image optimisation scripts, as there's a rewrite in Python.

Version 1.15.12
  Add-ons client
   * When uploading or deleting an add-on, the game will now prompt for the required password if it is not present in the `_server.pbl` file.
  AI
   * Improved AI decisions about whether an attack with poison is better than one with higher direct damage.
   * Added options to the Patrol Micro AI on whether to notice invisible units, and on attack range.
   * Added a `[filter]` option to the Swarm Micro AI.
   * Replaced several uses of Formula AIs with Micro AIs, and removed Formula AIs from demo scenarios.
   * Removed experimental MP dev Formula AIs.
   * Fixed a crash in the Lurker Formula AI.
  Campaigns
   * Descent into Darkness
     * Buffed Malin.
   * Eastern Invasion
     * Dialogue changes in S07b.
   * Legend of Wesmere
     * S16: Replaced the Patrol Formula AI with the Patrol Micro AI.
   * Secrets of the Ancients
     * Reimplemented the zombie recruitment UI.
   * The Rise of Wesnoth
     * Balance changes.
   * The South Guard
     * Fix the new ally's upkeep when choosing the bandit branch.
   * Tutorial
     * Reimplemented the character-choice UI.
   * Under the Burning Suns
     * In S01, fixed one of the mystics spawning in the lake.
  Lua API
   * Fix issues with the wesnoth.map module.
  Multiplayer
   * Dark Forecast
     * Difficulty rebalanced so that two-player-mode is hard rather than impossible.
     * The weather now changes on side 1's turn instead of side 3's turn.
   * World Conquest
     * Many bugs have been fixed, however WC is still hidden while more bugs are fixed.
     * Converted GUI2 dialogs to WML.
     * Fixed an error in the destruction mechanic.
  Packaging
   * Removed the obsolete FindSDL2_ttf cmake module.
  Terrain
   * Improved transition between human castle ruins and sunken ruins.
  Translations
   * Updated translations: Chinese (Traditional), Czech, Italian.
  Units
   * New rock scorpion monster and scorpion zombie variation.
   * Rename tusker/gorer references to boars and piglets, to avoid stepping on existing UMC.
   * Dune Blademaster gold cost changed from 52 to 57.
   * Dune Captain alignment changed from liminal to lawful.
   * Dune Cataphract gold cost changed from 61 to 62.
   * Dune Firetrooper gold cost changed from 50 to 41.
   * Dune Harrier gold cost changed from 46 to 47.
   * Dune Luminary gold cost changed from 53 to 38.
   * Dune Maruder gold cost changed from 52 to 60.
   * Dune Sky Hunter gold cost changed from 47 to 51.
   * Dune Spearmaster gold cost changed from 51 to 57.
   * Dune Wayfarer gold cost changed from 52 to 55.
   * Dune Windbolt gold cost changed from 50 to 49.
   * Dune Warmaster gold cost changed from 56 to 57, hp changed from 57 to 59, alignment changed from liminal to lawful.
   * Naga Ophidian gold cost changed from 24 to 22, melee damage changed from 7 to 6, ranged damage changed from 10 to 12.
   * Naga Ringcaster gold cost changed from 24 to 22.
   * Naga Sicarus gold cost changed from 48 to 46, melee damage changed from 10 to 9, ranged damage changed from 12 to 13.
   * Naga Zephyr gold cost changed from 50 to 46.
   * Wose Sapling gold cost changed from 10 to 11.
   * Wose Shaman gold cost changed from 40 to 27, movement points changed from 3 to 4, melee damage changed from 9 to 12, ranged damage changed from 10 to 11, hp changed from 50 to 56.
   * Horned Scarab gold cost changed from 12 to 11.
   * Fixed the Walking Corpses of some river creatures having poor movement in deep water.
   * New descriptions for the Fire Ant, Roc and Sand Scuttler.
   * Fixed the Giant Scorpion having an empty variation name.
  User interface
   * Improved the attack dialog's recommendation about whether an attack with poison is better than one with higher direct damage.
   * Added logs folder path to the Game Version dialog on Windows.
   * Added built-in Lua engine version to the Game Version dialog and `--report`.
   * Made Accelerated Speed toggle announcement not stackable over itself or other announcements.
   * Minor adjustments to the sidebar's minimap area in the default game theme to reclaim empty and uneven space back. Note that this WILL break custom WML themes that use the same sidebar graphics 
as the default theme.
   * Minor adjustment to the placement of numerals on the debug clock.
   * Players now receive an error message when attempting to save games using illegal file names.
   * Fixed text labels containing only a single link becoming empty.
   * Separated floating labels' duration from the speed of their eventual fade-out.
   * Fixed font family leakage from GUI2 canvases to GUI1 elements such as the in-game chat overlay.
  WML Engine
   * In development builds, deprecation warnings are now shown in-game by default.
   * Conditional WML's `[variable]` tag now expects exactly one comparison, and will warn if given none or multiple tests.
   * `[store_reachable_locations]range=vision` now calculates vision, instead of using movement costs and max movement points.
  Miscellaneous and Bug Fixes
   * Fixed units with max movement set to zero being given one max movement point by `[unstore_unit]` or when loading a saved game.
   * Fixed an intermittent crash on the loading screen.
   * wmlunits (units.wesnoth.org) no longer incorrectly assumes that units with movement costs equal to their maximum movement can't move into the affected terrains.
   * Fixed a bug where log domains' severity could accidentally be reduced.
   * Changed the verbosity and error-handling of the `run_wml_tests` script.
   * Made `run_wml_tests` automatically skip tests which need strict mode when running without strict mode.
   * Made optimizations in the UI drawing code, these shouldn't have visible effects.
   * Optimized the command-line `wesnoth_addon_manager` tool.


To generate a diff of this commit:
cvs rdiff -u -r1.173 -r1.174 pkgsrc/games/wesnoth/Makefile
cvs rdiff -u -r1.59 -r1.60 pkgsrc/games/wesnoth/PLIST
cvs rdiff -u -r1.78 -r1.79 pkgsrc/games/wesnoth/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/games/wesnoth/patches/patch-CMakeLists.txt \
    pkgsrc/games/wesnoth/patches/patch-src_CMakeLists.txt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/games/wesnoth/Makefile
diff -u pkgsrc/games/wesnoth/Makefile:1.173 pkgsrc/games/wesnoth/Makefile:1.174
--- pkgsrc/games/wesnoth/Makefile:1.173 Wed Sep 29 19:00:41 2021
+++ pkgsrc/games/wesnoth/Makefile       Tue Nov  2 18:35:04 2021
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.173 2021/09/29 19:00:41 adam Exp $
+# $NetBSD: Makefile,v 1.174 2021/11/02 18:35:04 adam Exp $
 
-DISTNAME=      wesnoth-1.14.17
-PKGREVISION=   2
+DISTNAME=      wesnoth-1.16.0
 CATEGORIES=    games
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=wesnoth/}
 EXTRACT_SUFX=  .tar.bz2
@@ -38,10 +37,13 @@ REPLACE_PYTHON+=    data/tools/imgcheck
 REPLACE_PYTHON+=       data/tools/journeylifter
 REPLACE_PYTHON+=       data/tools/rmtrans/rmtrans.py
 REPLACE_PYTHON+=       data/tools/steam-changelog
+REPLACE_PYTHON+=       data/tools/tmx_trackplacer
 REPLACE_PYTHON+=       data/tools/trackplacer
+REPLACE_PYTHON+=       data/tools/trackviewer.pyw
 REPLACE_PYTHON+=       data/tools/unit_tree/helpers.py
 REPLACE_PYTHON+=       data/tools/unit_tree/TeamColorizer
 REPLACE_PYTHON+=       data/tools/unit_tree/overview.py
+REPLACE_PYTHON+=       data/tools/wesnoth/trackplacer3/datatypes.py
 REPLACE_PYTHON+=       data/tools/wesnoth_addon_manager
 REPLACE_PYTHON+=       utils/ai_test/*.py
 REPLACE_PYTHON+=       utils/*.py
@@ -78,4 +80,5 @@ BUILDLINK_API_DEPENDS.pango+= pango>=1.1
 .include "../../security/openssl/buildlink3.mk"
 .include "../../sysutils/dbus/buildlink3.mk"
 .include "../../sysutils/desktop-file-utils/desktopdb.mk"
+.include "../../textproc/icu/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/games/wesnoth/PLIST
diff -u pkgsrc/games/wesnoth/PLIST:1.59 pkgsrc/games/wesnoth/PLIST:1.60
--- pkgsrc/games/wesnoth/PLIST:1.59     Fri Jun 25 10:38:01 2021
+++ pkgsrc/games/wesnoth/PLIST  Tue Nov  2 18:35:04 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.59 2021/06/25 10:38:01 adam Exp $
+@comment $NetBSD: PLIST,v 1.60 2021/11/02 18:35:04 adam Exp $
 bin/wesnoth
 bin/wesnothd
 man/ca/man6/wesnoth.6
@@ -11,41 +11,28 @@ man/en_GB/man6/wesnoth.6
 man/en_GB/man6/wesnothd.6
 man/es/man6/wesnoth.6
 man/es/man6/wesnothd.6
-man/et/man6/wesnothd.6
-man/fi/man6/wesnothd.6
 man/fr/man6/wesnoth.6
 man/fr/man6/wesnothd.6
 man/gl/man6/wesnothd.6
 man/hu/man6/wesnoth.6
 man/hu/man6/wesnothd.6
-man/id/man6/wesnothd.6
 man/it/man6/wesnoth.6
 man/it/man6/wesnothd.6
 man/ja/man6/wesnoth.6
 man/ja/man6/wesnothd.6
-man/lt/man6/wesnoth.6
 man/man6/wesnoth.6
 man/man6/wesnothd.6
-man/pl/man6/wesnothd.6
-man/pt/man6/wesnothd.6
 man/pt_BR/man6/wesnoth.6
 man/pt_BR/man6/wesnothd.6
 man/ru/man6/wesnoth.6
 man/ru/man6/wesnothd.6
-man/sk/man6/wesnothd.6
-man/sr/man6/wesnothd.6
-man/sr@ijekavian/man6/wesnothd.6
-man/sr@ijekavianlatin/man6/wesnothd.6
-man/sr@latin/man6/wesnothd.6
 man/tr/man6/wesnoth.6
 man/tr/man6/wesnothd.6
-man/uk/man6/wesnothd.6
-man/vi/man6/wesnothd.6
 man/zh_CN/man6/wesnoth.6
 man/zh_CN/man6/wesnothd.6
 man/zh_TW/man6/wesnoth.6
 man/zh_TW/man6/wesnothd.6
-${PLIST.icons}share/applications/wesnoth.desktop
+${PLIST.icons}share/applications/org.wesnoth.Wesnoth.desktop
 share/doc/wesnoth/html/images/README.md
 share/doc/wesnoth/html/images/de/game-screen-1.14.8+dev.jpg
 share/doc/wesnoth/html/images/de/main-menu-1.14.8+dev.jpg
@@ -66,15 +53,16 @@ share/doc/wesnoth/html/images/gl/multipl
 share/doc/wesnoth/html/images/gl/recruit-1.13.13+dev.jpg
 share/doc/wesnoth/html/images/gl/right_pane-1.13.13+dev.jpg
 share/doc/wesnoth/html/images/gl/top_pane-1.13.13+dev.jpg
-share/doc/wesnoth/html/images/it/game-screen-1.12.4.jpg
-share/doc/wesnoth/html/images/it/main-menu-1.12.4.jpg
-share/doc/wesnoth/html/images/it/multiplayer-1.12.4.jpg
-share/doc/wesnoth/html/images/it/recruit-1.12.4.jpg
-share/doc/wesnoth/html/images/it/right_pane-1.12.4.jpg
-share/doc/wesnoth/html/images/it/top_pane-1.12.4.jpg
+share/doc/wesnoth/html/images/it/game-screen-1.14.5+dev.jpg
+share/doc/wesnoth/html/images/it/main-menu-1.14.5+dev.jpg
+share/doc/wesnoth/html/images/it/multiplayer-1.14.5+dev.jpg
+share/doc/wesnoth/html/images/it/recruit-1.14.5+dev.jpg
+share/doc/wesnoth/html/images/it/right_pane-1.14.5+dev.jpg
+share/doc/wesnoth/html/images/it/top_pane-1.14.5+dev.jpg
 share/doc/wesnoth/html/images/main-menu-1.13.11+dev.jpg
 share/doc/wesnoth/html/images/multiplayer-1.13.11+dev.png
 share/doc/wesnoth/html/images/orb-blue.jpg
+share/doc/wesnoth/html/images/orb-disengaged.png
 share/doc/wesnoth/html/images/orb-green.jpg
 share/doc/wesnoth/html/images/orb-none.jpg
 share/doc/wesnoth/html/images/orb-red.jpg
@@ -137,6 +125,7 @@ share/doc/wesnoth/html/manual.vi.html
 share/doc/wesnoth/html/manual.zh_CN.html
 share/doc/wesnoth/html/manual.zh_TW.html
 share/doc/wesnoth/html/styles/manual.css
+${PLIST.icons}share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 ${PLIST.icons}share/icons/hicolor/128x128/apps/wesnoth-icon.png
 ${PLIST.icons}share/icons/hicolor/16x16/apps/wesnoth-icon.png
 ${PLIST.icons}share/icons/hicolor/256x256/apps/wesnoth-icon.png
@@ -147,15 +136,14 @@ share/wesnoth/data/COPYING.txt
 share/wesnoth/data/_main.cfg
 share/wesnoth/data/advanced_preferences.cfg
 share/wesnoth/data/ai/ais/ai_default_rca.cfg
-share/wesnoth/data/ai/ais/ai_generic_rush.cfg
+share/wesnoth/data/ai/ais/ai_default_rca_1_14.cfg
+share/wesnoth/data/ai/ais/ai_experimental.cfg
 share/wesnoth/data/ai/ais/idle_ai.cfg
 share/wesnoth/data/ai/aliases/dev_multiplayer.cfg
 share/wesnoth/data/ai/aliases/dev_singleplayer.cfg
 share/wesnoth/data/ai/aliases/idle.cfg
 share/wesnoth/data/ai/aliases/stable_singleplayer.cfg
 share/wesnoth/data/ai/dev/ai_default_rca_alternate_recruiting.cfg
-share/wesnoth/data/ai/dev/formula_ai.cfg
-share/wesnoth/data/ai/dev/formula_ai_poisoning.cfg
 share/wesnoth/data/ai/formula/level_up_attack_eval.fai
 share/wesnoth/data/ai/formula/level_up_attack_move.fai
 share/wesnoth/data/ai/formula/lib/map_evaluation.fai
@@ -171,14 +159,20 @@ share/wesnoth/data/ai/formula/scouting_e
 share/wesnoth/data/ai/formula/scouting_move.fai
 share/wesnoth/data/ai/lua/ai_helper.lua
 share/wesnoth/data/ai/lua/battle_calcs.lua
+share/wesnoth/data/ai/lua/ca_castle_switch.lua
+share/wesnoth/data/ai/lua/ca_grab_villages.lua
 share/wesnoth/data/ai/lua/ca_high_xp_attack.lua
+share/wesnoth/data/ai/lua/ca_move_to_any_enemy.lua
+share/wesnoth/data/ai/lua/ca_place_healers.lua
+share/wesnoth/data/ai/lua/ca_recruit_rushers.lua
+share/wesnoth/data/ai/lua/ca_retreat_injured.lua
+share/wesnoth/data/ai/lua/ca_spread_poison.lua
+share/wesnoth/data/ai/lua/ca_village_hunt.lua
 share/wesnoth/data/ai/lua/cache.lua
 share/wesnoth/data/ai/lua/debug.lua
 share/wesnoth/data/ai/lua/dummy_engine_lua.lua
 share/wesnoth/data/ai/lua/extCAexample.lua
 share/wesnoth/data/ai/lua/generic_recruit_engine.lua
-share/wesnoth/data/ai/lua/generic_rush_engine.lua
-share/wesnoth/data/ai/lua/move_to_any_target.lua
 share/wesnoth/data/ai/lua/patrol.lua
 share/wesnoth/data/ai/lua/retreat.lua
 share/wesnoth/data/ai/lua/stdlib.lua
@@ -285,39 +279,6 @@ share/wesnoth/data/ai/scenarios/scenario
 share/wesnoth/data/ai/scenarios/scenario-lua_ai_old_syntax.cfg
 share/wesnoth/data/ai/scenarios/scenario-poisoning.cfg
 share/wesnoth/data/ai/utils/default_config.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/_main.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/campaign_image.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/maps/aoi.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/maps/l10n/de/aoi--overlay.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/maps/l10n/gd/aoi--overlay.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/maps/l10n/gl/aoi--overlay.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/maps/l10n/it/aoi--overlay.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/maps/l10n/lt/aoi--overlay.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/maps/l10n/pt/aoi--overlay.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/maps/l10n/ru/aoi--overlay.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/maps/l10n/zh_CN/aoi--overlay.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/portraits/erlornas.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/portraits/linaera.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/portraits/lomarfel.png
-share/wesnoth/data/campaigns/An_Orcish_Incursion/images/story.jpg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/maps/01_Defend_the_Forest.map
-share/wesnoth/data/campaigns/An_Orcish_Incursion/maps/02_Assassins.map
-share/wesnoth/data/campaigns/An_Orcish_Incursion/maps/03_Wasteland.map
-share/wesnoth/data/campaigns/An_Orcish_Incursion/maps/04_Valley_of_Trolls.map
-share/wesnoth/data/campaigns/An_Orcish_Incursion/maps/05_Linaera_the_Quick.map
-share/wesnoth/data/campaigns/An_Orcish_Incursion/maps/06_A_Detour_through_the_Swamp.map
-share/wesnoth/data/campaigns/An_Orcish_Incursion/maps/07_Showdown.map
-share/wesnoth/data/campaigns/An_Orcish_Incursion/scenarios/01_Defend_the_Forest.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/scenarios/02_Assassins.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/scenarios/03_Wasteland.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/scenarios/04_Valley_of_Trolls.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/scenarios/05_Linaera_the_Quick.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/scenarios/06_A_Detour_through_the_Swamp.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/scenarios/07_Showdown.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/utils/bigmap.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/utils/characters.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/utils/deaths.cfg
-share/wesnoth/data/campaigns/An_Orcish_Incursion/utils/macros.cfg
 share/wesnoth/data/campaigns/Dead_Water/HISTORY
 share/wesnoth/data/campaigns/Dead_Water/_main.cfg
 share/wesnoth/data/campaigns/Dead_Water/images/attacks/fist-merman.png
@@ -356,56 +317,14 @@ share/wesnoth/data/campaigns/Dead_Water/
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/brawler-tail-land-4.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/brawler-tail-land-5.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/brawler.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/child_king-attack-1.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/child_king-attack-2.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/child_king-attack-3.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/child_king-attack-3n.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/child_king-attack-4.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/child_king-attack-5.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/child_king-defend.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/child_king.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/citizen-defend.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/citizen-fist-1.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/citizen-fist-2.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/citizen-fist-3.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/citizen.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-attack-1.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-attack-2.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-attack-3.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-attack-4.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-attack-4n.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-attack-5.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-attack-6.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-attack-7.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-attack-8.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-defend.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king-leading.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/soldier_king.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-1.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-2.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-3.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-4.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-4n.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-5.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-6.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-7.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-8.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-attack-9.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-defend.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king-leading.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/warrior_king.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-1.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-2.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-3.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-4.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-4n.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-5.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-6.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-7.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-8.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-attack-9.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-defend.png
-share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king-leading.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/merfolk/young_king.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/monsters/kraken-defend.png
 share/wesnoth/data/campaigns/Dead_Water/images/units/monsters/kraken-n-defend.png
@@ -455,18 +374,6 @@ share/wesnoth/data/campaigns/Dead_Water/
 share/wesnoth/data/campaigns/Delfadors_Memoirs/HISTORY
 share/wesnoth/data/campaigns/Delfadors_Memoirs/_main.cfg
 share/wesnoth/data/campaigns/Delfadors_Memoirs/images/campaign_image.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-ranged-halo1.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-ranged-halo2.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-ranged-halo3.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-ranged-halo4.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-stationary-halo1.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-stationary-halo2.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-stationary-halo3.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-stationary-halo4.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-stationary-halo5.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-stationary-halo6.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-stationary-halo7.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/halo/wose-stationary-halo8.png
 share/wesnoth/data/campaigns/Delfadors_Memoirs/images/land-of-the-dead.png
 share/wesnoth/data/campaigns/Delfadors_Memoirs/images/portraits/README.md
 share/wesnoth/data/campaigns/Delfadors_Memoirs/images/portraits/chantal-druid.png
@@ -490,7 +397,6 @@ share/wesnoth/data/campaigns/Delfadors_M
 share/wesnoth/data/campaigns/Delfadors_Memoirs/images/story/portraits/garard-large.png
 share/wesnoth/data/campaigns/Delfadors_Memoirs/images/story/portraits/sagus.png
 share/wesnoth/data/campaigns/Delfadors_Memoirs/images/story/portraits/young_delfador-large.png
-share/wesnoth/data/campaigns/Delfadors_Memoirs/images/units/wose-shaman.png
 share/wesnoth/data/campaigns/Delfadors_Memoirs/images/young_delfador.png
 share/wesnoth/data/campaigns/Delfadors_Memoirs/maps/01_Overture.map
 share/wesnoth/data/campaigns/Delfadors_Memoirs/maps/02_This_Valley_Belongs_to_Me.map
@@ -543,7 +449,6 @@ share/wesnoth/data/campaigns/Delfadors_M
 share/wesnoth/data/campaigns/Delfadors_Memoirs/units/Mage_Commander.cfg
 share/wesnoth/data/campaigns/Delfadors_Memoirs/units/Mage_Leader.cfg
 share/wesnoth/data/campaigns/Delfadors_Memoirs/units/Mage_Magister.cfg
-share/wesnoth/data/campaigns/Delfadors_Memoirs/units/Wose_Shaman.cfg
 share/wesnoth/data/campaigns/Delfadors_Memoirs/utils/bigmap.cfg
 share/wesnoth/data/campaigns/Delfadors_Memoirs/utils/characters.cfg
 share/wesnoth/data/campaigns/Delfadors_Memoirs/utils/deaths.cfg
@@ -555,6 +460,7 @@ share/wesnoth/data/campaigns/Delfadors_M
 share/wesnoth/data/campaigns/Delfadors_Memoirs/utils/sides.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/_main.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/campaign_image.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/items/ball-dark.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/items/potion-clear.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/maps/did.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/maps/l10n/de/did--overlay.png
@@ -565,17 +471,30 @@ share/wesnoth/data/campaigns/Descent_Int
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/maps/l10n/ru/did--overlay.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/maps/l10n/zh_CN/did--overlay.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/misc/book-icon.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/misc/fire-icon.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/misc/key-icon.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/misc/makeshift-altar.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/misc/new-journey-blue.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/misc/potion-blue-icon.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/misc/potion-icon.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/misc/potion-poison-icon.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/misc/weakened-ice.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/darken_volk.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/dela-mad.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/dela.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/drogan.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/karae.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/malin_lich-ancient.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/malin_lich.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/malin_old-decay.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/malin_old.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/portraits/malin_young.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/scenery/black-monolith.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/scenery/dark-monolith.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/scenery/orcish-flag-flat.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/scenery/orcish-flag-flat2.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/scenery/white-monolith.png
+share/wesnoth/data/campaigns/Descent_Into_Darkness/images/scenery/whitefang-flag.png
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/story/book.jpg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/story/end.jpg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/images/story/parthyn.jpg
@@ -615,39 +534,46 @@ share/wesnoth/data/campaigns/Descent_Int
 share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/01_Saving_Parthyn.map
 share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/02_Peaceful_Valley.map
 share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/03_A_Haunting_in_Winter.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/04_Beginning_of_the_Revenge.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/05_Orc_War.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/04_Spring_of_Reprisal.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/05_Schism.map
 share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/06_Return_to_Parthyn.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/07_A_Small_Favor.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/08_A_Small_Favor2.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/09_A_Small_Favor3.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/10_Alone_at_Last.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/11_Descent_into_Darkness.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/11a_Descent_into_Darkness.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/12_Endless_Night.map
-share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/12a_Endless_Night.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/07a_A_Small_Favor.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/07b_A_Small_Favor2.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/07c_A_Small_Favor3.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/08_Alone_at_Last.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/09_Descent_into_Darkness.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/09a_Descent_into_Darkness.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/10_Endless_Night.map
+share/wesnoth/data/campaigns/Descent_Into_Darkness/maps/10a_Endless_Night.map
 share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/01_Saving_Parthyn.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/02_Peaceful_Valley.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/03_A_Haunting_in_Winter.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/04_Beginning_of_the_Revenge.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/05_Orc_War.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/04_Spring_of_Reprisal.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/05_Schism.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/06_Return_to_Parthyn.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/07_A_Small_Favor.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/08_A_Small_Favor2.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/09_A_Small_Favor3.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/10_Alone_at_Last.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/11_Descent_into_Darkness.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/12_Endless_Night.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/07a_A_Small_Favor.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/07b_A_Small_Favor2.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/07c_A_Small_Favor3.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/08_Alone_at_Last.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/09_Descent_into_Darkness.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/scenarios/10_Endless_Night.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Apprentice_Mage.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Apprentice_Necromancer.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Dark_Adept.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Dark_Mage.cfg
-share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Dark_Sorcerer.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Frontier_Baroness.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Ghast.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Ghoul.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Mal_Keshar.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Malin_Keshar.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Necrophage.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/units/Spectral_Servant.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/utils/abilities.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/utils/amlas.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/utils/bigmap.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/utils/characters.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/utils/deaths.cfg
 share/wesnoth/data/campaigns/Descent_Into_Darkness/utils/macros.cfg
+share/wesnoth/data/campaigns/Descent_Into_Darkness/utils/traits.cfg
 share/wesnoth/data/campaigns/Eastern_Invasion/_main.cfg
 share/wesnoth/data/campaigns/Eastern_Invasion/ai/ca_ogres_flee.lua
 share/wesnoth/data/campaigns/Eastern_Invasion/images/campaign_image.png
@@ -721,6 +647,7 @@ share/wesnoth/data/campaigns/Eastern_Inv
 share/wesnoth/data/campaigns/Eastern_Invasion/scenarios/17a_The_Duel.cfg
 share/wesnoth/data/campaigns/Eastern_Invasion/scenarios/17b_Weldyn_Besieged.cfg
 share/wesnoth/data/campaigns/Eastern_Invasion/scenarios/18_Epilogue.cfg
+share/wesnoth/data/campaigns/Eastern_Invasion/sounds/gate-fall.ogg
 share/wesnoth/data/campaigns/Eastern_Invasion/units/Bone_Knight.cfg
 share/wesnoth/data/campaigns/Eastern_Invasion/units/Horse_Lord.cfg
 share/wesnoth/data/campaigns/Eastern_Invasion/units/Lich_Lord.cfg
@@ -739,7 +666,6 @@ share/wesnoth/data/campaigns/Eastern_Inv
 share/wesnoth/data/campaigns/Eastern_Invasion/utils/throneroom.cfg
 share/wesnoth/data/campaigns/Heir_To_The_Throne/_main.cfg
 share/wesnoth/data/campaigns/Heir_To_The_Throne/images/campaign_image.png
-share/wesnoth/data/campaigns/Heir_To_The_Throne/images/icon_armor.png
 share/wesnoth/data/campaigns/Heir_To_The_Throne/images/maps/httt.png
 share/wesnoth/data/campaigns/Heir_To_The_Throne/images/maps/l10n/de/httt--overlay.png
 share/wesnoth/data/campaigns/Heir_To_The_Throne/images/maps/l10n/gd/httt--overlay.png
@@ -996,8 +922,6 @@ share/wesnoth/data/campaigns/Legend_of_W
 share/wesnoth/data/campaigns/Legend_of_Wesmere/images/story/characters/lord.png
 share/wesnoth/data/campaigns/Legend_of_Wesmere/images/story/characters/olurf.png
 share/wesnoth/data/campaigns/Legend_of_Wesmere/images/story/characters/uradredia.png
-share/wesnoth/data/campaigns/Legend_of_Wesmere/images/units/monsters/great-ogre.png
-share/wesnoth/data/campaigns/Legend_of_Wesmere/images/units/ogres/great-ogre.png
 share/wesnoth/data/campaigns/Legend_of_Wesmere/lua/wml_tags.lua
 share/wesnoth/data/campaigns/Legend_of_Wesmere/maps/02_Hostile_Mountains.map
 share/wesnoth/data/campaigns/Legend_of_Wesmere/maps/04_The_Elvish_Treasury.map
@@ -1045,7 +969,6 @@ share/wesnoth/data/campaigns/Legend_of_W
 share/wesnoth/data/campaigns/Legend_of_Wesmere/scenarios/chapter5/22_Northern_Battle.cfg
 share/wesnoth/data/campaigns/Legend_of_Wesmere/scenarios/chapter5/23_End_of_War.cfg
 share/wesnoth/data/campaigns/Legend_of_Wesmere/scenarios/chapter5/24_Epilogue.cfg
-share/wesnoth/data/campaigns/Legend_of_Wesmere/units/ogres/Great_Ogre.cfg
 share/wesnoth/data/campaigns/Legend_of_Wesmere/utils/abilities.cfg
 share/wesnoth/data/campaigns/Legend_of_Wesmere/utils/bigmap.cfg
 share/wesnoth/data/campaigns/Legend_of_Wesmere/utils/characters.cfg
@@ -1131,18 +1054,18 @@ share/wesnoth/data/campaigns/Liberty/map
 share/wesnoth/data/campaigns/Liberty/maps/03_Strategy_of_Hope.map
 share/wesnoth/data/campaigns/Liberty/maps/04_Unlawful_Orders.map
 share/wesnoth/data/campaigns/Liberty/maps/05_Hide_and_Seek.map
-share/wesnoth/data/campaigns/Liberty/maps/06_The_Grey_Woods.map
-share/wesnoth/data/campaigns/Liberty/maps/07_The_Hunters.map
-share/wesnoth/data/campaigns/Liberty/maps/08_Glory.map
+share/wesnoth/data/campaigns/Liberty/maps/06_The_Hunters.map
+share/wesnoth/data/campaigns/Liberty/maps/07_Glory.map
+share/wesnoth/data/campaigns/Liberty/masks/04_Unlawful_Orders_1.mask
+share/wesnoth/data/campaigns/Liberty/masks/04_Unlawful_Orders_2.mask
 share/wesnoth/data/campaigns/Liberty/scenarios/01_The_Raid.cfg
 share/wesnoth/data/campaigns/Liberty/scenarios/02_Civil_Disobedience.cfg
 share/wesnoth/data/campaigns/Liberty/scenarios/03_A_Strategy_Of_Hope.cfg
 share/wesnoth/data/campaigns/Liberty/scenarios/04_Unlawful_Orders.cfg
 share/wesnoth/data/campaigns/Liberty/scenarios/05_Hide_and_Seek.cfg
-share/wesnoth/data/campaigns/Liberty/scenarios/06_The_Grey_Woods.cfg
-share/wesnoth/data/campaigns/Liberty/scenarios/07_The_Hunters.cfg
-share/wesnoth/data/campaigns/Liberty/scenarios/08_Glory.cfg
-share/wesnoth/data/campaigns/Liberty/scenarios/09_Epilogue.cfg
+share/wesnoth/data/campaigns/Liberty/scenarios/06_The_Hunters.cfg
+share/wesnoth/data/campaigns/Liberty/scenarios/07_Glory.cfg
+share/wesnoth/data/campaigns/Liberty/scenarios/08_Epilogue.cfg
 share/wesnoth/data/campaigns/Liberty/units/Bone_Knight.cfg
 share/wesnoth/data/campaigns/Liberty/units/Death_Squire.cfg
 share/wesnoth/data/campaigns/Liberty/units/Rogue_Mage.cfg
@@ -1154,12 +1077,7 @@ share/wesnoth/data/campaigns/Liberty/uti
 share/wesnoth/data/campaigns/Liberty/utils/utils.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/_main.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/images/campaign_image.png
-share/wesnoth/data/campaigns/Northern_Rebirth/images/ellipse/unprivileged-leader-bottom.png
-share/wesnoth/data/campaigns/Northern_Rebirth/images/ellipse/unprivileged-leader-selected-bottom.png
-share/wesnoth/data/campaigns/Northern_Rebirth/images/ellipse/unprivileged-leader-selected-top.png
-share/wesnoth/data/campaigns/Northern_Rebirth/images/ellipse/unprivileged-leader-top.png
 share/wesnoth/data/campaigns/Northern_Rebirth/images/floor-corpse.png
-share/wesnoth/data/campaigns/Northern_Rebirth/images/hatchling.png
 share/wesnoth/data/campaigns/Northern_Rebirth/images/maps/l10n/de/nr--overlay.png
 share/wesnoth/data/campaigns/Northern_Rebirth/images/maps/l10n/gd/nr--overlay.png
 share/wesnoth/data/campaigns/Northern_Rebirth/images/maps/l10n/gl/nr--overlay.png
@@ -1181,7 +1099,6 @@ share/wesnoth/data/campaigns/Northern_Re
 share/wesnoth/data/campaigns/Northern_Rebirth/images/portraits/Sisal.png
 share/wesnoth/data/campaigns/Northern_Rebirth/images/portraits/Sister_Thera.png
 share/wesnoth/data/campaigns/Northern_Rebirth/images/portraits/Stalrag.png
-share/wesnoth/data/campaigns/Northern_Rebirth/images/portraits/Tallin-Evil.png
 share/wesnoth/data/campaigns/Northern_Rebirth/images/portraits/Tallin.png
 share/wesnoth/data/campaigns/Northern_Rebirth/lua/respawn_utils.lua
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/01_Breaking_the_Chains.map
@@ -1191,15 +1108,10 @@ share/wesnoth/data/campaigns/Northern_Re
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/04_Clearing_the_Mines.map
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/05a_01_The_Pursuit.map
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/05a_02_Dealings.map
-share/wesnoth/data/campaigns/Northern_Rebirth/maps/05b_Compelled.map
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/06a_Old_Friend.map
-share/wesnoth/data/campaigns/Northern_Rebirth/maps/06b_Slave_of_the_Undead.map
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/07a_Settling_Disputes.map
-share/wesnoth/data/campaigns/Northern_Rebirth/maps/07b_Protecting_the_Master.map
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/08a_Elvish_Princess.map
-share/wesnoth/data/campaigns/Northern_Rebirth/maps/08b_Ray_of_Hope.map
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/09a_Introductions.map
-share/wesnoth/data/campaigns/Northern_Rebirth/maps/09b_Judgment.map
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/10a_Stolen_Gold.map
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/11a_The_Eastern_Flank.map
 share/wesnoth/data/campaigns/Northern_Rebirth/maps/12a_Get_the_Gold.map
@@ -1212,15 +1124,10 @@ share/wesnoth/data/campaigns/Northern_Re
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/04_Clearing_the_Mines.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/05a_01_The_Pursuit.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/05a_02_Dealings.cfg
-share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/05b_Compelled.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/06a_Old_Friend.cfg
-share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/06b_Slave_of_the_Undead.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/07a_Settling_Disputes.cfg
-share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/07b_Protecting_the_Master.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/08a_Elvish_Princess.cfg
-share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/08b_Ray_of_Hope.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/09a_Introductions.cfg
-share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/09b_Judgment.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/10a_Stolen_Gold.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/11a_The_Eastern_Flank.cfg
 share/wesnoth/data/campaigns/Northern_Rebirth/scenarios/12a_Get_the_Gold.cfg
@@ -1236,6 +1143,7 @@ share/wesnoth/data/campaigns/Sceptre_of_
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/campaign_image.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/items/coal.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/items/gold.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/items/ruby.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/maps/l10n/de/sof--overlay.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/maps/l10n/gl/sof--overlay.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/maps/l10n/it/sof--overlay.png
@@ -1245,6 +1153,12 @@ share/wesnoth/data/campaigns/Sceptre_of_
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/maps/sof.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/misc/coal-icon.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/misc/gold-icon.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/misc/mine-cart-mask-n.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/misc/mine-cart-mask-ne.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/misc/mine-cart-n.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/misc/mine-cart-ne.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/misc/rune_icon.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/misc/rune_overlay.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/alanin-epilogue.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/alanin-old.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/alanin-older.png
@@ -1256,7 +1170,7 @@ share/wesnoth/data/campaigns/Sceptre_of_
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/elvish_marshal.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/haldric-ii-old.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/haldric-ii.png
-share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/khrakrahs.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/monsters/wyrm.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/rugnur.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/portraits/thursagan.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/gate-left-down.png
@@ -1274,6 +1188,21 @@ share/wesnoth/data/campaigns/Sceptre_of_
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/gate-right-rising-2.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/gate-right-rising-3.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/gate-right-up.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/chasm-wall-fire-n.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/chasm-wall-fire-ne.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/chasm-wall-fire-nw.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/edge-n.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/edge-ne.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/edge-nw.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/edge-s.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/edge-se.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/edge-sw.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/rune-1.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/rune-2.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/rune-3.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/rune-4.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/rune-5.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/terrain/volcano/rune-6.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/dwarves/caravan.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-attack-1.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-attack-2.png
@@ -1291,13 +1220,21 @@ share/wesnoth/data/campaigns/Sceptre_of_
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/heroes/haldric-ii-sword-3.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/heroes/haldric-ii-sword-4.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/heroes/haldric-ii.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrm-se-1.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrm-se-2.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrm-se-3.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrm-se-4.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrm-se-5.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrmlet-se-1.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrmlet-se-2.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrmlet-se-3.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrmlet-se-4.png
+share/wesnoth/data/campaigns/Sceptre_of_Fire/images/units/monsters/wyrmlet-se-5.png
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/1_A_Bargain_is_Struck.map
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/2_Closing_the_Gates.map
-share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/2t_In_the_Dwarven_City.map
+share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/2p5_Reaching_the_Runecrafter.map
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/3_Searching_for_the_Runecrafter.map
-share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/3t_The_Council_Regathers.map
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/4_Gathering_Materials-random.mask
-share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/4t_The_Jeweler.map
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/5_Hills_of_the_Shorbear_Clan.map
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/6_Towards_the_Caves.map
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/7_Outriding_the_Outriders.map
@@ -1313,9 +1250,11 @@ share/wesnoth/data/campaigns/Sceptre_of_
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o8.mask
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o9.mask
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_of.mask
+share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/Dwarven_City.map
 share/wesnoth/data/campaigns/Sceptre_of_Fire/maps/Epilogue.map
 share/wesnoth/data/campaigns/Sceptre_of_Fire/scenarios/1_A_Bargain_is_Struck.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/scenarios/2_Closing_the_Gates.cfg
+share/wesnoth/data/campaigns/Sceptre_of_Fire/scenarios/2p5_Reaching_the_Runecrafter.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/scenarios/2t_In_the_Dwarven_City.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/scenarios/3_Searching_for_the_Runecrafter.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/scenarios/3t_The_Council_Regathers.cfg
@@ -1328,11 +1267,19 @@ share/wesnoth/data/campaigns/Sceptre_of_
 share/wesnoth/data/campaigns/Sceptre_of_Fire/scenarios/9_Caverns_of_Flame.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/scenarios/Epilogue.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/units/Caravan.cfg
+share/wesnoth/data/campaigns/Sceptre_of_Fire/units/Cave_Wyrm.cfg
+share/wesnoth/data/campaigns/Sceptre_of_Fire/units/Cave_Wyrmlet.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/units/Dwarvish_Miner.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/units/Haldric_II.cfg
+share/wesnoth/data/campaigns/Sceptre_of_Fire/units/Red_Wyrm.cfg
+share/wesnoth/data/campaigns/Sceptre_of_Fire/units/Red_Wyrmlet.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/utils/bigmap.cfg
+share/wesnoth/data/campaigns/Sceptre_of_Fire/utils/cart-utils.cfg
+share/wesnoth/data/campaigns/Sceptre_of_Fire/utils/rune-equip.cfg
+share/wesnoth/data/campaigns/Sceptre_of_Fire/utils/terrain.cfg
 share/wesnoth/data/campaigns/Sceptre_of_Fire/utils/utils.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/_main.cfg
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/gui/zombie_recruit_dialog.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/items/altar-sacrifice.png
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/items/bird-bones.png
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/items/boat.png
@@ -1515,10 +1462,31 @@ share/wesnoth/data/campaigns/Secrets_of_
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/orcish-shaman.png
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/rastabahn-on-altar.png
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/sailor.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/sea-captain-undead.png
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/sea-captain.png
-share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/skeleton-se-sacrifice5.png
-share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/skeleton-se-sacrifice6.png
-share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/skeleton-se-sacrifice7.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/corpses-full.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/corpses-unit.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/skeleton-se-sacrifice5.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/skeleton-se-sacrifice6.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/skeleton-se-sacrifice7.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/soulless-wolf-rider-attack-n.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/soulless-wolf-rider-attack-s.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/soulless-wolf-rider-attack.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/soulless-wolf-rider-defend.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/soulless-wolf-rider-die-1.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/soulless-wolf-rider-die-2.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/soulless-wolf-rider-die-3.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/soulless-wolf-rider-die-4.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/soulless-wolf-rider.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/zombie-wolf-rider-attack-n.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/zombie-wolf-rider-attack-s.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/zombie-wolf-rider-attack.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/zombie-wolf-rider-defend.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/zombie-wolf-rider-die-1.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/zombie-wolf-rider-die-2.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/zombie-wolf-rider-die-3.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/zombie-wolf-rider-die-4.png
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/images/units/undead/zombie-wolf-rider.png
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/maps/01_Slipping_Away.map
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/maps/02_Dark_Business.map
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/maps/03_Bandits.map
@@ -1584,12 +1552,18 @@ share/wesnoth/data/campaigns/Secrets_of_
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/units/Sailor.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/units/Sea_Captain.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/units/Skele_Sacrifice.cfg
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/units/SotA_Corpses.cfg
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/units/SotA_Soulless.cfg
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/characters.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/journey_chapter1.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/journey_chapter2.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/journey_chapter3.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/sota-utils.cfg
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/terrain-compat.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/terrain.cfg
 share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/terrain_graphics.cfg
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/zombie-utils.cfg
+share/wesnoth/data/campaigns/Secrets_of_the_Ancients/utils/zombie_recruit_dialog.lua
 share/wesnoth/data/campaigns/Son_Of_The_Black_Eye/_main.cfg
 share/wesnoth/data/campaigns/Son_Of_The_Black_Eye/ai/ca_transport_S6.lua
 share/wesnoth/data/campaigns/Son_Of_The_Black_Eye/images/campaign_image.png
@@ -1751,6 +1725,23 @@ share/wesnoth/data/campaigns/The_Hammer_
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-ranged1.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-ranged2.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-attack-1.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-attack-2.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-attack-3.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-attack-4.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-attack-5.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-attack-6.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-attack-7.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-attack-8.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-bob1.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-bob2.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-bob3.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-bob4.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-bob5.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-bob6.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-defend-1.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker-defend-2.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_berserker.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-attack-n.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-attack-ne.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-attack-s.png
@@ -1811,6 +1802,21 @@ share/wesnoth/data/campaigns/The_Hammer_
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard-melee1.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard-melee2.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-attack-1.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-attack-2.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-attack-3.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-attack-4.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-attack-5.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-attack-6.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-attack-7.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-attack-8.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-bob-1.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-bob-2.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-bob-3.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-bob-4.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-bob-5.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker-bob-6.png
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_ulfserker.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack1.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack2.png
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack3.png
@@ -1830,32 +1836,27 @@ share/wesnoth/data/campaigns/The_Hammer_
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/01_At_the_East_Gate.map
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/02_Reclaiming_the_Past.map
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/03_Strange_Allies.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/04_Troll_Bridge.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/05_Invaders.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/06_High_Pass.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/07_Mages_and_Drakes.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/08_Fear.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/09_Forbidden_Forest.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/10_The_Siege_of_Kal_Kartha.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/11_The_Court_of_Karrag.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/12_The_Underlevels.map
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/13_Epilogue.map
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/04_High_Pass.map
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/05_Fear.map
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/06_Forbidden_Forest.map
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/07_The_Siege_of_Kal_Kartha.map
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/08_The_Court_of_Karrag.map
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/09_The_Underlevels.map
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/maps/10_Epilogue.map
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/01_At_the_East_Gate.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/02_Reclaiming_the_Past.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/03_Strange_Allies.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/04_Troll_Bridge.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/05_Invaders.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/06_High_Pass.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/07_Mages_and_Drakes.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/08_Fear.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/09_Forbidden_Forest.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/10_The_Siege_of_Kal_Kartha.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/11_The_Court_of_Karrag.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/12_The_Underlevels.cfg
-share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/13_Epilogue.cfg
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/04_High_Pass.cfg
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/05_Fear.cfg
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/06_Forbidden_Forest.cfg
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/07_The_Siege_of_Kal_Kartha.cfg
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/08_The_Court_of_Karrag.cfg
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/09_The_Underlevels.cfg
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/scenarios/10_Epilogue.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/sounds/unlock.ogg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Annalist.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Loremaster.cfg
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Berserker.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Dragonguard.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Fighter.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Guardsman.cfg
@@ -1865,6 +1866,7 @@ share/wesnoth/data/campaigns/The_Hammer_
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Steelclad.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Thunderer.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Thunderguard.cfg
+share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Ulfserker.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Rune_Lord.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Witness.cfg
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/utils/abilities.cfg
@@ -1874,12 +1876,11 @@ share/wesnoth/data/campaigns/The_Hammer_
 share/wesnoth/data/campaigns/The_Hammer_of_Thursagan/utils/macros.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/_main.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/ai/ca_aggressive_attack_no_suicide.lua
-share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/ai/ca_retreat.lua
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/campaign_image.png
-share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/l10n/hu/green_isle--overlay.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/maps/great_continent.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/maps/green_isle.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/maps/l10n/de/green_isle--overlay.png
+share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/maps/l10n/hu/green_isle--overlay.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/maps/l10n/it/green_isle--overlay.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/maps/l10n/pt/green_isle--overlay.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/maps/l10n/ru/green_isle--overlay.png
@@ -1909,7 +1910,6 @@ share/wesnoth/data/campaigns/The_Rise_Of
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/rithrandil-winter.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/rithrandil.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/ruddry.png
-share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/shekkahan.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/tinry.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/typhon.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/story/l10n/es/trow-logo.png
@@ -2036,9 +2036,6 @@ share/wesnoth/data/campaigns/The_Rise_Of
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-staff-1.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-staff-2.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast.png
-share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/units/wose-sapling-attack.png
-share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/units/wose-sapling-defend.png
-share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/images/units/wose-sapling.png
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/maps/01_A_Summer_of_Storms.map
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/maps/02_The_Fall.map
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/maps/03_A_Harrowing_Escape.map
@@ -2093,6 +2090,7 @@ share/wesnoth/data/campaigns/The_Rise_Of
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/sounds/familiar-teeth.ogg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Autumn_Shyde.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Familiar.cfg
+share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Kalian.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Commander.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Fighter.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Lord.cfg
@@ -2102,7 +2100,6 @@ share/wesnoth/data/campaigns/The_Rise_Of
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Wesfolk_Lady.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Wesfolk_Leader.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Wesfolk_Outcast.cfg
-share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/units/Wose_Sapling.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/utils/bigmap.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-abilities.cfg
 share/wesnoth/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-deaths.cfg
@@ -2142,9 +2139,11 @@ share/wesnoth/data/campaigns/The_South_G
 share/wesnoth/data/campaigns/The_South_Guard/images/portraits/deoran-mad.png
 share/wesnoth/data/campaigns/The_South_Guard/images/portraits/deoran-sad.png
 share/wesnoth/data/campaigns/The_South_Guard/images/portraits/deoran.png
+share/wesnoth/data/campaigns/The_South_Guard/images/portraits/eltenmir.png
 share/wesnoth/data/campaigns/The_South_Guard/images/portraits/ethiliel-mad.png
 share/wesnoth/data/campaigns/The_South_Guard/images/portraits/ethiliel.png
 share/wesnoth/data/campaigns/The_South_Guard/images/portraits/hylas.png
+share/wesnoth/data/campaigns/The_South_Guard/images/portraits/ithelden.png
 share/wesnoth/data/campaigns/The_South_Guard/images/portraits/mal-mbrin.png
 share/wesnoth/data/campaigns/The_South_Guard/images/portraits/sir-gerrick.png
 share/wesnoth/data/campaigns/The_South_Guard/images/portraits/urza-afalas-masked.png
@@ -2170,27 +2169,25 @@ share/wesnoth/data/campaigns/The_South_G
 share/wesnoth/data/campaigns/The_South_Guard/maps/03_A_Desperate_Errand.map
 share/wesnoth/data/campaigns/The_South_Guard/maps/04_Vale_of_Tears.map
 share/wesnoth/data/campaigns/The_South_Guard/maps/05_Choice_in_the_Fog.map
-share/wesnoth/data/campaigns/The_South_Guard/maps/06a_Tidings_Good_and_Ill.map
+share/wesnoth/data/campaigns/The_South_Guard/maps/06a_Into_the_Depths.map
 share/wesnoth/data/campaigns/The_South_Guard/maps/06b_The_Long_March.map
-share/wesnoth/data/campaigns/The_South_Guard/maps/07a_Into_the_Depths.map
+share/wesnoth/data/campaigns/The_South_Guard/maps/07a_Return_to_Kerlath.map
 share/wesnoth/data/campaigns/The_South_Guard/maps/07b_Pebbles_in_the_Flood.map
-share/wesnoth/data/campaigns/The_South_Guard/maps/08a_Return_to_Kerlath.map
+share/wesnoth/data/campaigns/The_South_Guard/maps/08a_Vengeance.map
 share/wesnoth/data/campaigns/The_South_Guard/maps/08b_The_Tides_of_War.map
-share/wesnoth/data/campaigns/The_South_Guard/maps/09a_Vengeance.map
 share/wesnoth/data/campaigns/The_South_Guard/scenarios/01_Born_to_the_Banner.cfg
 share/wesnoth/data/campaigns/The_South_Guard/scenarios/02_Proven_by_the_Sword.cfg
 share/wesnoth/data/campaigns/The_South_Guard/scenarios/03_A_Desparate_Errand.cfg
 share/wesnoth/data/campaigns/The_South_Guard/scenarios/04_Vale_of_Tears.cfg
 share/wesnoth/data/campaigns/The_South_Guard/scenarios/05_Choice_In_The_Fog.cfg
-share/wesnoth/data/campaigns/The_South_Guard/scenarios/06a_Tidings_Good_and_Ill.cfg
+share/wesnoth/data/campaigns/The_South_Guard/scenarios/06a_Into_the_Depths.cfg
 share/wesnoth/data/campaigns/The_South_Guard/scenarios/06b_The_Long_March.cfg
-share/wesnoth/data/campaigns/The_South_Guard/scenarios/07a_Into_the_Depths.cfg
+share/wesnoth/data/campaigns/The_South_Guard/scenarios/07a_Return_to_Kerlath.cfg
 share/wesnoth/data/campaigns/The_South_Guard/scenarios/07b_Pebbles_in_the_Flood.cfg
-share/wesnoth/data/campaigns/The_South_Guard/scenarios/08a_Return_to_Kerlath.cfg
+share/wesnoth/data/campaigns/The_South_Guard/scenarios/08a_Vengeance.cfg
 share/wesnoth/data/campaigns/The_South_Guard/scenarios/08b_The_Tides_of_War.cfg
-share/wesnoth/data/campaigns/The_South_Guard/scenarios/09a_Vengeance.cfg
+share/wesnoth/data/campaigns/The_South_Guard/scenarios/09a_Elf_Epilogue.cfg
 share/wesnoth/data/campaigns/The_South_Guard/scenarios/09b_Bandit_Epilogue.cfg
-share/wesnoth/data/campaigns/The_South_Guard/scenarios/10a_Elf_Epilogue.cfg
 share/wesnoth/data/campaigns/The_South_Guard/units/Eyestalk.cfg
 share/wesnoth/data/campaigns/The_South_Guard/units/Horseman_Commander.cfg
 share/wesnoth/data/campaigns/The_South_Guard/units/Infantry_Commander.cfg
@@ -2203,6 +2200,7 @@ share/wesnoth/data/campaigns/The_South_G
 share/wesnoth/data/campaigns/The_South_Guard/utils/sg_story.cfg
 share/wesnoth/data/campaigns/The_South_Guard/utils/sg_utils.cfg
 share/wesnoth/data/campaigns/Two_Brothers/_main.cfg
+share/wesnoth/data/campaigns/Two_Brothers/ai/ca_muff_toras_move.lua
 share/wesnoth/data/campaigns/Two_Brothers/images/campaign_image.png
 share/wesnoth/data/campaigns/Two_Brothers/images/maps/l10n/de/tb--overlay.png
 share/wesnoth/data/campaigns/Two_Brothers/images/maps/l10n/gl/tb--overlay.png
@@ -2235,11 +2233,11 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/claws-crab.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/energyray.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/faerie-fire-sun.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/fangs-ant.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/fangs-horror.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/fist-golem.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/leader.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/sand-storm.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/trample.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/attacks/twister.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/campaign_image.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/halo/eloh-halo-back.png
@@ -2266,14 +2264,15 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/misc/dehydration-status.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/misc/stunned-status-icon.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/cloaked.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/commander.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/eloh.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/eloh_rage.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/elyssa.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/garak.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/kaleh.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/melusand.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/monsters/giant_ant.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/naga-hunter.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/monsters/flesh_golem.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/nagas/naga-hunter.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/nym.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/nym_moody.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/portraits/quenoth/archer.png
@@ -2323,9 +2322,6 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/alien/orb-small.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/alien/spire.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/humans/human-commander.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/monsters/ant-attack.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/monsters/ant-defend.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/monsters/ant.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/monsters/crab-attack1.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/monsters/crab-attack2.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/monsters/crab-attack3.png
@@ -2353,13 +2349,6 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/monsters/flesh-golem-swoosh-b.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/monsters/flesh-golem-swoosh.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/monsters/flesh-golem.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-attack-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-attack-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-attack-3.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-attack-4.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-defend-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-defend-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-1.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-2.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-3.png
@@ -2373,46 +2362,14 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-defend.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-melee-defend.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/sentinel-attack-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/sentinel-attack-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/sentinel-attack-3.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/sentinel-attack-4.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/sentinel-defend-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/sentinel-defend-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/sentinel.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/warden-attack-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/warden-attack-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/warden-attack-3.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/warden-attack-4.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/warden-defend-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/warden-defend-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/nagas/warden.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-attack-se-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-attack-se-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-attack-se-3.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-attack-se-4.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-attack-se-5.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-attack-se-6.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-attack-se-7.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-attack-se-8.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-attack-se-9.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-defend-se1-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-defend-se1-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-defend-se1-3.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-defend-se1-4.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-defend-se1-5.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-defend-se2-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-defend-se2-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-se.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-throw-se-1.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-throw-se-2.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-throw-se-3.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-throw-se-4.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-throw-se-5.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-throw-se-6.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-throw-se-7.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-throw-se-8.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightblade-throw-se-9.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/other/dark-assassin-attack1.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/other/dark-assassin-attack2.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/other/dark-assassin-attack3.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/other/dark-assassin-defend-1.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/other/dark-assassin-defend-2-miss.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/other/dark-assassin-defend-2.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/other/dark-assassin-uncloaked.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/other/dark-assassin.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/archer-defend1.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/archer-defend2.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/archer.png
@@ -2436,7 +2393,6 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/fighter.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/fire/flame-color.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/fire/flame-mask.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/flagbearer.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/flanker-defend1.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/flanker-defend2.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/flanker.png
@@ -2496,11 +2452,9 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/pathfinder-defend1.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/pathfinder-defend2.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/pathfinder.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/protector.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/ranger-defend1.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/ranger-defend2.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/ranger.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/rider.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/scout-defend-1.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/scout-defend-2.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/scout.png
@@ -2508,7 +2462,6 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/shaman-defend2.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/shaman.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/shyde.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/stalwart.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/sun_singer/sun-singer-backglow.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/sun_singer/sun-singer-defend1.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/sun_singer/sun-singer-defend2.png
@@ -2536,7 +2489,22 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/sun_sylph/sun-sylph-fly6.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/sun_sylph/sun-sylph-stand.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/sun_sylph/sun-sylph.png
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/vanguard.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/flagbearer-defend-1.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/flagbearer-defend-2.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/flagbearer.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/protector-defend-1.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/protector-defend-2.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/protector.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/rider-defend-1.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/rider-defend-2.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/rider.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/stalwart-defend-1.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/stalwart-defend-2.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/stalwart.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/tauroch.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/vanguard-defend-1.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/vanguard-defend-2.png
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/tauroch/vanguard.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/warrior-defend-1.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/warrior-defend-2.png
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/images/units/quenoth/warrior.png
@@ -2589,7 +2557,6 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Alien_Body.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Alien_Minion.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Alien_Spire.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Ant.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Cave_Spider.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Crab_Man.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Darawf.cfg
@@ -2599,13 +2566,12 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Flesh_Golem.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Ixthala_Demon.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/monsters/Small_Mudcrawler.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/nagas/Naga_Guardian.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/nagas/Naga_Guardians.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/nagas/Naga_Hunter.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/nagas/Naga_Sentinel.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/nagas/Naga_Warden.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/orcs/Dark_Assassin1.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/orcs/Dark_Assassin2.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/orcs/Dark_Assassin3.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/other/Dark_Assassin1.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/other/Dark_Assassin2.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/other/Dark_Assassin3.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/other/Uncloaked.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Archer.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Champion.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Corrupted_Elf.cfg
@@ -2614,22 +2580,23 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Druid.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Dustbok.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Fighter.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Flagbearer.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Flanker.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Marksman.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Mystic.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Outrider.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Pathfinder.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Protector.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Ranger.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Rider.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Scout.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Shaman.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Shyde.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Stalwart.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Sun_Singer.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Sun_Sylph.cfg
-share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Vanguard.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Tauroch.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Tauroch_Flagbearer.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Tauroch_Protector.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Tauroch_Rider.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Tauroch_Stalwart.cfg
+share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Tauroch_Vanguard.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Warrior.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/quenoth/Youth.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/units/undead/Ethereal_Ghost.cfg
@@ -2652,7 +2619,181 @@ share/wesnoth/data/campaigns/Under_the_B
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/utils/storytxt.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/utils/terrain.cfg
 share/wesnoth/data/campaigns/Under_the_Burning_Suns/utils/terrain_graphics.cfg
+share/wesnoth/data/campaigns/World_Conquest/MODDING.txt
+share/wesnoth/data/campaigns/World_Conquest/STRUCTURE.txt
+share/wesnoth/data/campaigns/World_Conquest/TODO.txt
+share/wesnoth/data/campaigns/World_Conquest/_main.cfg
+share/wesnoth/data/campaigns/World_Conquest/changelog.txt
+share/wesnoth/data/campaigns/World_Conquest/config.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/campaign/heroes.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/campaign/strings.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/era.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/Random.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Alliance.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Cult.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Empire.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Gang.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Guild.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Hand.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Horde.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Militia.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Scourge.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/The_Trust.cfg
+share/wesnoth/data/campaigns/World_Conquest/era/factions/strings.cfg
+share/wesnoth/data/campaigns/World_Conquest/gui/help_dialog.cfg
+share/wesnoth/data/campaigns/World_Conquest/gui/invest_dialog.cfg
+share/wesnoth/data/campaigns/World_Conquest/gui/invest_tellunit.cfg
+share/wesnoth/data/campaigns/World_Conquest/gui/pickup_confirmation.cfg
+share/wesnoth/data/campaigns/World_Conquest/gui/settings_dialog.cfg
+share/wesnoth/data/campaigns/World_Conquest/images/misc/is_special.png
+share/wesnoth/data/campaigns/World_Conquest/images/misc/wct-blank.png
+share/wesnoth/data/campaigns/World_Conquest/images/misc/wct-blank2.png
+share/wesnoth/data/campaigns/World_Conquest/images/misc/wct-commander.png
+share/wesnoth/data/campaigns/World_Conquest/images/misc/wct-forge-mask.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/treehouse.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-crystal.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-crystal3.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-dolmen.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-dolmen2.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-oak-dead.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-oak-dead2.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-obelisk.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-outpost.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-temple.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-temple2.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-temple3.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-temple4.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-temple5.png
+share/wesnoth/data/campaigns/World_Conquest/images/scenery/wct-tower.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-crack-2.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-crack-3.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-crack-4.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-crack-5.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-crack-7.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-snowcrater1.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-snowcrater2.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-snowcrater3.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-supply1.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-supply2.png
+share/wesnoth/data/campaigns/World_Conquest/images/terrain/wct-supply3.png
+share/wesnoth/data/campaigns/World_Conquest/lua/campaign/autorecall.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/campaign/enemy.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/campaign/enemy_data.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/campaign/enemy_themed.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/campaign/objectives.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/campaign/scenario.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/campaign_main.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/era/era.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/era_main.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/_load.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/ability_events.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/artifacts.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/bonus.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/bonus_point_definitions.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/color.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/dropping.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/effects.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/heroes.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/invest/invest.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/invest/invest_show_dialog.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/invest/invest_tellunit.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/items.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/pickup_confirmation_dialog.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/promote_commander.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/random_names.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/recall.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/supply.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/training.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/unittypedata.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/utils.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/game_mechanics/wocopedia/help.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/main.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/distmap.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/classic.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/clayey.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/coral.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/delta.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/feudal.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/industrial.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/maritime.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/paradise.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/podzol.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/provinces.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/savannah.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/sulfurous.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/utilities.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/wetland.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/wicked.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/wild.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/generator/wreck.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/main.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/1A_Start.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/2A_Springs.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/2B_Lakes.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/2C_Glaciers.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/2D_Provinces.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/2E_Paradise.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/2F_Clayey.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/3A_Savannah.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/3B_Wreck.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/3C_Delta.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/3D_Sulfurous.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/3E_Coral.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/3F_Wetland.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/4A_Thermal.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/4B_Volcanic.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/4C_Mines.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/4D_Podzol.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/4E_Wicked.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/4F_Wild.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/6A_Rural.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/6B_Maritime.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/6C_Industrial.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration/6D_Feudal.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration_utils/engine.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration_utils/events.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration_utils/noise.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration_utils/snow.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration_utils/utilities.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/postgeneration_utils/wild_zones.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenario_utils/bonus_points.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenario_utils/plot.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenario_utils/side_definitions.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_1p_scenario1.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_1p_scenario2.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_1p_scenario3.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_1p_scenario4.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_1p_scenario5.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_2p_scenario1.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_2p_scenario2.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_2p_scenario3.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_2p_scenario4.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_2p_scenario5.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_3p_scenario1.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_3p_scenario2.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_3p_scenario3.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_3p_scenario4.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/scenarios/WC_II_3p_scenario5.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/settings/settings_dialog.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/tools/filter_converter.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/utility.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/map/wct_map_generator.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/optional_mechanics/destruction.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/optional_mechanics/pick_advance.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/optional_mechanics/unitmarker.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/shared_utils/pretty_print.lua
+share/wesnoth/data/campaigns/World_Conquest/lua/shared_utils/wml_converter.lua
+share/wesnoth/data/campaigns/World_Conquest/resources/data/artifacts.cfg
+share/wesnoth/data/campaigns/World_Conquest/resources/data/training.cfg
+share/wesnoth/data/campaigns/World_Conquest/resources/resources.cfg
+share/wesnoth/data/campaigns/World_Conquest/resources/strings/artifacts.cfg
+share/wesnoth/data/campaigns/World_Conquest/resources/strings/effects.cfg
+share/wesnoth/data/campaigns/World_Conquest/resources/strings/mainline.cfg
+share/wesnoth/data/campaigns/World_Conquest/resources/strings/training.cfg
+share/wesnoth/data/campaigns/World_Conquest/scenarios/WC_II_scenario.cfg
+share/wesnoth/data/campaigns/World_Conquest/sounds/witches-laugh.wav
 share/wesnoth/data/campaigns/tutorial/_main.cfg
+share/wesnoth/data/campaigns/tutorial/gui/character_selection.cfg
 share/wesnoth/data/campaigns/tutorial/images/misc/highlight-hex.png
 share/wesnoth/data/campaigns/tutorial/images/portraits/delfador.png
 share/wesnoth/data/campaigns/tutorial/images/portraits/konrad.png
@@ -2694,6 +2835,7 @@ share/wesnoth/data/core/editor/music.cfg
 share/wesnoth/data/core/editor/terrain-groups.cfg
 share/wesnoth/data/core/editor/time-of-day.cfg
 share/wesnoth/data/core/encyclopedia/_main.cfg
+share/wesnoth/data/core/encyclopedia/calendar.cfg
 share/wesnoth/data/core/encyclopedia/drakes.txt
 share/wesnoth/data/core/encyclopedia/geography.cfg
 share/wesnoth/data/core/help.cfg
@@ -2707,7 +2849,9 @@ share/wesnoth/data/core/images/attacks/b
 share/wesnoth/data/core/images/attacks/battleaxe-undead.png
 share/wesnoth/data/core/images/attacks/battleaxe.png
 share/wesnoth/data/core/images/attacks/beak.png
+share/wesnoth/data/core/images/attacks/blade-curved.png
 share/wesnoth/data/core/images/attacks/blank-attack.png
+share/wesnoth/data/core/images/attacks/blowgun.png
 share/wesnoth/data/core/images/attacks/bolas.png
 share/wesnoth/data/core/images/attacks/bow-elven-magic.png
 share/wesnoth/data/core/images/attacks/bow-elven.png
@@ -2716,6 +2860,7 @@ share/wesnoth/data/core/images/attacks/b
 share/wesnoth/data/core/images/attacks/bow-short.png
 share/wesnoth/data/core/images/attacks/bow.png
 share/wesnoth/data/core/images/attacks/chakram.png
+share/wesnoth/data/core/images/attacks/chakri.png
 share/wesnoth/data/core/images/attacks/claws-animal.png
 share/wesnoth/data/core/images/attacks/claws-drake.png
 share/wesnoth/data/core/images/attacks/claws-fire-elemental.png
@@ -2744,6 +2889,9 @@ share/wesnoth/data/core/images/attacks/d
 share/wesnoth/data/core/images/attacks/entangle.png
 share/wesnoth/data/core/images/attacks/faerie-fire.png
 share/wesnoth/data/core/images/attacks/fangs-animal.png
+share/wesnoth/data/core/images/attacks/fangs-ant.png
+share/wesnoth/data/core/images/attacks/fangs-bug.png
+share/wesnoth/data/core/images/attacks/fangs-horse.png
 share/wesnoth/data/core/images/attacks/fangs-rodent.png
 share/wesnoth/data/core/images/attacks/fangs-snake.png
 share/wesnoth/data/core/images/attacks/fangs-spider.png
@@ -2769,6 +2917,8 @@ share/wesnoth/data/core/images/attacks/h
 share/wesnoth/data/core/images/attacks/hammer.png
 share/wesnoth/data/core/images/attacks/hatchet.png
 share/wesnoth/data/core/images/attacks/heater-shield.png
+share/wesnoth/data/core/images/attacks/hoof-nightmare.png
+share/wesnoth/data/core/images/attacks/hoof.png
 share/wesnoth/data/core/images/attacks/iceball.png
 share/wesnoth/data/core/images/attacks/ink.png
 share/wesnoth/data/core/images/attacks/javelin-human.png
@@ -2793,6 +2943,7 @@ share/wesnoth/data/core/images/attacks/r
 share/wesnoth/data/core/images/attacks/rectangular-shield.png
 share/wesnoth/data/core/images/attacks/rock_thrown.png
 share/wesnoth/data/core/images/attacks/saber-human.png
+share/wesnoth/data/core/images/attacks/scarab-horn.png
 share/wesnoth/data/core/images/attacks/scimitar.png
 share/wesnoth/data/core/images/attacks/scythe.png
 share/wesnoth/data/core/images/attacks/sickle.png
@@ -2817,6 +2968,7 @@ share/wesnoth/data/core/images/attacks/s
 share/wesnoth/data/core/images/attacks/sword-orcish.png
 share/wesnoth/data/core/images/attacks/sword-steel.png
 share/wesnoth/data/core/images/attacks/tail-dragon.png
+share/wesnoth/data/core/images/attacks/tekko.png
 share/wesnoth/data/core/images/attacks/tentacle.png
 share/wesnoth/data/core/images/attacks/thorns.png
 share/wesnoth/data/core/images/attacks/thunderstick.png
@@ -2825,6 +2977,8 @@ share/wesnoth/data/core/images/attacks/t
 share/wesnoth/data/core/images/attacks/touch-undead.png
 share/wesnoth/data/core/images/attacks/touch-zombie.png
 share/wesnoth/data/core/images/attacks/trident.png
+share/wesnoth/data/core/images/attacks/trishula.png
+share/wesnoth/data/core/images/attacks/tusk.png
 share/wesnoth/data/core/images/attacks/wail.png
 share/wesnoth/data/core/images/attacks/warblade-red.png
 share/wesnoth/data/core/images/attacks/warblade.png
@@ -3063,6 +3217,9 @@ share/wesnoth/data/core/images/halo/misc
 share/wesnoth/data/core/images/halo/misc/leadership-flare-7.png
 share/wesnoth/data/core/images/halo/misc/leadership-flare-8.png
 share/wesnoth/data/core/images/halo/misc/leadership-flare-9.png
+share/wesnoth/data/core/images/halo/monster/stoat-frost-base.png
+share/wesnoth/data/core/images/halo/monster/stoat-frost-blank.png
+share/wesnoth/data/core/images/halo/monster/stoat-frost-mask.png
 share/wesnoth/data/core/images/halo/ripples/ripple1.png
 share/wesnoth/data/core/images/halo/ripples/ripple10.png
 share/wesnoth/data/core/images/halo/ripples/ripple11.png
@@ -3103,6 +3260,41 @@ share/wesnoth/data/core/images/halo/thun
 share/wesnoth/data/core/images/halo/thunderer/smoke-se-ranged-kill7.png
 share/wesnoth/data/core/images/halo/thunderer/smoke-se-ranged-kill8.png
 share/wesnoth/data/core/images/halo/thunderer/smoke-se-ranged-kill9.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-1.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-10.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-11.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-12.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-13.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-14.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-15.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-16.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-17.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-2.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-3.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-4.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-5.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-6.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-7.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-8.png
+share/wesnoth/data/core/images/halo/torch/torch-big/flame-9.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-1.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-10.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-11.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-12.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-13.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-14.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-15.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-16.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-17.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-18.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-2.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-3.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-4.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-5.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-6.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-7.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-8.png
+share/wesnoth/data/core/images/halo/torch/torch-small/flame-9.png
 share/wesnoth/data/core/images/halo/undead/black-magic-1.png
 share/wesnoth/data/core/images/halo/undead/black-magic-2.png
 share/wesnoth/data/core/images/halo/undead/black-magic-3.png
@@ -3135,7 +3327,20 @@ share/wesnoth/data/core/images/halo/unde
 share/wesnoth/data/core/images/halo/undead/idle-flash-7.png
 share/wesnoth/data/core/images/halo/undead/idle-flash-8.png
 share/wesnoth/data/core/images/halo/undead/idle-flash-9.png
+share/wesnoth/data/core/images/halo/woses/shaman-ranged-halo1.png
+share/wesnoth/data/core/images/halo/woses/shaman-ranged-halo2.png
+share/wesnoth/data/core/images/halo/woses/shaman-ranged-halo3.png
+share/wesnoth/data/core/images/halo/woses/shaman-ranged-halo4.png
+share/wesnoth/data/core/images/halo/woses/shaman-stationary-halo1.png
+share/wesnoth/data/core/images/halo/woses/shaman-stationary-halo2.png
+share/wesnoth/data/core/images/halo/woses/shaman-stationary-halo3.png
+share/wesnoth/data/core/images/halo/woses/shaman-stationary-halo4.png
+share/wesnoth/data/core/images/halo/woses/shaman-stationary-halo5.png
+share/wesnoth/data/core/images/halo/woses/shaman-stationary-halo6.png
+share/wesnoth/data/core/images/halo/woses/shaman-stationary-halo7.png
+share/wesnoth/data/core/images/halo/woses/shaman-stationary-halo8.png
 share/wesnoth/data/core/images/help/combat1.png
+share/wesnoth/data/core/images/help/empty-square.png
 share/wesnoth/data/core/images/help/hp-bars.png
 share/wesnoth/data/core/images/help/hpxp.png
 share/wesnoth/data/core/images/help/income-upkeep1.png
@@ -3173,6 +3378,7 @@ share/wesnoth/data/core/images/help/l10n
 share/wesnoth/data/core/images/help/moving1.png
 share/wesnoth/data/core/images/help/moving2.png
 share/wesnoth/data/core/images/help/orb-blue.png
+share/wesnoth/data/core/images/help/orb-disengaged.png
 share/wesnoth/data/core/images/help/orb-green.png
 share/wesnoth/data/core/images/help/orb-none.png
 share/wesnoth/data/core/images/help/orb-red.png
@@ -3188,6 +3394,7 @@ share/wesnoth/data/core/images/icons/boo
 share/wesnoth/data/core/images/icons/book2.png
 share/wesnoth/data/core/images/icons/boots_elven.png
 share/wesnoth/data/core/images/icons/breastplate.png
+share/wesnoth/data/core/images/icons/breastplate2.png
 share/wesnoth/data/core/images/icons/circlet_winged.png
 share/wesnoth/data/core/images/icons/cloak_leather_brown.png
 share/wesnoth/data/core/images/icons/coins_copper.png
@@ -3235,10 +3442,14 @@ share/wesnoth/data/core/images/icons/tun
 share/wesnoth/data/core/images/items/altar-evil.png
 share/wesnoth/data/core/images/items/altar.png
 share/wesnoth/data/core/images/items/ankh-necklace.png
+share/wesnoth/data/core/images/items/ankh-necklace2.png
 share/wesnoth/data/core/images/items/anvil.png
 share/wesnoth/data/core/images/items/archery-target-right.png
 share/wesnoth/data/core/images/items/armor-golden.png
 share/wesnoth/data/core/images/items/armor.png
+share/wesnoth/data/core/images/items/axe-2.png
+share/wesnoth/data/core/images/items/axe-small.png
+share/wesnoth/data/core/images/items/axe-throwing.png
 share/wesnoth/data/core/images/items/axe.png
 share/wesnoth/data/core/images/items/ball-blue.png
 share/wesnoth/data/core/images/items/ball-green.png
@@ -3252,10 +3463,15 @@ share/wesnoth/data/core/images/items/boo
 share/wesnoth/data/core/images/items/book3.png
 share/wesnoth/data/core/images/items/book4.png
 share/wesnoth/data/core/images/items/book5.png
+share/wesnoth/data/core/images/items/bow-2.png
+share/wesnoth/data/core/images/items/bow-crystal-2.png
 share/wesnoth/data/core/images/items/bow-crystal.png
+share/wesnoth/data/core/images/items/bow-elven-2.png
 share/wesnoth/data/core/images/items/bow-elven.png
 share/wesnoth/data/core/images/items/bow.png
 share/wesnoth/data/core/images/items/box.png
+share/wesnoth/data/core/images/items/branch-bare.png
+share/wesnoth/data/core/images/items/branch.png
 share/wesnoth/data/core/images/items/brazier-lit1.png
 share/wesnoth/data/core/images/items/brazier-lit2.png
 share/wesnoth/data/core/images/items/brazier-lit3.png
@@ -3265,6 +3481,7 @@ share/wesnoth/data/core/images/items/bra
 share/wesnoth/data/core/images/items/brazier-lit7.png
 share/wesnoth/data/core/images/items/brazier-lit8.png
 share/wesnoth/data/core/images/items/brazier.png
+share/wesnoth/data/core/images/items/buckler-2.png
 share/wesnoth/data/core/images/items/buckler.png
 share/wesnoth/data/core/images/items/burial.png
 share/wesnoth/data/core/images/items/cage.png
@@ -3273,10 +3490,16 @@ share/wesnoth/data/core/images/items/che
 share/wesnoth/data/core/images/items/chest-plain-open.png
 share/wesnoth/data/core/images/items/chest.png
 share/wesnoth/data/core/images/items/cloak-green.png
+share/wesnoth/data/core/images/items/club.png
 share/wesnoth/data/core/images/items/coffin-closed.png
 share/wesnoth/data/core/images/items/coffin-open.png
+share/wesnoth/data/core/images/items/crossbow.png
+share/wesnoth/data/core/images/items/dagger-poison-bare.png
+share/wesnoth/data/core/images/items/dagger-poison.png
+share/wesnoth/data/core/images/items/dagger.png
 share/wesnoth/data/core/images/items/dragonstatue.png
 share/wesnoth/data/core/images/items/dummy.png
+share/wesnoth/data/core/images/items/flame-sword-bare.png
 share/wesnoth/data/core/images/items/flame-sword.png
 share/wesnoth/data/core/images/items/flower1.png
 share/wesnoth/data/core/images/items/flower2.png
@@ -3288,9 +3511,15 @@ share/wesnoth/data/core/images/items/gol
 share/wesnoth/data/core/images/items/gold-coins-small.png
 share/wesnoth/data/core/images/items/grain-sheaf.png
 share/wesnoth/data/core/images/items/hammer-runic.png
+share/wesnoth/data/core/images/items/hammer.png
 share/wesnoth/data/core/images/items/holy-water.png
+share/wesnoth/data/core/images/items/key-dark.png
 share/wesnoth/data/core/images/items/key.png
+share/wesnoth/data/core/images/items/key2.png
 share/wesnoth/data/core/images/items/leather-pack.png
+share/wesnoth/data/core/images/items/mace.png
+share/wesnoth/data/core/images/items/necklace-bone.png
+share/wesnoth/data/core/images/items/necklace-stone.png
 share/wesnoth/data/core/images/items/orcish-flag.png
 share/wesnoth/data/core/images/items/ornate1.png
 share/wesnoth/data/core/images/items/ornate2.png
@@ -3305,16 +3534,37 @@ share/wesnoth/data/core/images/items/rin
 share/wesnoth/data/core/images/items/ring-red.png
 share/wesnoth/data/core/images/items/ring-silver.png
 share/wesnoth/data/core/images/items/ring-white.png
+share/wesnoth/data/core/images/items/rock.png
 share/wesnoth/data/core/images/items/scarecrow.png
 share/wesnoth/data/core/images/items/sceptre-of-fire.png
+share/wesnoth/data/core/images/items/sling.png
+share/wesnoth/data/core/images/items/spear-fancy-2.png
 share/wesnoth/data/core/images/items/spear-fancy.png
+share/wesnoth/data/core/images/items/spear-javelin.png
+share/wesnoth/data/core/images/items/spear.png
+share/wesnoth/data/core/images/items/staff-2.png
+share/wesnoth/data/core/images/items/staff-druid.png
+share/wesnoth/data/core/images/items/staff-magic-2.png
+share/wesnoth/data/core/images/items/staff-magic-wand.png
 share/wesnoth/data/core/images/items/staff-magic.png
+share/wesnoth/data/core/images/items/staff-plain.png
 share/wesnoth/data/core/images/items/staff.png
 share/wesnoth/data/core/images/items/stone-tablet.png
+share/wesnoth/data/core/images/items/storm-trident-2.png
 share/wesnoth/data/core/images/items/storm-trident.png
 share/wesnoth/data/core/images/items/straw-bale1.png
 share/wesnoth/data/core/images/items/straw-bale2.png
+share/wesnoth/data/core/images/items/sword-2.png
+share/wesnoth/data/core/images/items/sword-holy.png
+share/wesnoth/data/core/images/items/sword-short.png
+share/wesnoth/data/core/images/items/sword-wraith.png
 share/wesnoth/data/core/images/items/sword.png
+share/wesnoth/data/core/images/items/talisman-ankh.png
+share/wesnoth/data/core/images/items/talisman-bone.png
+share/wesnoth/data/core/images/items/talisman-stone.png
+share/wesnoth/data/core/images/items/thunderstick.png
+share/wesnoth/data/core/images/items/torch-bare.png
+share/wesnoth/data/core/images/items/torch.png
 share/wesnoth/data/core/images/lobby/group-expanded.png
 share/wesnoth/data/core/images/lobby/group-folded.png
 share/wesnoth/data/core/images/lobby/l10n/sr/sort-az-off.png
@@ -3527,6 +3777,7 @@ share/wesnoth/data/core/images/portraits
 share/wesnoth/data/core/images/portraits/humans/pikeman.png
 share/wesnoth/data/core/images/portraits/humans/ranger.png
 share/wesnoth/data/core/images/portraits/humans/royal-guard.png
+share/wesnoth/data/core/images/portraits/humans/royal-warrior.png
 share/wesnoth/data/core/images/portraits/humans/ruffian.png
 share/wesnoth/data/core/images/portraits/humans/sergeant.png
 share/wesnoth/data/core/images/portraits/humans/spearman-2.png
@@ -3552,21 +3803,49 @@ share/wesnoth/data/core/images/portraits
 share/wesnoth/data/core/images/portraits/monsters/bat-dread.png
 share/wesnoth/data/core/images/portraits/monsters/bat-red.png
 share/wesnoth/data/core/images/portraits/monsters/bat.png
+share/wesnoth/data/core/images/portraits/monsters/bear.png
+share/wesnoth/data/core/images/portraits/monsters/big-icemonax.png
+share/wesnoth/data/core/images/portraits/monsters/black-stallion.png
+share/wesnoth/data/core/images/portraits/monsters/crocodile.png
 share/wesnoth/data/core/images/portraits/monsters/cuttlefish.png
 share/wesnoth/data/core/images/portraits/monsters/deep-tentacle.png
+share/wesnoth/data/core/images/portraits/monsters/falcon.png
+share/wesnoth/data/core/images/portraits/monsters/fire-dragon.png
+share/wesnoth/data/core/images/portraits/monsters/fire_ant.png
+share/wesnoth/data/core/images/portraits/monsters/fire_guardian.png
+share/wesnoth/data/core/images/portraits/monsters/fire_wraith_A.png
 share/wesnoth/data/core/images/portraits/monsters/giant-mudcrawler.png
 share/wesnoth/data/core/images/portraits/monsters/giant-rat.png
 share/wesnoth/data/core/images/portraits/monsters/giant-spider.png
+share/wesnoth/data/core/images/portraits/monsters/giant_ant.png
 share/wesnoth/data/core/images/portraits/monsters/gryphon.png
+share/wesnoth/data/core/images/portraits/monsters/horse.png
+share/wesnoth/data/core/images/portraits/monsters/jinn.png
 share/wesnoth/data/core/images/portraits/monsters/mudcrawler.png
+share/wesnoth/data/core/images/portraits/monsters/nightmare.png
 share/wesnoth/data/core/images/portraits/monsters/ogre.png
+share/wesnoth/data/core/images/portraits/monsters/piglet.png
+share/wesnoth/data/core/images/portraits/monsters/scarab.png
+share/wesnoth/data/core/images/portraits/monsters/scorpion-elder.png
+share/wesnoth/data/core/images/portraits/monsters/scorpion-rock.png
 share/wesnoth/data/core/images/portraits/monsters/scorpion.png
+share/wesnoth/data/core/images/portraits/monsters/scuttler.png
 share/wesnoth/data/core/images/portraits/monsters/sea-serpent.png
+share/wesnoth/data/core/images/portraits/monsters/seahorse.png
+share/wesnoth/data/core/images/portraits/monsters/small-icemonax.png
+share/wesnoth/data/core/images/portraits/monsters/stoat.png
 share/wesnoth/data/core/images/portraits/monsters/water-serpent.png
+share/wesnoth/data/core/images/portraits/monsters/woodland_boar.png
 share/wesnoth/data/core/images/portraits/monsters/yeti.png
 share/wesnoth/data/core/images/portraits/monsters/young-ogre.png
+share/wesnoth/data/core/images/portraits/nagas/dirkfang.png
 share/wesnoth/data/core/images/portraits/nagas/fighter.png
 share/wesnoth/data/core/images/portraits/nagas/myrmidon.png
+share/wesnoth/data/core/images/portraits/nagas/naga-mace_warrior1.png
+share/wesnoth/data/core/images/portraits/nagas/naga-mace_warrior2.png
+share/wesnoth/data/core/images/portraits/nagas/naga-mace_warrior3.png
+share/wesnoth/data/core/images/portraits/nagas/naga-ophidian.png
+share/wesnoth/data/core/images/portraits/nagas/naga-ringcaster.png
 share/wesnoth/data/core/images/portraits/orcs/archer.png
 share/wesnoth/data/core/images/portraits/orcs/assassin.png
 share/wesnoth/data/core/images/portraits/orcs/crossbowman.png
@@ -3576,8 +3855,8 @@ share/wesnoth/data/core/images/portraits
 share/wesnoth/data/core/images/portraits/orcs/grunt-5.png
 share/wesnoth/data/core/images/portraits/orcs/grunt-6.png
 share/wesnoth/data/core/images/portraits/orcs/grunt.png
-share/wesnoth/data/core/images/portraits/orcs/leader-2.png
-share/wesnoth/data/core/images/portraits/orcs/leader.png
+share/wesnoth/data/core/images/portraits/orcs/ruler-2.png
+share/wesnoth/data/core/images/portraits/orcs/ruler.png
 share/wesnoth/data/core/images/portraits/orcs/slayer.png
 share/wesnoth/data/core/images/portraits/orcs/slurbow.png
 share/wesnoth/data/core/images/portraits/orcs/sovereign.png
@@ -3613,12 +3892,20 @@ share/wesnoth/data/core/images/portraits
 share/wesnoth/data/core/images/portraits/undead/walking-corpse.png
 share/wesnoth/data/core/images/portraits/undead/wraith.png
 share/wesnoth/data/core/images/portraits/undead/zombie-bat.png
+share/wesnoth/data/core/images/portraits/undead/zombie-beastrider.png
+share/wesnoth/data/core/images/portraits/undead/zombie-boar.png
 share/wesnoth/data/core/images/portraits/undead/zombie-drake.png
 share/wesnoth/data/core/images/portraits/undead/zombie-dwarf.png
+share/wesnoth/data/core/images/portraits/undead/zombie-falcon.png
 share/wesnoth/data/core/images/portraits/undead/zombie-goblin.png
 share/wesnoth/data/core/images/portraits/undead/zombie-gryphon.png
+share/wesnoth/data/core/images/portraits/undead/zombie-horse.png
+share/wesnoth/data/core/images/portraits/undead/zombie-rat.png
 share/wesnoth/data/core/images/portraits/undead/zombie-rider.png
 share/wesnoth/data/core/images/portraits/undead/zombie-saurian.png
+share/wesnoth/data/core/images/portraits/undead/zombie-scorpion.png
+share/wesnoth/data/core/images/portraits/undead/zombie-serpent.png
+share/wesnoth/data/core/images/portraits/undead/zombie-spider.png
 share/wesnoth/data/core/images/portraits/undead/zombie-swimmer.png
 share/wesnoth/data/core/images/portraits/undead/zombie-troll.png
 share/wesnoth/data/core/images/portraits/undead/zombie-wolf.png
@@ -3759,6 +4046,7 @@ share/wesnoth/data/core/images/projectil
 share/wesnoth/data/core/images/projectiles/muzzle-flash-se-1.png
 share/wesnoth/data/core/images/projectiles/muzzle-flash-se-2.png
 share/wesnoth/data/core/images/projectiles/muzzle-flash-se-3.png
+share/wesnoth/data/core/images/projectiles/naphtha-gob-n.png
 share/wesnoth/data/core/images/projectiles/pitchfork-n.png
 share/wesnoth/data/core/images/projectiles/pitchfork-ne.png
 share/wesnoth/data/core/images/projectiles/spear-n.png
@@ -4641,6 +4929,31 @@ share/wesnoth/data/core/images/terrain/c
 share/wesnoth/data/core/images/terrain/castle/orcish/keep-tile.png
 share/wesnoth/data/core/images/terrain/castle/orcish/keep.png
 share/wesnoth/data/core/images/terrain/castle/orcish/tile.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-concave-bl.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-concave-br.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-concave-l.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-concave-r.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-concave-tl.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-concave-tr.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-convex-bl.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-convex-br.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-convex-l.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-convex-r.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-convex-tl.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-convex-tr.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-floor-n.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-floor-ne.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-floor-nw.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-floor-s.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-floor-se.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-floor-sw.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-floor.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-floor2.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-floor3.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-castle-tile.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-keep-floor.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-keep-tile.png
+share/wesnoth/data/core/images/terrain/castle/outside-dwarven/dwarven-keep.png
 share/wesnoth/data/core/images/terrain/castle/ruin-concave-bl.png
 share/wesnoth/data/core/images/terrain/castle/ruin-concave-br.png
 share/wesnoth/data/core/images/terrain/castle/ruin-concave-l.png
@@ -4653,6 +4966,28 @@ share/wesnoth/data/core/images/terrain/c
 share/wesnoth/data/core/images/terrain/castle/ruin-convex-r.png
 share/wesnoth/data/core/images/terrain/castle/ruin-convex-tl.png
 share/wesnoth/data/core/images/terrain/castle/ruin-convex-tr.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/debris.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/debris2.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/debris3.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-concave-bl.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-concave-br.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-concave-l.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-concave-r.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-concave-tl.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-concave-tr.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-convex-bl.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-convex-br.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-convex-l.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-convex-r.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-convex-tl.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-convex-tr.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-floor.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-floor2.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-floor3.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-castle-tile.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-keep-floor.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-keep-tile.png
+share/wesnoth/data/core/images/terrain/castle/ruin-dwarven/dwarven-keep.png
 share/wesnoth/data/core/images/terrain/castle/ruin-tile.png
 share/wesnoth/data/core/images/terrain/castle/ruin2-concave-bl.png
 share/wesnoth/data/core/images/terrain/castle/ruin2-concave-br.png
@@ -5077,6 +5412,85 @@ share/wesnoth/data/core/images/terrain/c
 share/wesnoth/data/core/images/terrain/castle/troll/stone-post3.png
 share/wesnoth/data/core/images/terrain/castle/troll/stone-post4.png
 share/wesnoth/data/core/images/terrain/castle/troll/tile.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-concave-bl.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-concave-br.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-concave-l.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-concave-r.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-concave-tl.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-concave-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-convex-bl.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-convex-br.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-convex-l.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-convex-r.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-convex-tl.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-convex-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-floor-n.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-floor-ne.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-floor-nw.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-floor-s.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-floor-se.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-floor-sw.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-floor.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-floor2.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-floor3.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-snow.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-snow2.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-snow3.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-castle-tile.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-keep-floor.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-keep-tile.png
+share/wesnoth/data/core/images/terrain/castle/winter-dwarven/dwarven-keep.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-concave-bl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-concave-br.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-concave-l.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-concave-r.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-concave-tl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-concave-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-convex-bl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-convex-br.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-convex-l.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-convex-r.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-convex-tl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/castle-convex-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/grounds.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/grounds2.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/grounds3.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-ccw-bl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-ccw-br.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-ccw-l.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-ccw-r.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-ccw-tl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-ccw-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-concave-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-convex-bl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-convex-br.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-convex-l.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-convex-r.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-convex-tl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-convex-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-cw-bl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-cw-br.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-cw-l.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-cw-r.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-cw-tl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-castle-cw-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-concave-bl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-concave-br.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-concave-l.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-concave-r.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-concave-tl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-concave-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-convex-bl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-convex-br.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-convex-l.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-convex-r.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-convex-tl.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-convex-tr.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep-tile.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep2.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/keep3.png
+share/wesnoth/data/core/images/terrain/castle/winter-elven/tile.png
 share/wesnoth/data/core/images/terrain/castle/winter-orcish/fort-concave-bl.png
 share/wesnoth/data/core/images/terrain/castle/winter-orcish/fort-concave-br.png
 share/wesnoth/data/core/images/terrain/castle/winter-orcish/fort-concave-l.png
@@ -5167,6 +5581,15 @@ share/wesnoth/data/core/images/terrain/c
 share/wesnoth/data/core/images/terrain/cave/earthy-floor4.png
 share/wesnoth/data/core/images/terrain/cave/earthy-floor5.png
 share/wesnoth/data/core/images/terrain/cave/earthy-floor6.png
+share/wesnoth/data/core/images/terrain/cave/earthy-hills-n.png
+share/wesnoth/data/core/images/terrain/cave/earthy-hills-ne.png
+share/wesnoth/data/core/images/terrain/cave/earthy-hills-nw.png
+share/wesnoth/data/core/images/terrain/cave/earthy-hills-s.png
+share/wesnoth/data/core/images/terrain/cave/earthy-hills-se.png
+share/wesnoth/data/core/images/terrain/cave/earthy-hills-sw.png
+share/wesnoth/data/core/images/terrain/cave/earthy-hills-variation.png
+share/wesnoth/data/core/images/terrain/cave/earthy-hills-variation2.png
+share/wesnoth/data/core/images/terrain/cave/earthy-hills-variation3.png
 share/wesnoth/data/core/images/terrain/cave/earthy-wall-rough-chasm-concave-bl.png
 share/wesnoth/data/core/images/terrain/cave/earthy-wall-rough-chasm-concave-br.png
 share/wesnoth/data/core/images/terrain/cave/earthy-wall-rough-chasm-concave-l.png
@@ -5344,6 +5767,18 @@ share/wesnoth/data/core/images/terrain/c
 share/wesnoth/data/core/images/terrain/chasm/regular-snow-convex-tl.png
 share/wesnoth/data/core/images/terrain/chasm/regular-snow-convex-tr.png
 share/wesnoth/data/core/images/terrain/chasm/regular-tile.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-concave-bl.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-concave-br.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-concave-l.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-concave-r.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-concave-tl.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-concave-tr.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-convex-bl.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-convex-br.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-convex-l.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-convex-r.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-convex-tl.png
+share/wesnoth/data/core/images/terrain/chasm/swamp-convex-tr.png
 share/wesnoth/data/core/images/terrain/chasm/water-concave-bl.png
 share/wesnoth/data/core/images/terrain/chasm/water-concave-br.png
 share/wesnoth/data/core/images/terrain/chasm/water-concave-l.png
@@ -5360,6 +5795,7 @@ share/wesnoth/data/core/images/terrain/c
 share/wesnoth/data/core/images/terrain/darken-linger.png
 share/wesnoth/data/core/images/terrain/darken.png
 share/wesnoth/data/core/images/terrain/dawn.png
+share/wesnoth/data/core/images/terrain/deprecated-editor.png
 share/wesnoth/data/core/images/terrain/desert_mountains/blend-from-chasm-s.png
 share/wesnoth/data/core/images/terrain/desert_mountains/blend-from-chasm-se.png
 share/wesnoth/data/core/images/terrain/desert_mountains/blend-from-chasm-sw.png
@@ -5440,6 +5876,28 @@ share/wesnoth/data/core/images/terrain/e
 share/wesnoth/data/core/images/terrain/embellishments/farm-veg-spring.png
 share/wesnoth/data/core/images/terrain/embellishments/farm-veg-spring2.png
 share/wesnoth/data/core/images/terrain/embellishments/farm-veg-spring3.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-ne-nw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-ne-se-nw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-ne-se-sw-nw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-ne-se-sw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-ne-se.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-ne-sw-01.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-ne-sw-02.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-ne-sw-nw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-ne.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-nw-se-01.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-nw-se-02.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-nw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-se-nw-01.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-se-nw-02.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-se-sw-nw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-se-sw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-se.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-sw-ne-01.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-sw-ne-02.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-sw-nw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-sw.png
+share/wesnoth/data/core/images/terrain/embellishments/fence-iron-tile.png
 share/wesnoth/data/core/images/terrain/embellishments/fence-ne-nw.png
 share/wesnoth/data/core/images/terrain/embellishments/fence-ne-se-nw.png
 share/wesnoth/data/core/images/terrain/embellishments/fence-ne-se-sw-nw.png
@@ -5505,6 +5963,13 @@ share/wesnoth/data/core/images/terrain/e
 share/wesnoth/data/core/images/terrain/embellishments/rocks5.png
 share/wesnoth/data/core/images/terrain/embellishments/rocks6.png
 share/wesnoth/data/core/images/terrain/embellishments/rocks7.png
+share/wesnoth/data/core/images/terrain/embellishments/snowbits-small.png
+share/wesnoth/data/core/images/terrain/embellishments/snowbits-small2.png
+share/wesnoth/data/core/images/terrain/embellishments/snowbits-small3.png
+share/wesnoth/data/core/images/terrain/embellishments/snowbits-small4.png
+share/wesnoth/data/core/images/terrain/embellishments/snowbits-small5.png
+share/wesnoth/data/core/images/terrain/embellishments/snowbits-small6.png
+share/wesnoth/data/core/images/terrain/embellishments/snowbits-small7.png
 share/wesnoth/data/core/images/terrain/embellishments/stones-small.png
 share/wesnoth/data/core/images/terrain/embellishments/stones-small2.png
 share/wesnoth/data/core/images/terrain/embellishments/stones-small3.png
@@ -5726,6 +6191,9 @@ share/wesnoth/data/core/images/terrain/f
 share/wesnoth/data/core/images/terrain/flat/road-clean.png
 share/wesnoth/data/core/images/terrain/flat/road-clean2.png
 share/wesnoth/data/core/images/terrain/flat/road-clean3.png
+share/wesnoth/data/core/images/terrain/flat/road-icy.png
+share/wesnoth/data/core/images/terrain/flat/road-icy2.png
+share/wesnoth/data/core/images/terrain/flat/road-icy3.png
 share/wesnoth/data/core/images/terrain/flat/road-n-ne-se-s-sw-nw.png
 share/wesnoth/data/core/images/terrain/flat/road-n-ne-se.png
 share/wesnoth/data/core/images/terrain/flat/road-n-ne.png
@@ -5866,8 +6334,16 @@ share/wesnoth/data/core/images/terrain/f
 share/wesnoth/data/core/images/terrain/forest/forested-mixed-winter-snow-hills-tile.png
 share/wesnoth/data/core/images/terrain/forest/forested-snow-hills-tile.png
 share/wesnoth/data/core/images/terrain/forest/forested-tropical-hills-tile.png
+share/wesnoth/data/core/images/terrain/forest/great-oak-tree-dead-tile.png
+share/wesnoth/data/core/images/terrain/forest/great-oak-tree-dead.png
+share/wesnoth/data/core/images/terrain/forest/great-oak-tree-dead2.png
 share/wesnoth/data/core/images/terrain/forest/great-tree-dead-tile.png
 share/wesnoth/data/core/images/terrain/forest/great-tree-dead.png
+share/wesnoth/data/core/images/terrain/forest/great-tree-dead2.png
+share/wesnoth/data/core/images/terrain/forest/great-tree-dead3.png
+share/wesnoth/data/core/images/terrain/forest/great-tree-dead4.png
+share/wesnoth/data/core/images/terrain/forest/great-tree-snowy-tile.png
+share/wesnoth/data/core/images/terrain/forest/great-tree-snowy.png
 share/wesnoth/data/core/images/terrain/forest/great-tree-tile.png
 share/wesnoth/data/core/images/terrain/forest/great-tree.png
 share/wesnoth/data/core/images/terrain/forest/great-tree2.png
@@ -5900,6 +6376,21 @@ share/wesnoth/data/core/images/terrain/f
 share/wesnoth/data/core/images/terrain/forest/mixed-winter-tile.png
 share/wesnoth/data/core/images/terrain/forest/mixed-winter.png
 share/wesnoth/data/core/images/terrain/forest/mixed-winter2.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-n-ne.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-n.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-ne-se.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-ne.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-nw.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-s-sw.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-s.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-se.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-sw-nw.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base-sw.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base2.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base3.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base4.png
+share/wesnoth/data/core/images/terrain/forest/mushroom-base5.png
 share/wesnoth/data/core/images/terrain/forest/mushrooms-beam-tile.png
 share/wesnoth/data/core/images/terrain/forest/mushrooms-n.png
 share/wesnoth/data/core/images/terrain/forest/mushrooms-ne.png
@@ -5909,6 +6400,14 @@ share/wesnoth/data/core/images/terrain/f
 share/wesnoth/data/core/images/terrain/forest/mushrooms-small.png
 share/wesnoth/data/core/images/terrain/forest/mushrooms-sw.png
 share/wesnoth/data/core/images/terrain/forest/mushrooms-tile.png
+share/wesnoth/data/core/images/terrain/forest/mushrooms-water-small.png
+share/wesnoth/data/core/images/terrain/forest/mushrooms-water-small2.png
+share/wesnoth/data/core/images/terrain/forest/mushrooms-water-small3.png
+share/wesnoth/data/core/images/terrain/forest/mushrooms-water.png
+share/wesnoth/data/core/images/terrain/forest/mushrooms-water2.png
+share/wesnoth/data/core/images/terrain/forest/mushrooms-water3.png
+share/wesnoth/data/core/images/terrain/forest/mushrooms-water4.png
+share/wesnoth/data/core/images/terrain/forest/mushrooms-water5.png
 share/wesnoth/data/core/images/terrain/forest/mushrooms.png
 share/wesnoth/data/core/images/terrain/forest/mushrooms2.png
 share/wesnoth/data/core/images/terrain/forest/mushrooms3.png
@@ -6570,6 +7069,16 @@ share/wesnoth/data/core/images/terrain/i
 share/wesnoth/data/core/images/terrain/interior/royal-rug/rug-sw-nw.png
 share/wesnoth/data/core/images/terrain/interior/royal-rug/rug-sw.png
 share/wesnoth/data/core/images/terrain/interior/royal-rug/rug-tile.png
+share/wesnoth/data/core/images/terrain/interior/stone-ancient.png
+share/wesnoth/data/core/images/terrain/interior/stone-ancient2.png
+share/wesnoth/data/core/images/terrain/interior/stone-ancient3.png
+share/wesnoth/data/core/images/terrain/interior/stone-ancient4.png
+share/wesnoth/data/core/images/terrain/interior/stone-ancient5.png
+share/wesnoth/data/core/images/terrain/interior/stone-ancient6.png
+share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-dock-regular-assist-ccw-ne.png
+share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-dock-regular-assist-cw-nw.png
+share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-dock-regular-ccw-ne.png
+share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-dock-regular-cw-nw.png
 share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-regular-assist-ccw-ne.png
 share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-regular-assist-cw-nw.png
 share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-regular-ccw-ne.png
@@ -6614,6 +7123,45 @@ share/wesnoth/data/core/images/terrain/i
 share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-regular-sw-nw-n.png
 share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-regular-sw-nw.png
 share/wesnoth/data/core/images/terrain/interior/stone-chasm/stone-regular-sw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-R2-n.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-R2-ne.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-R2-nw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-R2-s.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-R2-se.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-R2-sw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rccw-n.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rccw-ne.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rccw-nw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rccw-s.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rccw-se.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rccw-sw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rcw-n.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rcw-ne.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rcw-nw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rcw-s.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rcw-se.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-Rcw-sw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-n-ne-se-s-sw-nw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-n-ne-se-s.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-n-ne-se.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-n-ne.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-n.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-ne-se-s.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-ne-se.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-ne.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-nw-n-ne.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-nw-n.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-nw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-s-sw-nw-n.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-s-sw-nw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-s-sw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-s.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-se-s-sw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-se-s.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-se.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-sw-nw-n.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-sw-nw.png
+share/wesnoth/data/core/images/terrain/interior/stone-dock-regular-sw.png
 share/wesnoth/data/core/images/terrain/interior/stone-regular-crowded-patch-n.png
 share/wesnoth/data/core/images/terrain/interior/stone-regular-crowded-patch-s.png
 share/wesnoth/data/core/images/terrain/interior/stone-regular-n-ne-se-s-sw-nw.png
@@ -6722,6 +7270,9 @@ share/wesnoth/data/core/images/terrain/l
 share/wesnoth/data/core/images/terrain/light/light-convex-tr-r.png
 share/wesnoth/data/core/images/terrain/light/light-convex-tr-tl.png
 share/wesnoth/data/core/images/terrain/light/light.png
+share/wesnoth/data/core/images/terrain/map-specific/isar-background-dawndusk.png
+share/wesnoth/data/core/images/terrain/map-specific/isar-background-night.png
+share/wesnoth/data/core/images/terrain/map-specific/isar-background.png
 share/wesnoth/data/core/images/terrain/mask.png
 share/wesnoth/data/core/images/terrain/masks/7hex-bl-br.png
 share/wesnoth/data/core/images/terrain/masks/7hex-bl-l.png
@@ -7010,6 +7561,12 @@ share/wesnoth/data/core/images/terrain/m
 share/wesnoth/data/core/images/terrain/mountains/peak_large2.png
 share/wesnoth/data/core/images/terrain/mountains/peak_range1_1.png
 share/wesnoth/data/core/images/terrain/mountains/peak_range1_2.png
+share/wesnoth/data/core/images/terrain/mountains/snow-castle-n.png
+share/wesnoth/data/core/images/terrain/mountains/snow-castle-ne.png
+share/wesnoth/data/core/images/terrain/mountains/snow-castle-nw.png
+share/wesnoth/data/core/images/terrain/mountains/snow-castle-s.png
+share/wesnoth/data/core/images/terrain/mountains/snow-castle-se.png
+share/wesnoth/data/core/images/terrain/mountains/snow-castle-sw.png
 share/wesnoth/data/core/images/terrain/mountains/snow-tile.png
 share/wesnoth/data/core/images/terrain/mountains/snow.png
 share/wesnoth/data/core/images/terrain/mountains/snow2.png
@@ -7546,6 +8103,8 @@ share/wesnoth/data/core/images/terrain/u
 share/wesnoth/data/core/images/terrain/unwalkable/lava3.png
 share/wesnoth/data/core/images/terrain/village/camp-tile.png
 share/wesnoth/data/core/images/terrain/village/camp.png
+share/wesnoth/data/core/images/terrain/village/camp2.png
+share/wesnoth/data/core/images/terrain/village/camp3.png
 share/wesnoth/data/core/images/terrain/village/cave-tile.png
 share/wesnoth/data/core/images/terrain/village/cave.png
 share/wesnoth/data/core/images/terrain/village/cave2.png
@@ -7565,6 +8124,8 @@ share/wesnoth/data/core/images/terrain/v
 share/wesnoth/data/core/images/terrain/village/coast_5-A04.png
 share/wesnoth/data/core/images/terrain/village/desert-camp-tile.png
 share/wesnoth/data/core/images/terrain/village/desert-camp.png
+share/wesnoth/data/core/images/terrain/village/desert-camp2.png
+share/wesnoth/data/core/images/terrain/village/desert-camp3.png
 share/wesnoth/data/core/images/terrain/village/desert-night.png
 share/wesnoth/data/core/images/terrain/village/desert-oasis-1.png
 share/wesnoth/data/core/images/terrain/village/desert-oasis-2.png
@@ -7753,6 +8314,67 @@ share/wesnoth/data/core/images/terrain/v
 share/wesnoth/data/core/images/terrain/void/void-sw-nw.png
 share/wesnoth/data/core/images/terrain/void/void-sw.png
 share/wesnoth/data/core/images/terrain/void/void.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-concave-bl.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-concave-br.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-concave-l.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-concave-r.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-convex-br.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-convex-l.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-convex-r.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-convex-tl.png
+share/wesnoth/data/core/images/terrain/walls/dummy/dummy-convex-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-mixed-ccw-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-mixed-ccw-l.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-mixed-corner-ccw-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-mixed-corner-cw-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-mixed-cw-br.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-mixed-cw-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-concave-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-concave-br.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-concave-l.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-concave-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-convex-br.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-convex-l.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-convex-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-convex-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-convex-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-corner-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-corner-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-corner-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-corner-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone-tile.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone2-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone2-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone2-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/ancient/wall-stone2-convex-br.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-bones-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-bones-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-bones-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-bones-convex-br.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-bones-convex-l.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-bones-convex-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-bones-corner-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-convex-br.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-convex-l.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-convex-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-corner-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-corner-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-corner-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-corner-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone-tile.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone2-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone2-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone2-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/catacombs/wall-stone2-convex-br.png
 share/wesnoth/data/core/images/terrain/walls/stone/clean/wall-stone-concave-tl.png
 share/wesnoth/data/core/images/terrain/walls/stone/clean/wall-stone-concave-tr.png
 share/wesnoth/data/core/images/terrain/walls/stone/clean/wall-stone-convex-bl.png
@@ -7764,6 +8386,31 @@ share/wesnoth/data/core/images/terrain/w
 share/wesnoth/data/core/images/terrain/walls/stone/clean/wall-stone2-concave-tr.png
 share/wesnoth/data/core/images/terrain/walls/stone/clean/wall-stone2-convex-bl.png
 share/wesnoth/data/core/images/terrain/walls/stone/clean/wall-stone2-convex-br.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/base-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/base-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/base-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/flames.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/glow1-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/glow1-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/glow1-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/glow2-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/glow2-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/glow2-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/glow3-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/glow3-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/glow3-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/mask-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/mask-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/mask-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/mask2-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/mask2-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/mask2-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/mask3-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/mask3-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/mask3-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/wall-post-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/wall-post-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/flames/candle/wall-post-convex-bl.png
 share/wesnoth/data/core/images/terrain/walls/stone/flames/flames-tile.png
 share/wesnoth/data/core/images/terrain/walls/stone/flames/sconce/base-concave-tl.png
 share/wesnoth/data/core/images/terrain/walls/stone/flames/sconce/base-concave-tr.png
@@ -7823,6 +8470,29 @@ share/wesnoth/data/core/images/terrain/w
 share/wesnoth/data/core/images/terrain/walls/stone/lit/wall-stone-lit-A09-concave-tr.png
 share/wesnoth/data/core/images/terrain/walls/stone/lit/wall-stone-lit-A10-concave-tl.png
 share/wesnoth/data/core/images/terrain/walls/stone/lit/wall-stone-lit-A10-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-flowers-concave-l.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-flowers-concave-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-flowers-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-flowers-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-flowers-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-flowers-convex-br.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-flowers-convex-l.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-flowers-convex-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-flowers-corner-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-concave-l.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-concave-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-convex-br.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-convex-l.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-convex-r.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-corner-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone-tile.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone2-concave-tl.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone2-concave-tr.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone2-convex-bl.png
+share/wesnoth/data/core/images/terrain/walls/stone/overgrown/wall-stone2-convex-br.png
 share/wesnoth/data/core/images/terrain/walls/stone/wall-mine-mixed-ccw-bl.png
 share/wesnoth/data/core/images/terrain/walls/stone/wall-mine-mixed-ccw-br.png
 share/wesnoth/data/core/images/terrain/walls/stone/wall-mine-mixed-ccw-l.png
@@ -9085,32 +9755,154 @@ share/wesnoth/data/core/images/units/dra
 share/wesnoth/data/core/images/units/drakes/warrior-takeoff-3.png
 share/wesnoth/data/core/images/units/drakes/warrior-takeoff-4.png
 share/wesnoth/data/core/images/units/drakes/warrior.png
-share/wesnoth/data/core/images/units/dunefolk/apothecary.png
-share/wesnoth/data/core/images/units/dunefolk/blademaster.png
-share/wesnoth/data/core/images/units/dunefolk/burner.png
-share/wesnoth/data/core/images/units/dunefolk/cataphract.png
-share/wesnoth/data/core/images/units/dunefolk/elder-falcon.png
-share/wesnoth/data/core/images/units/dunefolk/explorer.png
-share/wesnoth/data/core/images/units/dunefolk/falcon.png
-share/wesnoth/data/core/images/units/dunefolk/firetrooper.png
-share/wesnoth/data/core/images/units/dunefolk/harrier.png
-share/wesnoth/data/core/images/units/dunefolk/herbalist.png
-share/wesnoth/data/core/images/units/dunefolk/marauder.png
-share/wesnoth/data/core/images/units/dunefolk/piercer.png
-share/wesnoth/data/core/images/units/dunefolk/raider.png
-share/wesnoth/data/core/images/units/dunefolk/ranger.png
-share/wesnoth/data/core/images/units/dunefolk/rider.png
-share/wesnoth/data/core/images/units/dunefolk/rover.png
-share/wesnoth/data/core/images/units/dunefolk/scorcher.png
-share/wesnoth/data/core/images/units/dunefolk/skirmisher.png
-share/wesnoth/data/core/images/units/dunefolk/soldier.png
-share/wesnoth/data/core/images/units/dunefolk/spearguard.png
-share/wesnoth/data/core/images/units/dunefolk/spearmaster.png
-share/wesnoth/data/core/images/units/dunefolk/sunderer.png
-share/wesnoth/data/core/images/units/dunefolk/swiftrider.png
-share/wesnoth/data/core/images/units/dunefolk/swordsman.png
-share/wesnoth/data/core/images/units/dunefolk/warmaster.png
-share/wesnoth/data/core/images/units/dunefolk/windrider.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-fire1.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-fire2.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-fire3.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-fire4.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-fire5.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-fire6.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-fire7.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female-fire8.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner+female.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-fire1.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-fire2.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-fire3.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-fire4.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-fire5.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-fire6.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-fire7.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner-fire8.png
+share/wesnoth/data/core/images/units/dunefolk/burner/burner.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper+female.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame1.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame10.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame11.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame12.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame2.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame3.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame4.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame5.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame6.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame7.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame8.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_flame9.png
+share/wesnoth/data/core/images/units/dunefolk/burner/firetrooper_glow.png
+share/wesnoth/data/core/images/units/dunefolk/burner/scorcher+female.png
+share/wesnoth/data/core/images/units/dunefolk/burner/scorcher.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/alchemist-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/alchemist-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/alchemist.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/apothecary-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/apothecary-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/apothecary.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/herbalist-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/herbalist-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/herbalist.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/luminary-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/luminary-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/herbalist/luminary.png
+share/wesnoth/data/core/images/units/dunefolk/rider/cataphract-bow.png
+share/wesnoth/data/core/images/units/dunefolk/rider/cataphract-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/rider/cataphract-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/rider/cataphract-lance-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/rider/cataphract-lance-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/rider/cataphract-lance.png
+share/wesnoth/data/core/images/units/dunefolk/rider/cataphract-mace.png
+share/wesnoth/data/core/images/units/dunefolk/rider/cataphract.png
+share/wesnoth/data/core/images/units/dunefolk/rider/horse-archer.png
+share/wesnoth/data/core/images/units/dunefolk/rider/marauder-torch-overlay.png
+share/wesnoth/data/core/images/units/dunefolk/rider/marauder.png
+share/wesnoth/data/core/images/units/dunefolk/rider/raider-torch-overlay.png
+share/wesnoth/data/core/images/units/dunefolk/rider/raider.png
+share/wesnoth/data/core/images/units/dunefolk/rider/rider.png
+share/wesnoth/data/core/images/units/dunefolk/rider/sunderer-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/rider/sunderer-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/rider/sunderer.png
+share/wesnoth/data/core/images/units/dunefolk/rider/windbolt.png
+share/wesnoth/data/core/images/units/dunefolk/rover/explorer-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/rover/explorer-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/rover/explorer.png
+share/wesnoth/data/core/images/units/dunefolk/rover/rover-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/rover/rover-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/rover/rover.png
+share/wesnoth/data/core/images/units/dunefolk/rover/wayfarer-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/rover/wayfarer-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/rover/wayfarer.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/eagle-e.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/eagle-hover.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/eagle-hover1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/eagle-hover2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/eagle-hover3.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/eagle-n.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/eagle-rise.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falcon-dive.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falcon-e.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falcon-hover.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falcon-hover1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falcon-hover2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falcon-hover3.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falcon-n.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falcon-rise.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-alone-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-alone-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-alone.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-falcon-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-falcon-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-launch1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-launch2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-launch3.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-launch4.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-launch5.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer-move1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/falconer.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/harrier-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/harrier-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/harrier.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/skirmisher-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/skirmisher-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/skirmisher-ne-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/skirmisher-ne-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/skirmisher-ne.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/skirmisher.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-alone-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-alone-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-alone.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-eagle-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-eagle-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-launch1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-launch2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-launch3.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-launch4.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-launch5.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter-move1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/sky_hunter.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/strider-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/strider-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/skirmisher/strider.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/blademaster.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/captain-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/captain-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/captain-leading1.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/captain-leading2.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/captain.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/paragon.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/soldier-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/soldier-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/soldier.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/spearguard.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/spearmaster.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/swordsman-defend1.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/swordsman-defend2.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/swordsman.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/warmaster-leading1.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/warmaster-leading2.png
+share/wesnoth/data/core/images/units/dunefolk/soldier/warmaster.png
+share/wesnoth/data/core/images/units/dunefolk/wyvern-rider.png
 share/wesnoth/data/core/images/units/dwarves/arcanister.png
 share/wesnoth/data/core/images/units/dwarves/berserker/berserker-attack-1.png
 share/wesnoth/data/core/images/units/dwarves/berserker/berserker-attack-2.png
@@ -10492,6 +11284,15 @@ share/wesnoth/data/core/images/units/hum
 share/wesnoth/data/core/images/units/human-loyalists/bowman-melee-attack-4.png
 share/wesnoth/data/core/images/units/human-loyalists/bowman-melee-defend-1.png
 share/wesnoth/data/core/images/units/human-loyalists/bowman-melee-defend-2.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-ne-bow-attack-1.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-ne-bow-attack-2.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-ne-bow-attack-3.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-ne-bow-attack-4.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-ne-bow-defend.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-ne-bow.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-ne-melee-defend-1.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-ne-melee-defend-2.png
+share/wesnoth/data/core/images/units/human-loyalists/bowman-ne.png
 share/wesnoth/data/core/images/units/human-loyalists/bowman.png
 share/wesnoth/data/core/images/units/human-loyalists/cavalier/cavalier-defend1.png
 share/wesnoth/data/core/images/units/human-loyalists/cavalier/cavalier-defend2.png
@@ -11457,10 +12258,16 @@ share/wesnoth/data/core/images/units/hum
 share/wesnoth/data/core/images/units/human-outlaws/outlaw-melee-3.png
 share/wesnoth/data/core/images/units/human-outlaws/outlaw.png
 share/wesnoth/data/core/images/units/human-outlaws/poacher-attack.png
-share/wesnoth/data/core/images/units/human-outlaws/poacher-attack1.png
-share/wesnoth/data/core/images/units/human-outlaws/poacher-attack2.png
-share/wesnoth/data/core/images/units/human-outlaws/poacher-attack3.png
+share/wesnoth/data/core/images/units/human-outlaws/poacher-bow-attack1.png
+share/wesnoth/data/core/images/units/human-outlaws/poacher-bow-attack2.png
+share/wesnoth/data/core/images/units/human-outlaws/poacher-bow-attack3.png
+share/wesnoth/data/core/images/units/human-outlaws/poacher-bow-attack4.png
+share/wesnoth/data/core/images/units/human-outlaws/poacher-bow-attack5.png
+share/wesnoth/data/core/images/units/human-outlaws/poacher-bow-attack6.png
+share/wesnoth/data/core/images/units/human-outlaws/poacher-bow-attack7.png
 share/wesnoth/data/core/images/units/human-outlaws/poacher-bow-defend.png
+share/wesnoth/data/core/images/units/human-outlaws/poacher-dagger-defend1.png
+share/wesnoth/data/core/images/units/human-outlaws/poacher-dagger-defend2.png
 share/wesnoth/data/core/images/units/human-outlaws/poacher-dagger.png
 share/wesnoth/data/core/images/units/human-outlaws/poacher-defend.png
 share/wesnoth/data/core/images/units/human-outlaws/poacher.png
@@ -11557,11 +12364,15 @@ share/wesnoth/data/core/images/units/hum
 share/wesnoth/data/core/images/units/human-outlaws/thug.png
 share/wesnoth/data/core/images/units/human-outlaws/trapper-attack-melee-2.png
 share/wesnoth/data/core/images/units/human-outlaws/trapper-attack-melee.png
-share/wesnoth/data/core/images/units/human-outlaws/trapper-attack1.png
-share/wesnoth/data/core/images/units/human-outlaws/trapper-attack2.png
-share/wesnoth/data/core/images/units/human-outlaws/trapper-attack3.png
+share/wesnoth/data/core/images/units/human-outlaws/trapper-bow-attack1.png
+share/wesnoth/data/core/images/units/human-outlaws/trapper-bow-attack2.png
+share/wesnoth/data/core/images/units/human-outlaws/trapper-bow-attack3.png
+share/wesnoth/data/core/images/units/human-outlaws/trapper-bow-attack4.png
+share/wesnoth/data/core/images/units/human-outlaws/trapper-bow-attack5.png
+share/wesnoth/data/core/images/units/human-outlaws/trapper-bow-attack6.png
+share/wesnoth/data/core/images/units/human-outlaws/trapper-bow-attack7.png
 share/wesnoth/data/core/images/units/human-outlaws/trapper-bow-defend.png
-share/wesnoth/data/core/images/units/human-outlaws/trapper-dagger.png
+share/wesnoth/data/core/images/units/human-outlaws/trapper-bow.png
 share/wesnoth/data/core/images/units/human-outlaws/trapper-defend.png
 share/wesnoth/data/core/images/units/human-outlaws/trapper-die-1.png
 share/wesnoth/data/core/images/units/human-outlaws/trapper-die-2.png
@@ -11710,6 +12521,101 @@ share/wesnoth/data/core/images/units/mer
 share/wesnoth/data/core/images/units/merfolk/warrior-defend-1.png
 share/wesnoth/data/core/images/units/merfolk/warrior-defend-2.png
 share/wesnoth/data/core/images/units/merfolk/warrior.png
+share/wesnoth/data/core/images/units/monsters/ant/ant-attack.png
+share/wesnoth/data/core/images/units/monsters/ant/ant-defend.png
+share/wesnoth/data/core/images/units/monsters/ant/ant.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-defend1.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-defend2.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame1.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame10.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame11.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame12.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame2.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame3.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame4.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame5.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame6.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame7.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame8.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-flame9.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant-glow.png
+share/wesnoth/data/core/images/units/monsters/ant/fire-ant.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-2claws1.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-2claws2.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-2claws3.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-2claws4.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-2claws5.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-2claws6.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-2claws7.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-2claws8.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-bite1.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-bite2.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-bite3.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-bite4.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-bite5.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-bite6.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-claws1.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-claws2.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-claws3.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-claws4.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-claws5.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-claws6.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-defend1.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-defend2.png
+share/wesnoth/data/core/images/units/monsters/bear/bear-water.png
+share/wesnoth/data/core/images/units/monsters/bear/bear.png
+share/wesnoth/data/core/images/units/monsters/boar/piglet-attack.png
+share/wesnoth/data/core/images/units/monsters/boar/piglet-attack1.png
+share/wesnoth/data/core/images/units/monsters/boar/piglet-attack2.png
+share/wesnoth/data/core/images/units/monsters/boar/piglet-defend.png
+share/wesnoth/data/core/images/units/monsters/boar/piglet-defend2.png
+share/wesnoth/data/core/images/units/monsters/boar/piglet-moving1.png
+share/wesnoth/data/core/images/units/monsters/boar/piglet-moving2.png
+share/wesnoth/data/core/images/units/monsters/boar/piglet-water.png
+share/wesnoth/data/core/images/units/monsters/boar/piglet.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-bite1.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-bite2.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-bite3.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-bite4.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-bite5.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-bite6.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-bite7.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-charge1.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-charge2.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-charge3.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-charge4.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-charge5.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-defend.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-defend2.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-dust1.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-dust2.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-dust3.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-dust4.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-dust5.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-moving.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland-water.png
+share/wesnoth/data/core/images/units/monsters/boar/woodland.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-attack1.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-attack2.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-attack3.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-attack4.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-attack5.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-attack6.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-attack7.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-defend1.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-defend2.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-float-attack1.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-float-attack2.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-float-attack3.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-float-attack4.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-float-attack5.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-float-attack6.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-float-defend1.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-float-defend2.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-float.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-no-tail.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile-tail.png
+share/wesnoth/data/core/images/units/monsters/croc/crocodile.png
 share/wesnoth/data/core/images/units/monsters/cuttlefish-defend-1.png
 share/wesnoth/data/core/images/units/monsters/cuttlefish-defend-2.png
 share/wesnoth/data/core/images/units/monsters/cuttlefish-die-1.png
@@ -11764,6 +12670,22 @@ share/wesnoth/data/core/images/units/mon
 share/wesnoth/data/core/images/units/monsters/direwolf-idle-4.png
 share/wesnoth/data/core/images/units/monsters/direwolf-moving.png
 share/wesnoth/data/core/images/units/monsters/direwolf.png
+share/wesnoth/data/core/images/units/monsters/falcon/elder-falcon.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-attack-1.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-attack-2.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-attack-beak.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-attack-claws.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-attack-end.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-hit1.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-hit2.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-ne.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-shadow.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-soar1.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-soar2.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-soar3.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-soar4.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon-soar5.png
+share/wesnoth/data/core/images/units/monsters/falcon/falcon.png
 share/wesnoth/data/core/images/units/monsters/fire-dragon.png
 share/wesnoth/data/core/images/units/monsters/fireghost-attack1.png
 share/wesnoth/data/core/images/units/monsters/fireghost-attack2.png
@@ -11776,6 +12698,18 @@ share/wesnoth/data/core/images/units/mon
 share/wesnoth/data/core/images/units/monsters/fireghost-defend.png
 share/wesnoth/data/core/images/units/monsters/fireghost-ranged2.png
 share/wesnoth/data/core/images/units/monsters/fireghost.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-defend1.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-defend2.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-halo.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-s1.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-s2.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-s3.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-s4.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-s5.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-s6.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-s7.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith-s8.png
+share/wesnoth/data/core/images/units/monsters/firewraith/firewraith.png
 share/wesnoth/data/core/images/units/monsters/giant-mudcrawler-attack1.png
 share/wesnoth/data/core/images/units/monsters/giant-mudcrawler-attack10.png
 share/wesnoth/data/core/images/units/monsters/giant-mudcrawler-attack11.png
@@ -11824,6 +12758,93 @@ share/wesnoth/data/core/images/units/mon
 share/wesnoth/data/core/images/units/monsters/gryphon-flying-7.png
 share/wesnoth/data/core/images/units/monsters/gryphon-flying-8.png
 share/wesnoth/data/core/images/units/monsters/gryphon.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-attack1.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-attack2.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-attack3.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-attack4.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-attack5.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-attack6.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-attack7.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-defend-1.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-defend-2.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger+female.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger-attack1.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger-attack2.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger-attack3.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger-attack4.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger-attack5.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger-attack6.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger-attack7.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger-defend-1.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger-defend-2.png
+share/wesnoth/data/core/images/units/monsters/horse/horse-larger.png
+share/wesnoth/data/core/images/units/monsters/horse/horse.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-claws1.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-claws2.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-claws3.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-claws4.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-claws5.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-claws6.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-claws7.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-claws8.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-claws9.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-defend1.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-defend2.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-tail1.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-tail2.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-tail3.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-tail4.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-tail5.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-tail6.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-tail7.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-tail8.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-tail9.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax-water.png
+share/wesnoth/data/core/images/units/monsters/icemonax/great-icemonax.png
+share/wesnoth/data/core/images/units/monsters/icemonax/young-icemonax-attack1.png
+share/wesnoth/data/core/images/units/monsters/icemonax/young-icemonax-attack2.png
+share/wesnoth/data/core/images/units/monsters/icemonax/young-icemonax-attack3.png
+share/wesnoth/data/core/images/units/monsters/icemonax/young-icemonax-attack4.png
+share/wesnoth/data/core/images/units/monsters/icemonax/young-icemonax-defend1.png
+share/wesnoth/data/core/images/units/monsters/icemonax/young-icemonax-defend2.png
+share/wesnoth/data/core/images/units/monsters/icemonax/young-icemonax-water.png
+share/wesnoth/data/core/images/units/monsters/icemonax/young-icemonax.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-attack-1.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-attack-2.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-attack-3.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-attack-4.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-bottom1.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-bottom2.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-bottom3.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-bottom4.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-bottom5.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-bottom6.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-defend1.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-defend2.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-lightning-1.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-lightning-2.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-lightning-3.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-lightning-4.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-lightning-5.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-top-hi.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-top-lo.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-top.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-wind-1.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-wind-2.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-wind-3.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-wind-4.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-wind-5.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-wind-6.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-wind-7.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-wind-8.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn-wind-9.png
+share/wesnoth/data/core/images/units/monsters/jinn/jinn.png
+share/wesnoth/data/core/images/units/monsters/jinn/sand-halo-1.png
+share/wesnoth/data/core/images/units/monsters/jinn/sand-halo-2.png
+share/wesnoth/data/core/images/units/monsters/jinn/sand-halo-3.png
+share/wesnoth/data/core/images/units/monsters/jinn/sand-halo-4.png
+share/wesnoth/data/core/images/units/monsters/jinn/sand-halo-5.png
+share/wesnoth/data/core/images/units/monsters/jinn/sand-halo-6.png
 share/wesnoth/data/core/images/units/monsters/mudcrawler-attack-1.png
 share/wesnoth/data/core/images/units/monsters/mudcrawler-attack-2.png
 share/wesnoth/data/core/images/units/monsters/mudcrawler-attack-3.png
@@ -11835,6 +12856,54 @@ share/wesnoth/data/core/images/units/mon
 share/wesnoth/data/core/images/units/monsters/mudcrawler-die-2.png
 share/wesnoth/data/core/images/units/monsters/mudcrawler-die-3.png
 share/wesnoth/data/core/images/units/monsters/mudcrawler.png
+share/wesnoth/data/core/images/units/monsters/roc-attack.png
+share/wesnoth/data/core/images/units/monsters/roc.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab-bite-1.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab-bite-2.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab-bite-3.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab-bite-4.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab-defend1.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab-defend2.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab-horn-1.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab-horn-2.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab-horn-3.png
+share/wesnoth/data/core/images/units/monsters/scarab/scarab.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-defend1.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-defend2.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-pincer-1.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-pincer-2.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-pincer-3.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-pincer-4.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-pincer-5.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-pincer-6.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-pincer-7.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion-pincer-8.png
+share/wesnoth/data/core/images/units/monsters/scorpion/rock-scorpion.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-defend1.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-defend2.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-ne-defend1.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-ne-defend2.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-ne-pincer1.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-ne-pincer2.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-ne-pincer3.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-ne-pincer4.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-ne-pincer5.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-ne-pincer6.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-ne.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-pincer-1.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-pincer-2.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-pincer-3.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-pincer-4.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-pincer-5.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-pincer-6.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-stinger-1.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-stinger-2.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-stinger-3.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-stinger-4.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-stinger-5.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-stinger-6.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler-stinger-7.png
+share/wesnoth/data/core/images/units/monsters/scorpion/sand-scuttler.png
 share/wesnoth/data/core/images/units/monsters/scorpion/scorpion-defend1.png
 share/wesnoth/data/core/images/units/monsters/scorpion/scorpion-defend2.png
 share/wesnoth/data/core/images/units/monsters/scorpion/scorpion-ne-defend1.png
@@ -11875,6 +12944,19 @@ share/wesnoth/data/core/images/units/mon
 share/wesnoth/data/core/images/units/monsters/scorpion/scorpling-sting4.png
 share/wesnoth/data/core/images/units/monsters/scorpion/scorpling-sting5.png
 share/wesnoth/data/core/images/units/monsters/scorpion/scorpling.png
+share/wesnoth/data/core/images/units/monsters/seahorse-attack1.png
+share/wesnoth/data/core/images/units/monsters/seahorse-attack2.png
+share/wesnoth/data/core/images/units/monsters/seahorse-attack3.png
+share/wesnoth/data/core/images/units/monsters/seahorse-attack4.png
+share/wesnoth/data/core/images/units/monsters/seahorse-attack5.png
+share/wesnoth/data/core/images/units/monsters/seahorse-attack6.png
+share/wesnoth/data/core/images/units/monsters/seahorse-defend1.png
+share/wesnoth/data/core/images/units/monsters/seahorse-defend2.png
+share/wesnoth/data/core/images/units/monsters/seahorse-mask.png
+share/wesnoth/data/core/images/units/monsters/seahorse-shadow.png
+share/wesnoth/data/core/images/units/monsters/seahorse-spit1.png
+share/wesnoth/data/core/images/units/monsters/seahorse-spit2.png
+share/wesnoth/data/core/images/units/monsters/seahorse.png
 share/wesnoth/data/core/images/units/monsters/seaserpent.png
 share/wesnoth/data/core/images/units/monsters/skeletal-dragon/skeletal-dragon.png
 share/wesnoth/data/core/images/units/monsters/spider-melee-1.png
@@ -11898,6 +12980,26 @@ share/wesnoth/data/core/images/units/mon
 share/wesnoth/data/core/images/units/monsters/spider-ranged-6.png
 share/wesnoth/data/core/images/units/monsters/spider-ranged-7.png
 share/wesnoth/data/core/images/units/monsters/spider.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-bite1.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-bite2.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-bite3.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-bite4.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-bite5.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-bite6.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-claws1.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-claws2.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-claws3.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-claws4.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-claws5.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-claws6.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-crouch1.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-crouch2.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-crouch3.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-defend1.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-defend2.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-low.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat-moving.png
+share/wesnoth/data/core/images/units/monsters/stoat/stoat.png
 share/wesnoth/data/core/images/units/monsters/water-serpent-attack-n-5.png
 share/wesnoth/data/core/images/units/monsters/water-serpent-attack-n-6.png
 share/wesnoth/data/core/images/units/monsters/water-serpent-attack-ne-1.png
@@ -11932,6 +13034,26 @@ share/wesnoth/data/core/images/units/mon
 share/wesnoth/data/core/images/units/monsters/wolf-moving.png
 share/wesnoth/data/core/images/units/monsters/wolf-water.png
 share/wesnoth/data/core/images/units/monsters/wolf.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-defend1.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-defend2.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-defend.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-shadow.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-takeoff1.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-takeoff2.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-takeoff3.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-takeoff4.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-takeoff5.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-takeoff6.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-takeoff7.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly-takeoff8.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly1.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly2.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly3.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly4.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly5.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly6.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern-fly7.png
+share/wesnoth/data/core/images/units/monsters/wyvern/wild-wyvern.png
 share/wesnoth/data/core/images/units/monsters/yeti-attack1.png
 share/wesnoth/data/core/images/units/monsters/yeti-attack2.png
 share/wesnoth/data/core/images/units/monsters/yeti-attack3.png
@@ -11942,6 +13064,27 @@ share/wesnoth/data/core/images/units/mon
 share/wesnoth/data/core/images/units/monsters/yeti-die4.png
 share/wesnoth/data/core/images/units/monsters/yeti-die5.png
 share/wesnoth/data/core/images/units/monsters/yeti.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-defend1.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-defend2.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-melee1.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-melee2.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-melee3.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-melee4.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-melee5.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-melee6.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-range-defend1.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-range-defend2.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw1.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw10.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw2.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw3.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw4.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw5.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw6.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw7.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw8.png
+share/wesnoth/data/core/images/units/nagas/dirkfang-throw9.png
+share/wesnoth/data/core/images/units/nagas/dirkfang.png
 share/wesnoth/data/core/images/units/nagas/fighter-defend-1.png
 share/wesnoth/data/core/images/units/nagas/fighter-defend-2.png
 share/wesnoth/data/core/images/units/nagas/fighter-idle-1.png
@@ -11959,6 +13102,14 @@ share/wesnoth/data/core/images/units/nag
 share/wesnoth/data/core/images/units/nagas/fighter-melee-5.png
 share/wesnoth/data/core/images/units/nagas/fighter-melee-6.png
 share/wesnoth/data/core/images/units/nagas/fighter.png
+share/wesnoth/data/core/images/units/nagas/guardian-attack-1.png
+share/wesnoth/data/core/images/units/nagas/guardian-attack-2.png
+share/wesnoth/data/core/images/units/nagas/guardian-attack-3.png
+share/wesnoth/data/core/images/units/nagas/guardian-attack-4.png
+share/wesnoth/data/core/images/units/nagas/guardian-attack-5.png
+share/wesnoth/data/core/images/units/nagas/guardian-defend-1.png
+share/wesnoth/data/core/images/units/nagas/guardian-defend-2.png
+share/wesnoth/data/core/images/units/nagas/guardian.png
 share/wesnoth/data/core/images/units/nagas/myrmidon-defend-1.png
 share/wesnoth/data/core/images/units/nagas/myrmidon-defend-2.png
 share/wesnoth/data/core/images/units/nagas/myrmidon-melee-1.png
@@ -11968,6 +13119,82 @@ share/wesnoth/data/core/images/units/nag
 share/wesnoth/data/core/images/units/nagas/myrmidon-melee-5.png
 share/wesnoth/data/core/images/units/nagas/myrmidon-melee-6.png
 share/wesnoth/data/core/images/units/nagas/myrmidon.png
+share/wesnoth/data/core/images/units/nagas/ophidian-defend1.png
+share/wesnoth/data/core/images/units/nagas/ophidian-defend2.png
+share/wesnoth/data/core/images/units/nagas/ophidian-jarid-1.png
+share/wesnoth/data/core/images/units/nagas/ophidian-jarid-2.png
+share/wesnoth/data/core/images/units/nagas/ophidian-jarid-3.png
+share/wesnoth/data/core/images/units/nagas/ophidian-jarid-4.png
+share/wesnoth/data/core/images/units/nagas/ophidian-jarid-5.png
+share/wesnoth/data/core/images/units/nagas/ophidian-jarid-6.png
+share/wesnoth/data/core/images/units/nagas/ophidian-jarid-7.png
+share/wesnoth/data/core/images/units/nagas/ophidian-melee1.png
+share/wesnoth/data/core/images/units/nagas/ophidian-melee2.png
+share/wesnoth/data/core/images/units/nagas/ophidian-melee3.png
+share/wesnoth/data/core/images/units/nagas/ophidian-melee4.png
+share/wesnoth/data/core/images/units/nagas/ophidian-melee5.png
+share/wesnoth/data/core/images/units/nagas/ophidian-melee6.png
+share/wesnoth/data/core/images/units/nagas/ophidian-melee7.png
+share/wesnoth/data/core/images/units/nagas/ophidian.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-attack-1.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-attack-2.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-attack-3.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-attack-4.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-attack-5.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-attack-6.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-attack-7.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-defend1.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-defend2.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-throw-1.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-throw-2.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-throw-3.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-throw-4.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-throw-5.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-throw-6.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-throw-7.png
+share/wesnoth/data/core/images/units/nagas/ringcaster-throw-8.png
+share/wesnoth/data/core/images/units/nagas/ringcaster.png
+share/wesnoth/data/core/images/units/nagas/sentinel-attack-1.png
+share/wesnoth/data/core/images/units/nagas/sentinel-attack-2.png
+share/wesnoth/data/core/images/units/nagas/sentinel-attack-3.png
+share/wesnoth/data/core/images/units/nagas/sentinel-attack-4.png
+share/wesnoth/data/core/images/units/nagas/sentinel-defend-1.png
+share/wesnoth/data/core/images/units/nagas/sentinel-defend-1abs.png
+share/wesnoth/data/core/images/units/nagas/sentinel-defend-2.png
+share/wesnoth/data/core/images/units/nagas/sentinel-defend-2abs.png
+share/wesnoth/data/core/images/units/nagas/sentinel.png
+share/wesnoth/data/core/images/units/nagas/sicarius-attack1.png
+share/wesnoth/data/core/images/units/nagas/sicarius-attack2.png
+share/wesnoth/data/core/images/units/nagas/sicarius-attack3.png
+share/wesnoth/data/core/images/units/nagas/sicarius-attack4.png
+share/wesnoth/data/core/images/units/nagas/sicarius-attack5.png
+share/wesnoth/data/core/images/units/nagas/sicarius-attack6.png
+share/wesnoth/data/core/images/units/nagas/sicarius-attack7.png
+share/wesnoth/data/core/images/units/nagas/sicarius-attack8.png
+share/wesnoth/data/core/images/units/nagas/sicarius-defend1.png
+share/wesnoth/data/core/images/units/nagas/sicarius-defend2.png
+share/wesnoth/data/core/images/units/nagas/sicarius-throw1.png
+share/wesnoth/data/core/images/units/nagas/sicarius-throw2.png
+share/wesnoth/data/core/images/units/nagas/sicarius-throw3.png
+share/wesnoth/data/core/images/units/nagas/sicarius-throw4.png
+share/wesnoth/data/core/images/units/nagas/sicarius-throw5.png
+share/wesnoth/data/core/images/units/nagas/sicarius-throw6.png
+share/wesnoth/data/core/images/units/nagas/sicarius.png
+share/wesnoth/data/core/images/units/nagas/warden-attack-1.png
+share/wesnoth/data/core/images/units/nagas/warden-attack-2.png
+share/wesnoth/data/core/images/units/nagas/warden-attack-3.png
+share/wesnoth/data/core/images/units/nagas/warden-attack-4.png
+share/wesnoth/data/core/images/units/nagas/warden-attack-5.png
+share/wesnoth/data/core/images/units/nagas/warden-attack-6.png
+share/wesnoth/data/core/images/units/nagas/warden-defend-1.png
+share/wesnoth/data/core/images/units/nagas/warden-defend-2.png
+share/wesnoth/data/core/images/units/nagas/warden-shield-attack-1.png
+share/wesnoth/data/core/images/units/nagas/warden-shield-attack-2.png
+share/wesnoth/data/core/images/units/nagas/warden-shield-attack-3.png
+share/wesnoth/data/core/images/units/nagas/warden-shield-attack-4.png
+share/wesnoth/data/core/images/units/nagas/warden-shield-defend2.png
+share/wesnoth/data/core/images/units/nagas/warden-shield-swoosh.png
+share/wesnoth/data/core/images/units/nagas/warden.png
 share/wesnoth/data/core/images/units/nagas/warrior-defend-1.png
 share/wesnoth/data/core/images/units/nagas/warrior-defend-2.png
 share/wesnoth/data/core/images/units/nagas/warrior-melee-1.png
@@ -11977,6 +13204,9 @@ share/wesnoth/data/core/images/units/nag
 share/wesnoth/data/core/images/units/nagas/warrior-melee-5.png
 share/wesnoth/data/core/images/units/nagas/warrior-melee-6.png
 share/wesnoth/data/core/images/units/nagas/warrior.png
+share/wesnoth/data/core/images/units/nagas/zephyr-defend1.png
+share/wesnoth/data/core/images/units/nagas/zephyr-defend2.png
+share/wesnoth/data/core/images/units/nagas/zephyr.png
 share/wesnoth/data/core/images/units/ogres/ogre-attack1.png
 share/wesnoth/data/core/images/units/ogres/ogre-attack2.png
 share/wesnoth/data/core/images/units/ogres/ogre-attack3.png
@@ -12024,6 +13254,25 @@ share/wesnoth/data/core/images/units/orc
 share/wesnoth/data/core/images/units/orcs/archer-melee-5.png
 share/wesnoth/data/core/images/units/orcs/archer-melee-6.png
 share/wesnoth/data/core/images/units/orcs/archer-melee.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bob-1.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bob-2.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bob-3.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bob-4.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bow-attack-1.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bow-attack-2.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bow-attack-3.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bow-attack-4.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bow-defend.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-bow.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-defend-1.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-defend-2.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-idle-1.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-idle-2.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-idle-3.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-idle-4.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-idle-5.png
+share/wesnoth/data/core/images/units/orcs/archer-ne-idle-6.png
+share/wesnoth/data/core/images/units/orcs/archer-ne.png
 share/wesnoth/data/core/images/units/orcs/archer.png
 share/wesnoth/data/core/images/units/orcs/assassin-attack-1.png
 share/wesnoth/data/core/images/units/orcs/assassin-attack-2.png
@@ -12071,6 +13320,24 @@ share/wesnoth/data/core/images/units/orc
 share/wesnoth/data/core/images/units/orcs/grunt-die-6.png
 share/wesnoth/data/core/images/units/orcs/grunt-die-7.png
 share/wesnoth/data/core/images/units/orcs/grunt-die-8.png
+share/wesnoth/data/core/images/units/orcs/grunt-die-sword.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-defend-1.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-defend-2.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-die-1.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-die-2.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-die-3.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-die-4.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-die-5.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-die-6.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-die-7.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-die-8.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne-die-sword.png
+share/wesnoth/data/core/images/units/orcs/grunt-ne.png
+share/wesnoth/data/core/images/units/orcs/grunt-stand-ne-1.png
+share/wesnoth/data/core/images/units/orcs/grunt-stand-ne-2.png
+share/wesnoth/data/core/images/units/orcs/grunt-stand-ne-3.png
+share/wesnoth/data/core/images/units/orcs/grunt-stand-ne-4.png
+share/wesnoth/data/core/images/units/orcs/grunt-stand-ne-5.png
 share/wesnoth/data/core/images/units/orcs/grunt-stand-se-1.png
 share/wesnoth/data/core/images/units/orcs/grunt-stand-se-2.png
 share/wesnoth/data/core/images/units/orcs/grunt-stand-se-3.png
@@ -12091,44 +13358,44 @@ share/wesnoth/data/core/images/units/orc
 share/wesnoth/data/core/images/units/orcs/leader-ranged-defend.png
 share/wesnoth/data/core/images/units/orcs/leader-ranged.png
 share/wesnoth/data/core/images/units/orcs/leader.png
-share/wesnoth/data/core/images/units/orcs/nightblade-attack-se1.png
-share/wesnoth/data/core/images/units/orcs/nightblade-attack-se2.png
-share/wesnoth/data/core/images/units/orcs/nightblade-attack-se3.png
-share/wesnoth/data/core/images/units/orcs/nightblade-attack-se4.png
-share/wesnoth/data/core/images/units/orcs/nightblade-attack-se5.png
-share/wesnoth/data/core/images/units/orcs/nightblade-attack-se6.png
-share/wesnoth/data/core/images/units/orcs/nightblade-attack-se7.png
-share/wesnoth/data/core/images/units/orcs/nightblade-attack-se8.png
-share/wesnoth/data/core/images/units/orcs/nightblade-attack-se9.png
-share/wesnoth/data/core/images/units/orcs/nightblade-defend-se1-1.png
-share/wesnoth/data/core/images/units/orcs/nightblade-defend-se1-2.png
-share/wesnoth/data/core/images/units/orcs/nightblade-defend-se1-3.png
-share/wesnoth/data/core/images/units/orcs/nightblade-defend-se1-4.png
-share/wesnoth/data/core/images/units/orcs/nightblade-defend-se1-5.png
-share/wesnoth/data/core/images/units/orcs/nightblade-defend-se2-1.png
-share/wesnoth/data/core/images/units/orcs/nightblade-defend-se2-2.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se1.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se10.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se11.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se12.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se2.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se3.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se4.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se5.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se6.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se7.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se8.png
-share/wesnoth/data/core/images/units/orcs/nightblade-kick-se9.png
+share/wesnoth/data/core/images/units/orcs/nightblade-attack-se-1.png
+share/wesnoth/data/core/images/units/orcs/nightblade-attack-se-2.png
+share/wesnoth/data/core/images/units/orcs/nightblade-attack-se-3.png
+share/wesnoth/data/core/images/units/orcs/nightblade-attack-se-4.png
+share/wesnoth/data/core/images/units/orcs/nightblade-attack-se-5.png
+share/wesnoth/data/core/images/units/orcs/nightblade-attack-se-6.png
+share/wesnoth/data/core/images/units/orcs/nightblade-attack-se-7.png
+share/wesnoth/data/core/images/units/orcs/nightblade-attack-se-8.png
+share/wesnoth/data/core/images/units/orcs/nightblade-attack-se-9.png
+share/wesnoth/data/core/images/units/orcs/nightblade-defend-se-1-1.png
+share/wesnoth/data/core/images/units/orcs/nightblade-defend-se-1-2.png
+share/wesnoth/data/core/images/units/orcs/nightblade-defend-se-1-3.png
+share/wesnoth/data/core/images/units/orcs/nightblade-defend-se-1-4.png
+share/wesnoth/data/core/images/units/orcs/nightblade-defend-se-1-5.png
+share/wesnoth/data/core/images/units/orcs/nightblade-defend-se-2-1.png
+share/wesnoth/data/core/images/units/orcs/nightblade-defend-se-2-2.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-1.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-10.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-11.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-12.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-2.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-3.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-4.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-5.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-6.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-7.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-8.png
+share/wesnoth/data/core/images/units/orcs/nightblade-kick-se-9.png
 share/wesnoth/data/core/images/units/orcs/nightblade-se.png
-share/wesnoth/data/core/images/units/orcs/nightblade-throw-se1.png
-share/wesnoth/data/core/images/units/orcs/nightblade-throw-se2.png
-share/wesnoth/data/core/images/units/orcs/nightblade-throw-se3.png
-share/wesnoth/data/core/images/units/orcs/nightblade-throw-se4.png
-share/wesnoth/data/core/images/units/orcs/nightblade-throw-se5.png
-share/wesnoth/data/core/images/units/orcs/nightblade-throw-se6.png
-share/wesnoth/data/core/images/units/orcs/nightblade-throw-se7.png
-share/wesnoth/data/core/images/units/orcs/nightblade-throw-se8.png
-share/wesnoth/data/core/images/units/orcs/nightblade-throw-se9.png
+share/wesnoth/data/core/images/units/orcs/nightblade-throw-se-1.png
+share/wesnoth/data/core/images/units/orcs/nightblade-throw-se-2.png
+share/wesnoth/data/core/images/units/orcs/nightblade-throw-se-3.png
+share/wesnoth/data/core/images/units/orcs/nightblade-throw-se-4.png
+share/wesnoth/data/core/images/units/orcs/nightblade-throw-se-5.png
+share/wesnoth/data/core/images/units/orcs/nightblade-throw-se-6.png
+share/wesnoth/data/core/images/units/orcs/nightblade-throw-se-7.png
+share/wesnoth/data/core/images/units/orcs/nightblade-throw-se-8.png
+share/wesnoth/data/core/images/units/orcs/nightblade-throw-se-9.png
 share/wesnoth/data/core/images/units/orcs/nightblade.png
 share/wesnoth/data/core/images/units/orcs/ruler-attack-sword-1.png
 share/wesnoth/data/core/images/units/orcs/ruler-attack-sword-2.png
@@ -12757,11 +14024,13 @@ share/wesnoth/data/core/images/units/tro
 share/wesnoth/data/core/images/units/trolls/grunt-attack-3.png
 share/wesnoth/data/core/images/units/trolls/grunt-attack-4.png
 share/wesnoth/data/core/images/units/trolls/grunt-defend.png
+share/wesnoth/data/core/images/units/trolls/grunt-defend2.png
 share/wesnoth/data/core/images/units/trolls/grunt.png
 share/wesnoth/data/core/images/units/trolls/lobber-attack-melee.png
 share/wesnoth/data/core/images/units/trolls/lobber-attack-ranged1.png
 share/wesnoth/data/core/images/units/trolls/lobber-attack-ranged2.png
 share/wesnoth/data/core/images/units/trolls/lobber-defend.png
+share/wesnoth/data/core/images/units/trolls/lobber-defend2.png
 share/wesnoth/data/core/images/units/trolls/lobber.png
 share/wesnoth/data/core/images/units/trolls/shaman-defend-1.png
 share/wesnoth/data/core/images/units/trolls/shaman-defend-2.png
@@ -12796,6 +14065,7 @@ share/wesnoth/data/core/images/units/tro
 share/wesnoth/data/core/images/units/trolls/warrior-attack-3.png
 share/wesnoth/data/core/images/units/trolls/warrior-attack-4.png
 share/wesnoth/data/core/images/units/trolls/warrior-defend.png
+share/wesnoth/data/core/images/units/trolls/warrior-defend2.png
 share/wesnoth/data/core/images/units/trolls/warrior.png
 share/wesnoth/data/core/images/units/trolls/whelp-attack-1.png
 share/wesnoth/data/core/images/units/trolls/whelp-attack-2.png
@@ -12809,6 +14079,16 @@ share/wesnoth/data/core/images/units/tro
 share/wesnoth/data/core/images/units/trolls/whelp-idle-5.png
 share/wesnoth/data/core/images/units/trolls/whelp-idle-6.png
 share/wesnoth/data/core/images/units/trolls/whelp-idle-7.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne-defend-2.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne-defend-3.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne-defend.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne-idle-1.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne-idle-2.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne-idle-3.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne-idle-4.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne-idle-5.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne-idle-6.png
+share/wesnoth/data/core/images/units/trolls/whelp-ne.png
 share/wesnoth/data/core/images/units/trolls/whelp.png
 share/wesnoth/data/core/images/units/undead-necromancers/adept+female-defend-1.png
 share/wesnoth/data/core/images/units/undead-necromancers/adept+female-defend-2.png
@@ -13270,6 +14550,24 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/soulless-bat-se-3.png
 share/wesnoth/data/core/images/units/undead/soulless-bat-se-4.png
 share/wesnoth/data/core/images/units/undead/soulless-bat-se-5.png
+share/wesnoth/data/core/images/units/undead/soulless-beastrider-attack-n.png
+share/wesnoth/data/core/images/units/undead/soulless-beastrider-attack-s.png
+share/wesnoth/data/core/images/units/undead/soulless-beastrider-attack.png
+share/wesnoth/data/core/images/units/undead/soulless-beastrider-defend.png
+share/wesnoth/data/core/images/units/undead/soulless-beastrider-die-1.png
+share/wesnoth/data/core/images/units/undead/soulless-beastrider-die-2.png
+share/wesnoth/data/core/images/units/undead/soulless-beastrider-die-3.png
+share/wesnoth/data/core/images/units/undead/soulless-beastrider-die-4.png
+share/wesnoth/data/core/images/units/undead/soulless-beastrider.png
+share/wesnoth/data/core/images/units/undead/soulless-boar-attack-n.png
+share/wesnoth/data/core/images/units/undead/soulless-boar-attack-s.png
+share/wesnoth/data/core/images/units/undead/soulless-boar-attack.png
+share/wesnoth/data/core/images/units/undead/soulless-boar-defend.png
+share/wesnoth/data/core/images/units/undead/soulless-boar-die-1.png
+share/wesnoth/data/core/images/units/undead/soulless-boar-die-2.png
+share/wesnoth/data/core/images/units/undead/soulless-boar-die-3.png
+share/wesnoth/data/core/images/units/undead/soulless-boar-die-4.png
+share/wesnoth/data/core/images/units/undead/soulless-boar.png
 share/wesnoth/data/core/images/units/undead/soulless-defend.png
 share/wesnoth/data/core/images/units/undead/soulless-die-1.png
 share/wesnoth/data/core/images/units/undead/soulless-die-10.png
@@ -13299,6 +14597,15 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/soulless-dwarf-die-3.png
 share/wesnoth/data/core/images/units/undead/soulless-dwarf-die-4.png
 share/wesnoth/data/core/images/units/undead/soulless-dwarf.png
+share/wesnoth/data/core/images/units/undead/soulless-falcon-attack-n.png
+share/wesnoth/data/core/images/units/undead/soulless-falcon-attack-s.png
+share/wesnoth/data/core/images/units/undead/soulless-falcon-attack.png
+share/wesnoth/data/core/images/units/undead/soulless-falcon-defend.png
+share/wesnoth/data/core/images/units/undead/soulless-falcon-die-1.png
+share/wesnoth/data/core/images/units/undead/soulless-falcon-die-2.png
+share/wesnoth/data/core/images/units/undead/soulless-falcon-die-3.png
+share/wesnoth/data/core/images/units/undead/soulless-falcon-die-4.png
+share/wesnoth/data/core/images/units/undead/soulless-falcon.png
 share/wesnoth/data/core/images/units/undead/soulless-goblin-attack-n.png
 share/wesnoth/data/core/images/units/undead/soulless-goblin-attack-s.png
 share/wesnoth/data/core/images/units/undead/soulless-goblin-attack.png
@@ -13317,6 +14624,15 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/soulless-gryphon-die-3.png
 share/wesnoth/data/core/images/units/undead/soulless-gryphon-die-4.png
 share/wesnoth/data/core/images/units/undead/soulless-gryphon.png
+share/wesnoth/data/core/images/units/undead/soulless-horse-attack-n.png
+share/wesnoth/data/core/images/units/undead/soulless-horse-attack-s.png
+share/wesnoth/data/core/images/units/undead/soulless-horse-attack.png
+share/wesnoth/data/core/images/units/undead/soulless-horse-defend.png
+share/wesnoth/data/core/images/units/undead/soulless-horse-die-1.png
+share/wesnoth/data/core/images/units/undead/soulless-horse-die-2.png
+share/wesnoth/data/core/images/units/undead/soulless-horse-die-3.png
+share/wesnoth/data/core/images/units/undead/soulless-horse-die-4.png
+share/wesnoth/data/core/images/units/undead/soulless-horse.png
 share/wesnoth/data/core/images/units/undead/soulless-mounted-attack-n.png
 share/wesnoth/data/core/images/units/undead/soulless-mounted-attack-s.png
 share/wesnoth/data/core/images/units/undead/soulless-mounted-attack.png
@@ -13326,6 +14642,15 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/soulless-mounted-die-3.png
 share/wesnoth/data/core/images/units/undead/soulless-mounted-die-4.png
 share/wesnoth/data/core/images/units/undead/soulless-mounted.png
+share/wesnoth/data/core/images/units/undead/soulless-rat-attack-n.png
+share/wesnoth/data/core/images/units/undead/soulless-rat-attack-s.png
+share/wesnoth/data/core/images/units/undead/soulless-rat-attack.png
+share/wesnoth/data/core/images/units/undead/soulless-rat-defend.png
+share/wesnoth/data/core/images/units/undead/soulless-rat-die-1.png
+share/wesnoth/data/core/images/units/undead/soulless-rat-die-2.png
+share/wesnoth/data/core/images/units/undead/soulless-rat-die-3.png
+share/wesnoth/data/core/images/units/undead/soulless-rat-die-4.png
+share/wesnoth/data/core/images/units/undead/soulless-rat.png
 share/wesnoth/data/core/images/units/undead/soulless-saurian-attack-n.png
 share/wesnoth/data/core/images/units/undead/soulless-saurian-attack-s.png
 share/wesnoth/data/core/images/units/undead/soulless-saurian-attack.png
@@ -13335,6 +14660,33 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/soulless-saurian-die-3.png
 share/wesnoth/data/core/images/units/undead/soulless-saurian-die-4.png
 share/wesnoth/data/core/images/units/undead/soulless-saurian.png
+share/wesnoth/data/core/images/units/undead/soulless-scorpion-attack-n.png
+share/wesnoth/data/core/images/units/undead/soulless-scorpion-attack-s.png
+share/wesnoth/data/core/images/units/undead/soulless-scorpion-attack.png
+share/wesnoth/data/core/images/units/undead/soulless-scorpion-defend.png
+share/wesnoth/data/core/images/units/undead/soulless-scorpion-die-1.png
+share/wesnoth/data/core/images/units/undead/soulless-scorpion-die-2.png
+share/wesnoth/data/core/images/units/undead/soulless-scorpion-die-3.png
+share/wesnoth/data/core/images/units/undead/soulless-scorpion-die-4.png
+share/wesnoth/data/core/images/units/undead/soulless-scorpion.png
+share/wesnoth/data/core/images/units/undead/soulless-serpent-attack-n.png
+share/wesnoth/data/core/images/units/undead/soulless-serpent-attack-s.png
+share/wesnoth/data/core/images/units/undead/soulless-serpent-attack.png
+share/wesnoth/data/core/images/units/undead/soulless-serpent-defend.png
+share/wesnoth/data/core/images/units/undead/soulless-serpent-die-1.png
+share/wesnoth/data/core/images/units/undead/soulless-serpent-die-2.png
+share/wesnoth/data/core/images/units/undead/soulless-serpent-die-3.png
+share/wesnoth/data/core/images/units/undead/soulless-serpent-die-4.png
+share/wesnoth/data/core/images/units/undead/soulless-serpent.png
+share/wesnoth/data/core/images/units/undead/soulless-spider-attack-n.png
+share/wesnoth/data/core/images/units/undead/soulless-spider-attack-s.png
+share/wesnoth/data/core/images/units/undead/soulless-spider-attack.png
+share/wesnoth/data/core/images/units/undead/soulless-spider-defend.png
+share/wesnoth/data/core/images/units/undead/soulless-spider-die-1.png
+share/wesnoth/data/core/images/units/undead/soulless-spider-die-2.png
+share/wesnoth/data/core/images/units/undead/soulless-spider-die-3.png
+share/wesnoth/data/core/images/units/undead/soulless-spider-die-4.png
+share/wesnoth/data/core/images/units/undead/soulless-spider.png
 share/wesnoth/data/core/images/units/undead/soulless-swimmer-attack-n.png
 share/wesnoth/data/core/images/units/undead/soulless-swimmer-attack-s.png
 share/wesnoth/data/core/images/units/undead/soulless-swimmer-attack.png
@@ -13419,6 +14771,24 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/zombie-bat-se-3.png
 share/wesnoth/data/core/images/units/undead/zombie-bat-se-4.png
 share/wesnoth/data/core/images/units/undead/zombie-bat-se-5.png
+share/wesnoth/data/core/images/units/undead/zombie-beastrider-attack-n.png
+share/wesnoth/data/core/images/units/undead/zombie-beastrider-attack-s.png
+share/wesnoth/data/core/images/units/undead/zombie-beastrider-attack.png
+share/wesnoth/data/core/images/units/undead/zombie-beastrider-defend.png
+share/wesnoth/data/core/images/units/undead/zombie-beastrider-die-1.png
+share/wesnoth/data/core/images/units/undead/zombie-beastrider-die-2.png
+share/wesnoth/data/core/images/units/undead/zombie-beastrider-die-3.png
+share/wesnoth/data/core/images/units/undead/zombie-beastrider-die-4.png
+share/wesnoth/data/core/images/units/undead/zombie-beastrider.png
+share/wesnoth/data/core/images/units/undead/zombie-boar-attack-n.png
+share/wesnoth/data/core/images/units/undead/zombie-boar-attack-s.png
+share/wesnoth/data/core/images/units/undead/zombie-boar-attack.png
+share/wesnoth/data/core/images/units/undead/zombie-boar-defend.png
+share/wesnoth/data/core/images/units/undead/zombie-boar-die-1.png
+share/wesnoth/data/core/images/units/undead/zombie-boar-die-2.png
+share/wesnoth/data/core/images/units/undead/zombie-boar-die-3.png
+share/wesnoth/data/core/images/units/undead/zombie-boar-die-4.png
+share/wesnoth/data/core/images/units/undead/zombie-boar.png
 share/wesnoth/data/core/images/units/undead/zombie-defend.png
 share/wesnoth/data/core/images/units/undead/zombie-die-1.png
 share/wesnoth/data/core/images/units/undead/zombie-die-2.png
@@ -13442,6 +14812,16 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/zombie-dwarf-die-3.png
 share/wesnoth/data/core/images/units/undead/zombie-dwarf-die-4.png
 share/wesnoth/data/core/images/units/undead/zombie-dwarf.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon-attack-n.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon-attack-s.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon-attack.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon-defend.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon-die-1.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon-die-2.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon-die-3.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon-die-4.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon-shadow.png
+share/wesnoth/data/core/images/units/undead/zombie-falcon.png
 share/wesnoth/data/core/images/units/undead/zombie-goblin-attack-n.png
 share/wesnoth/data/core/images/units/undead/zombie-goblin-attack-s.png
 share/wesnoth/data/core/images/units/undead/zombie-goblin-attack.png
@@ -13460,6 +14840,15 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/zombie-gryphon-die-3.png
 share/wesnoth/data/core/images/units/undead/zombie-gryphon-die-4.png
 share/wesnoth/data/core/images/units/undead/zombie-gryphon.png
+share/wesnoth/data/core/images/units/undead/zombie-horse-attack-n.png
+share/wesnoth/data/core/images/units/undead/zombie-horse-attack-s.png
+share/wesnoth/data/core/images/units/undead/zombie-horse-attack.png
+share/wesnoth/data/core/images/units/undead/zombie-horse-defend.png
+share/wesnoth/data/core/images/units/undead/zombie-horse-die-1.png
+share/wesnoth/data/core/images/units/undead/zombie-horse-die-2.png
+share/wesnoth/data/core/images/units/undead/zombie-horse-die-3.png
+share/wesnoth/data/core/images/units/undead/zombie-horse-die-4.png
+share/wesnoth/data/core/images/units/undead/zombie-horse.png
 share/wesnoth/data/core/images/units/undead/zombie-mounted-attack-n.png
 share/wesnoth/data/core/images/units/undead/zombie-mounted-attack-s.png
 share/wesnoth/data/core/images/units/undead/zombie-mounted-attack.png
@@ -13469,6 +14858,15 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/zombie-mounted-die-3.png
 share/wesnoth/data/core/images/units/undead/zombie-mounted-die-4.png
 share/wesnoth/data/core/images/units/undead/zombie-mounted.png
+share/wesnoth/data/core/images/units/undead/zombie-rat-attack-n.png
+share/wesnoth/data/core/images/units/undead/zombie-rat-attack-s.png
+share/wesnoth/data/core/images/units/undead/zombie-rat-attack.png
+share/wesnoth/data/core/images/units/undead/zombie-rat-defend.png
+share/wesnoth/data/core/images/units/undead/zombie-rat-die-1.png
+share/wesnoth/data/core/images/units/undead/zombie-rat-die-2.png
+share/wesnoth/data/core/images/units/undead/zombie-rat-die-3.png
+share/wesnoth/data/core/images/units/undead/zombie-rat-die-4.png
+share/wesnoth/data/core/images/units/undead/zombie-rat.png
 share/wesnoth/data/core/images/units/undead/zombie-saurian-attack-n.png
 share/wesnoth/data/core/images/units/undead/zombie-saurian-attack-s.png
 share/wesnoth/data/core/images/units/undead/zombie-saurian-attack.png
@@ -13478,6 +14876,33 @@ share/wesnoth/data/core/images/units/und
 share/wesnoth/data/core/images/units/undead/zombie-saurian-die-3.png
 share/wesnoth/data/core/images/units/undead/zombie-saurian-die-4.png
 share/wesnoth/data/core/images/units/undead/zombie-saurian.png
+share/wesnoth/data/core/images/units/undead/zombie-scorpion-attack-n.png
+share/wesnoth/data/core/images/units/undead/zombie-scorpion-attack-s.png
+share/wesnoth/data/core/images/units/undead/zombie-scorpion-attack.png
+share/wesnoth/data/core/images/units/undead/zombie-scorpion-defend.png
+share/wesnoth/data/core/images/units/undead/zombie-scorpion-die-1.png
+share/wesnoth/data/core/images/units/undead/zombie-scorpion-die-2.png
+share/wesnoth/data/core/images/units/undead/zombie-scorpion-die-3.png
+share/wesnoth/data/core/images/units/undead/zombie-scorpion-die-4.png
+share/wesnoth/data/core/images/units/undead/zombie-scorpion.png
+share/wesnoth/data/core/images/units/undead/zombie-serpent-attack-n.png
+share/wesnoth/data/core/images/units/undead/zombie-serpent-attack-s.png
+share/wesnoth/data/core/images/units/undead/zombie-serpent-attack.png
+share/wesnoth/data/core/images/units/undead/zombie-serpent-defend.png
+share/wesnoth/data/core/images/units/undead/zombie-serpent-die-1.png
+share/wesnoth/data/core/images/units/undead/zombie-serpent-die-2.png
+share/wesnoth/data/core/images/units/undead/zombie-serpent-die-3.png
+share/wesnoth/data/core/images/units/undead/zombie-serpent-die-4.png
+share/wesnoth/data/core/images/units/undead/zombie-serpent.png
+share/wesnoth/data/core/images/units/undead/zombie-spider-attack-n.png
+share/wesnoth/data/core/images/units/undead/zombie-spider-attack-s.png
+share/wesnoth/data/core/images/units/undead/zombie-spider-attack.png
+share/wesnoth/data/core/images/units/undead/zombie-spider-defend.png
+share/wesnoth/data/core/images/units/undead/zombie-spider-die-1.png
+share/wesnoth/data/core/images/units/undead/zombie-spider-die-2.png
+share/wesnoth/data/core/images/units/undead/zombie-spider-die-3.png
+share/wesnoth/data/core/images/units/undead/zombie-spider-die-4.png
+share/wesnoth/data/core/images/units/undead/zombie-spider.png
 share/wesnoth/data/core/images/units/undead/zombie-swimmer-attack-n.png
 share/wesnoth/data/core/images/units/undead/zombie-swimmer-attack-s.png
 share/wesnoth/data/core/images/units/undead/zombie-swimmer-attack.png
@@ -13594,7 +15019,18 @@ share/wesnoth/data/core/images/units/wos
 share/wesnoth/data/core/images/units/woses/wose-idle-5.png
 share/wesnoth/data/core/images/units/woses/wose-idle-6.png
 share/wesnoth/data/core/images/units/woses/wose-idle-7.png
+share/wesnoth/data/core/images/units/woses/wose-sapling-attack.png
 share/wesnoth/data/core/images/units/woses/wose-sapling-blink.png
+share/wesnoth/data/core/images/units/woses/wose-sapling-defend.png
+share/wesnoth/data/core/images/units/woses/wose-sapling.png
+share/wesnoth/data/core/images/units/woses/wose-shaman-attack-1.png
+share/wesnoth/data/core/images/units/woses/wose-shaman-attack-2.png
+share/wesnoth/data/core/images/units/woses/wose-shaman-attack-3.png
+share/wesnoth/data/core/images/units/woses/wose-shaman-attack-4.png
+share/wesnoth/data/core/images/units/woses/wose-shaman-attack-ranged-1.png
+share/wesnoth/data/core/images/units/woses/wose-shaman-attack-ranged-2.png
+share/wesnoth/data/core/images/units/woses/wose-shaman-defend.png
+share/wesnoth/data/core/images/units/woses/wose-shaman.png
 share/wesnoth/data/core/images/units/woses/wose.png
 share/wesnoth/data/core/images/wesnoth-icon.png
 share/wesnoth/data/core/macros/abilities.cfg
@@ -13612,8 +15048,10 @@ share/wesnoth/data/core/macros/event-uti
 share/wesnoth/data/core/macros/image-utils.cfg
 share/wesnoth/data/core/macros/interface-utils.cfg
 share/wesnoth/data/core/macros/items.cfg
+share/wesnoth/data/core/macros/movetypes.cfg
 share/wesnoth/data/core/macros/names.cfg
 share/wesnoth/data/core/macros/objective-utils.cfg
+share/wesnoth/data/core/macros/optional_unit_advancements.cfg
 share/wesnoth/data/core/macros/scenario-utils.cfg
 share/wesnoth/data/core/macros/schedules.cfg
 share/wesnoth/data/core/macros/side-utils.cfg
@@ -13902,6 +15340,10 @@ share/wesnoth/data/core/sounds/troll-hit
 share/wesnoth/data/core/sounds/troll-hit-2.ogg
 share/wesnoth/data/core/sounds/troll-hit-3.ogg
 share/wesnoth/data/core/sounds/troll-hit-4.ogg
+share/wesnoth/data/core/sounds/tusker-charge-miss.ogg
+share/wesnoth/data/core/sounds/tusker-charge.ogg
+share/wesnoth/data/core/sounds/tusker-die.ogg
+share/wesnoth/data/core/sounds/tusker-hit.ogg
 share/wesnoth/data/core/sounds/ugg.wav
 share/wesnoth/data/core/sounds/wail-long.wav
 share/wesnoth/data/core/sounds/wail-sml.wav
@@ -13984,33 +15426,37 @@ share/wesnoth/data/core/units/drakes/Sky
 share/wesnoth/data/core/units/drakes/Thrasher.cfg
 share/wesnoth/data/core/units/drakes/Warden.cfg
 share/wesnoth/data/core/units/drakes/Warrior.cfg
+share/wesnoth/data/core/units/dunefolk/Alchemist.cfg
 share/wesnoth/data/core/units/dunefolk/Apothecary.cfg
 share/wesnoth/data/core/units/dunefolk/Blademaster.cfg
 share/wesnoth/data/core/units/dunefolk/Burner.cfg
+share/wesnoth/data/core/units/dunefolk/Captain.cfg
 share/wesnoth/data/core/units/dunefolk/Cataphract.cfg
-share/wesnoth/data/core/units/dunefolk/Elder_Falcon.cfg
 share/wesnoth/data/core/units/dunefolk/Explorer.cfg
-share/wesnoth/data/core/units/dunefolk/Falcon.cfg
+share/wesnoth/data/core/units/dunefolk/Falconer.cfg
 share/wesnoth/data/core/units/dunefolk/Firetrooper.cfg
 share/wesnoth/data/core/units/dunefolk/Harrier.cfg
 share/wesnoth/data/core/units/dunefolk/Herbalist.cfg
+share/wesnoth/data/core/units/dunefolk/Horse_Archer.cfg
+share/wesnoth/data/core/units/dunefolk/Luminary.cfg
 share/wesnoth/data/core/units/dunefolk/Marauder.cfg
-share/wesnoth/data/core/units/dunefolk/Piercer.cfg
+share/wesnoth/data/core/units/dunefolk/Paragon.cfg
 share/wesnoth/data/core/units/dunefolk/Raider.cfg
-share/wesnoth/data/core/units/dunefolk/Ranger.cfg
 share/wesnoth/data/core/units/dunefolk/Rider.cfg
 share/wesnoth/data/core/units/dunefolk/Rover.cfg
 share/wesnoth/data/core/units/dunefolk/Scorcher.cfg
 share/wesnoth/data/core/units/dunefolk/Skirmisher.cfg
+share/wesnoth/data/core/units/dunefolk/Sky_Hunter.cfg
 share/wesnoth/data/core/units/dunefolk/Soldier.cfg
 share/wesnoth/data/core/units/dunefolk/Spearguard.cfg
 share/wesnoth/data/core/units/dunefolk/Spearmaster.cfg
+share/wesnoth/data/core/units/dunefolk/Strider.cfg
 share/wesnoth/data/core/units/dunefolk/Sunderer.cfg
-share/wesnoth/data/core/units/dunefolk/Swiftrider.cfg
 share/wesnoth/data/core/units/dunefolk/Swordsman.cfg
 share/wesnoth/data/core/units/dunefolk/Warmaster.cfg
-share/wesnoth/data/core/units/dunefolk/Windrider.cfg
-share/wesnoth/data/core/units/dunefolk/deprecated.cfg
+share/wesnoth/data/core/units/dunefolk/Wayfarer.cfg
+share/wesnoth/data/core/units/dunefolk/Windbolt.cfg
+share/wesnoth/data/core/units/dunefolk/Wyvern_Rider.cfg
 share/wesnoth/data/core/units/dwarves/Arcanister.cfg
 share/wesnoth/data/core/units/dwarves/Berserker.cfg
 share/wesnoth/data/core/units/dwarves/Dragonguard.cfg
@@ -14127,26 +15573,55 @@ share/wesnoth/data/core/units/merfolk/Si
 share/wesnoth/data/core/units/merfolk/Spearman.cfg
 share/wesnoth/data/core/units/merfolk/Triton.cfg
 share/wesnoth/data/core/units/merfolk/Warrior.cfg
+share/wesnoth/data/core/units/monsters/Ant.cfg
+share/wesnoth/data/core/units/monsters/Bear.cfg
+share/wesnoth/data/core/units/monsters/Boar.cfg
+share/wesnoth/data/core/units/monsters/Boar_Piglet.cfg
+share/wesnoth/data/core/units/monsters/Crocodile.cfg
 share/wesnoth/data/core/units/monsters/Cuttle_Fish.cfg
+share/wesnoth/data/core/units/monsters/Elder_Falcon.cfg
+share/wesnoth/data/core/units/monsters/Falcon.cfg
+share/wesnoth/data/core/units/monsters/Fire_Ant.cfg
 share/wesnoth/data/core/units/monsters/Fire_Dragon.cfg
 share/wesnoth/data/core/units/monsters/Fire_Guardian.cfg
+share/wesnoth/data/core/units/monsters/Fire_Wraith.cfg
+share/wesnoth/data/core/units/monsters/Frost_Stoat.cfg
 share/wesnoth/data/core/units/monsters/Giant_Mudcrawler.cfg
 share/wesnoth/data/core/units/monsters/Giant_Rat.cfg
 share/wesnoth/data/core/units/monsters/Giant_Scorpion.cfg
 share/wesnoth/data/core/units/monsters/Giant_Scorpling.cfg
 share/wesnoth/data/core/units/monsters/Giant_Spider.cfg
+share/wesnoth/data/core/units/monsters/Horse.cfg
+share/wesnoth/data/core/units/monsters/Horse_Black.cfg
+share/wesnoth/data/core/units/monsters/Horse_Great.cfg
+share/wesnoth/data/core/units/monsters/Icemonax.cfg
+share/wesnoth/data/core/units/monsters/Icemonax_Greater.cfg
+share/wesnoth/data/core/units/monsters/Jinn.cfg
 share/wesnoth/data/core/units/monsters/Mudcrawler.cfg
+share/wesnoth/data/core/units/monsters/Roc.cfg
+share/wesnoth/data/core/units/monsters/Rock_Scorpion.cfg
+share/wesnoth/data/core/units/monsters/Scarab.cfg
 share/wesnoth/data/core/units/monsters/Sea_Serpent.cfg
+share/wesnoth/data/core/units/monsters/Seahorse.cfg
 share/wesnoth/data/core/units/monsters/Skeletal_Dragon.cfg
 share/wesnoth/data/core/units/monsters/Tentacle.cfg
 share/wesnoth/data/core/units/monsters/Water_Serpent.cfg
+share/wesnoth/data/core/units/monsters/Wild_Wyvern.cfg
 share/wesnoth/data/core/units/monsters/Wolf.cfg
 share/wesnoth/data/core/units/monsters/Wolf_Dire.cfg
 share/wesnoth/data/core/units/monsters/Wolf_Great.cfg
 share/wesnoth/data/core/units/monsters/Yeti.cfg
+share/wesnoth/data/core/units/nagas/Dirkfang.cfg
 share/wesnoth/data/core/units/nagas/Fighter.cfg
+share/wesnoth/data/core/units/nagas/Guard.cfg
+share/wesnoth/data/core/units/nagas/Guard_High.cfg
+share/wesnoth/data/core/units/nagas/Guard_Shield.cfg
 share/wesnoth/data/core/units/nagas/Myrmidon.cfg
+share/wesnoth/data/core/units/nagas/Ophidian.cfg
+share/wesnoth/data/core/units/nagas/Ringcaster.cfg
+share/wesnoth/data/core/units/nagas/Sicarius.cfg
 share/wesnoth/data/core/units/nagas/Warrior.cfg
+share/wesnoth/data/core/units/nagas/Zephyr.cfg
 share/wesnoth/data/core/units/ogres/Ogre.cfg
 share/wesnoth/data/core/units/ogres/Young_Ogre.cfg
 share/wesnoth/data/core/units/orcs/Archer.cfg
@@ -14201,21 +15676,24 @@ share/wesnoth/data/core/units/undead/Spi
 share/wesnoth/data/core/units/wose/Ancient.cfg
 share/wesnoth/data/core/units/wose/Elder.cfg
 share/wesnoth/data/core/units/wose/Wose.cfg
+share/wesnoth/data/core/units/wose/Wose_Sapling.cfg
+share/wesnoth/data/core/units/wose/Wose_Shaman.cfg
 share/wesnoth/data/cores.cfg
 share/wesnoth/data/english.cfg
 share/wesnoth/data/game_config.cfg
 share/wesnoth/data/gui/_main.cfg
 share/wesnoth/data/gui/default.cfg
 share/wesnoth/data/gui/macros/_initial.cfg
+share/wesnoth/data/gui/macros/button.cfg
 share/wesnoth/data/gui/macros/custom_options_tree.cfg
 share/wesnoth/data/gui/macros/filler.cfg
 share/wesnoth/data/gui/macros/horizontal_scrollbar.cfg
 share/wesnoth/data/gui/macros/player_list_panel.cfg
 share/wesnoth/data/gui/macros/vertical_scrollbar.cfg
-share/wesnoth/data/gui/schema.cfg
 share/wesnoth/data/gui/widget/addon_list.cfg
 share/wesnoth/data/gui/widget/button_25x25.cfg
 share/wesnoth/data/gui/widget/button_default.cfg
+share/wesnoth/data/gui/widget/button_title_screen_small.cfg
 share/wesnoth/data/gui/widget/chatbox.cfg
 share/wesnoth/data/gui/widget/drawing_default.cfg
 share/wesnoth/data/gui/widget/horizontal_scrollbar_default.cfg
@@ -14231,7 +15709,9 @@ share/wesnoth/data/gui/widget/minimap_de
 share/wesnoth/data/gui/widget/multi_page_default.cfg
 share/wesnoth/data/gui/widget/multimenu_button_default.cfg
 share/wesnoth/data/gui/widget/panel_box_display.cfg
+share/wesnoth/data/gui/widget/panel_campaign_menu.cfg
 share/wesnoth/data/gui/widget/panel_default.cfg
+share/wesnoth/data/gui/widget/panel_listbox_bg.cfg
 share/wesnoth/data/gui/widget/panel_story_viewer.cfg
 share/wesnoth/data/gui/widget/panel_wml_message.cfg
 share/wesnoth/data/gui/widget/progress_bar_default.cfg
@@ -14251,8 +15731,11 @@ share/wesnoth/data/gui/widget/text_box_d
 share/wesnoth/data/gui/widget/toggle_button_default.cfg
 share/wesnoth/data/gui/widget/toggle_button_icon.cfg
 share/wesnoth/data/gui/widget/toggle_button_listbox_header.cfg
+share/wesnoth/data/gui/widget/toggle_button_listbox_header_bg.cfg
+share/wesnoth/data/gui/widget/toggle_button_no_label.cfg
 share/wesnoth/data/gui/widget/toggle_button_orb.cfg
 share/wesnoth/data/gui/widget/toggle_button_radio.cfg
+share/wesnoth/data/gui/widget/toggle_button_radio_no_label.cfg
 share/wesnoth/data/gui/widget/toggle_button_tree_view_node.cfg
 share/wesnoth/data/gui/widget/toggle_panel_default.cfg
 share/wesnoth/data/gui/widget/toggle_panel_wml_message.cfg
@@ -14262,10 +15745,11 @@ share/wesnoth/data/gui/widget/vertical_s
 share/wesnoth/data/gui/widget/window_borderless.cfg
 share/wesnoth/data/gui/widget/window_default.cfg
 share/wesnoth/data/gui/widget/window_tooltip_large.cfg
+share/wesnoth/data/gui/window/addon_auth.cfg
 share/wesnoth/data/gui/window/addon_connect.cfg
+share/wesnoth/data/gui/window/addon_license_prompt.cfg
 share/wesnoth/data/gui/window/addon_manager.cfg
 share/wesnoth/data/gui/window/addon_uninstall_list.cfg
-share/wesnoth/data/gui/window/advanced_graphics_options.cfg
 share/wesnoth/data/gui/window/attack_predictions.cfg
 share/wesnoth/data/gui/window/campaign_dialog.cfg
 share/wesnoth/data/gui/window/campaign_difficulty.cfg
@@ -14284,7 +15768,6 @@ share/wesnoth/data/gui/window/editor_edi
 share/wesnoth/data/gui/window/editor_generate_map.cfg
 share/wesnoth/data/gui/window/editor_new_map.cfg
 share/wesnoth/data/gui/window/editor_resize_map.cfg
-share/wesnoth/data/gui/window/editor_set_starting_position.cfg
 share/wesnoth/data/gui/window/end_credits.cfg
 share/wesnoth/data/gui/window/file_dialog.cfg
 share/wesnoth/data/gui/window/folder_create.cfg
@@ -14311,6 +15794,7 @@ share/wesnoth/data/gui/window/lobby_play
 share/wesnoth/data/gui/window/logging.cfg
 share/wesnoth/data/gui/window/lua_interpreter.cfg
 share/wesnoth/data/gui/window/message.cfg
+share/wesnoth/data/gui/window/migrate_version_selection.cfg
 share/wesnoth/data/gui/window/mp_alerts_options.cfg
 share/wesnoth/data/gui/window/mp_change_control.cfg
 share/wesnoth/data/gui/window/mp_connect.cfg
@@ -14323,8 +15807,8 @@ share/wesnoth/data/gui/window/mp_host_ga
 share/wesnoth/data/gui/window/mp_join_game.cfg
 share/wesnoth/data/gui/window/mp_join_game_password_prompt.cfg
 share/wesnoth/data/gui/window/mp_login.cfg
+share/wesnoth/data/gui/window/mp_match_history.cfg
 share/wesnoth/data/gui/window/mp_method_selection.cfg
-share/wesnoth/data/gui/window/mp_server_list.cfg
 share/wesnoth/data/gui/window/mp_staging.cfg
 share/wesnoth/data/gui/window/network_transmission.cfg
 share/wesnoth/data/gui/window/outro.cfg
@@ -14339,6 +15823,7 @@ share/wesnoth/data/gui/window/preference
 share/wesnoth/data/gui/window/preferences/_initial.cfg
 share/wesnoth/data/gui/window/screenshot_notification.cfg
 share/wesnoth/data/gui/window/select_orb_colors.cfg
+share/wesnoth/data/gui/window/server_info.cfg
 share/wesnoth/data/gui/window/simple_item_selector.cfg
 share/wesnoth/data/gui/window/sp_options_configure.cfg
 share/wesnoth/data/gui/window/statistics_dialog.cfg
@@ -14364,10 +15849,8 @@ share/wesnoth/data/hardwired/fonts.cfg
 share/wesnoth/data/hardwired/language.cfg
 share/wesnoth/data/lan_server.cfg
 share/wesnoth/data/languages/af_ZA.cfg
-share/wesnoth/data/languages/ang_GB.cfg
 share/wesnoth/data/languages/ang_GB%latin.cfg@localhost
 share/wesnoth/data/languages/ar_AR.cfg
-share/wesnoth/data/languages/ast_ES.cfg
 share/wesnoth/data/languages/bg_BG.cfg
 share/wesnoth/data/languages/ca_ES.cfg
 share/wesnoth/data/languages/ca_ES%valencia.cfg@localhost
@@ -14384,10 +15867,10 @@ share/wesnoth/data/languages/et_EE.cfg
 share/wesnoth/data/languages/eu_ES.cfg
 share/wesnoth/data/languages/fi_FI.cfg
 share/wesnoth/data/languages/fr_FR.cfg
-share/wesnoth/data/languages/fur_IT.cfg
 share/wesnoth/data/languages/ga_IE.cfg
 share/wesnoth/data/languages/gd_GB.cfg
 share/wesnoth/data/languages/gl_ES.cfg
+share/wesnoth/data/languages/grc_GR.cfg
 share/wesnoth/data/languages/he_IL.cfg
 share/wesnoth/data/languages/hr_HR.cfg
 share/wesnoth/data/languages/hu_HU.cfg
@@ -14401,6 +15884,7 @@ share/wesnoth/data/languages/lt_LT.cfg
 share/wesnoth/data/languages/lv_LV.cfg
 share/wesnoth/data/languages/mk_MK.cfg
 share/wesnoth/data/languages/mr_IN.cfg
+share/wesnoth/data/languages/my_MM.cfg
 share/wesnoth/data/languages/nb_NO.cfg
 share/wesnoth/data/languages/nl_NL.cfg
 share/wesnoth/data/languages/pl_PL.cfg
@@ -14422,9 +15906,22 @@ share/wesnoth/data/languages/uk_UA.cfg
 share/wesnoth/data/languages/vi_VN.cfg
 share/wesnoth/data/languages/zh_CN.cfg
 share/wesnoth/data/languages/zh_TW.cfg
-share/wesnoth/data/lua/backwards-compatibility.lua
+share/wesnoth/data/lua/as_text.lua
 share/wesnoth/data/lua/cave_map_generator.lua
-share/wesnoth/data/lua/core.lua
+share/wesnoth/data/lua/core/_initial.lua
+share/wesnoth/data/lua/core/audio.lua
+share/wesnoth/data/lua/core/filesystem.lua
+share/wesnoth/data/lua/core/gui.lua
+share/wesnoth/data/lua/core/interface.lua
+share/wesnoth/data/lua/core/map.lua
+share/wesnoth/data/lua/core/mathx.lua
+share/wesnoth/data/lua/core/persistent_tags.lua
+share/wesnoth/data/lua/core/sides.lua
+share/wesnoth/data/lua/core/stringx.lua
+share/wesnoth/data/lua/core/unit_test.lua
+share/wesnoth/data/lua/core/units.lua
+share/wesnoth/data/lua/core/wml.lua
+share/wesnoth/data/lua/diversion.lua
 share/wesnoth/data/lua/feeding.lua
 share/wesnoth/data/lua/functional.lua
 share/wesnoth/data/lua/helper.lua
@@ -14455,7 +15952,13 @@ share/wesnoth/data/lua/wml/objectives.lu
 share/wesnoth/data/lua/wml/random_placement.lua
 share/wesnoth/data/lua/wml/role.lua
 share/wesnoth/data/lua/wml/set_variable.lua
+share/wesnoth/data/lua/wml/store_reachable_locations.lua
+share/wesnoth/data/lua/wml/store_time_of_day.lua
 share/wesnoth/data/lua/wml/test_condition.lua
+share/wesnoth/data/modifications.cfg
+share/wesnoth/data/modifications/pick_advance/README.md
+share/wesnoth/data/modifications/pick_advance/dialog.lua
+share/wesnoth/data/modifications/pick_advance/main.lua
 share/wesnoth/data/multiplayer/_main.cfg
 share/wesnoth/data/multiplayer/eras.cfg
 share/wesnoth/data/multiplayer/eras.lua
@@ -14463,8 +15966,6 @@ share/wesnoth/data/multiplayer/factions/
 share/wesnoth/data/multiplayer/factions/drakes-default.cfg
 share/wesnoth/data/multiplayer/factions/dunefolk-aoh.cfg
 share/wesnoth/data/multiplayer/factions/dunefolk-default.cfg
-share/wesnoth/data/multiplayer/factions/khalifate-aoh.cfg
-share/wesnoth/data/multiplayer/factions/khalifate-default.cfg
 share/wesnoth/data/multiplayer/factions/knalgans-aoh.cfg
 share/wesnoth/data/multiplayer/factions/knalgans-default.cfg
 share/wesnoth/data/multiplayer/factions/loyalists-aoh.cfg
@@ -14487,6 +15988,12 @@ share/wesnoth/data/multiplayer/maps/2p_H
 share/wesnoth/data/multiplayer/maps/2p_Hellhole.map
 share/wesnoth/data/multiplayer/maps/2p_Hornshark_Island.map
 share/wesnoth/data/multiplayer/maps/2p_Howling_Ghost_Badlands.map
+share/wesnoth/data/multiplayer/maps/2p_Isle_of_Mists_basic.map
+share/wesnoth/data/multiplayer/maps/2p_Isle_of_Mists_drought.map
+share/wesnoth/data/multiplayer/maps/2p_Isle_of_Mists_rain.map
+share/wesnoth/data/multiplayer/maps/2p_Isle_of_Mists_secondrain.map
+share/wesnoth/data/multiplayer/maps/2p_Isle_of_Mists_secondsnow.map
+share/wesnoth/data/multiplayer/maps/2p_Isle_of_Mists_snow.map
 share/wesnoth/data/multiplayer/maps/2p_Ruined_Passage.map
 share/wesnoth/data/multiplayer/maps/2p_Ruphus_Isle.map
 share/wesnoth/data/multiplayer/maps/2p_Sablestone_Delta.map
@@ -14547,8 +16054,9 @@ share/wesnoth/data/multiplayer/scenarios
 share/wesnoth/data/multiplayer/scenarios/2p_Hamlets.cfg
 share/wesnoth/data/multiplayer/scenarios/2p_Hellhole.cfg
 share/wesnoth/data/multiplayer/scenarios/2p_Hornshark_Island.cfg
-share/wesnoth/data/multiplayer/scenarios/2p_Hornshark_Island.lua
 share/wesnoth/data/multiplayer/scenarios/2p_Howling_Ghost_Badlands.cfg
+share/wesnoth/data/multiplayer/scenarios/2p_Isle_of_Mists.cfg
+share/wesnoth/data/multiplayer/scenarios/2p_Isle_of_Mists.lua
 share/wesnoth/data/multiplayer/scenarios/2p_Ruined_Passage.cfg
 share/wesnoth/data/multiplayer/scenarios/2p_Ruphus_Isle.cfg
 share/wesnoth/data/multiplayer/scenarios/2p_Sablestone_Delta.cfg
@@ -14610,10 +16118,54 @@ share/wesnoth/data/scenario-leaders.cfg
 share/wesnoth/data/scenario-movethrough.cfg
 share/wesnoth/data/scenario-story.cfg
 share/wesnoth/data/scenario-test.cfg
-share/wesnoth/data/schema-gui.cfg
-share/wesnoth/data/schema.cfg
-share/wesnoth/data/shaders/default.frag
-share/wesnoth/data/shaders/default.vert
+share/wesnoth/data/schema/ai/_main.cfg
+share/wesnoth/data/schema/ai/aspect_complex.cfg
+share/wesnoth/data/schema/ai/aspect_simple.cfg
+share/wesnoth/data/schema/ai/engine.cfg
+share/wesnoth/data/schema/ai/goal.cfg
+share/wesnoth/data/schema/ai/modify.cfg
+share/wesnoth/data/schema/ai/recruitment.cfg
+share/wesnoth/data/schema/ai/stage.cfg
+share/wesnoth/data/schema/core/actionwml.cfg
+share/wesnoth/data/schema/core/addons.cfg
+share/wesnoth/data/schema/core/conditionalwml.cfg
+share/wesnoth/data/schema/core/config.cfg
+share/wesnoth/data/schema/core/help.cfg
+share/wesnoth/data/schema/core/mapgen/default.cfg
+share/wesnoth/data/schema/core/mapgen/lua.cfg
+share/wesnoth/data/schema/core/themes.cfg
+share/wesnoth/data/schema/diff.cfg
+share/wesnoth/data/schema/editor/groups.cfg
+share/wesnoth/data/schema/editor/misc.cfg
+share/wesnoth/data/schema/editor/times.cfg
+share/wesnoth/data/schema/filters/_initial.cfg
+share/wesnoth/data/schema/filters/base_value.cfg
+share/wesnoth/data/schema/filters/location.cfg
+share/wesnoth/data/schema/filters/side.cfg
+share/wesnoth/data/schema/filters/unit.cfg
+share/wesnoth/data/schema/filters/weapon.cfg
+share/wesnoth/data/schema/game_config.cfg
+share/wesnoth/data/schema/gui.cfg
+share/wesnoth/data/schema/macros.cfg
+share/wesnoth/data/schema/pbl.cfg
+share/wesnoth/data/schema/schema.cfg
+share/wesnoth/data/schema/terrain/graphics.cfg
+share/wesnoth/data/schema/terrain/types.cfg
+share/wesnoth/data/schema/types/basic.cfg
+share/wesnoth/data/schema/types/formula.cfg
+share/wesnoth/data/schema/types/lists.cfg
+share/wesnoth/data/schema/types/pango.cfg
+share/wesnoth/data/schema/types/progressive.cfg
+share/wesnoth/data/schema/types/subst.cfg
+share/wesnoth/data/schema/units/_main.cfg
+share/wesnoth/data/schema/units/abilities.cfg
+share/wesnoth/data/schema/units/animations.cfg
+share/wesnoth/data/schema/units/modifications.cfg
+share/wesnoth/data/schema/units/movetypes.cfg
+share/wesnoth/data/schema/units/races.cfg
+share/wesnoth/data/schema/units/single.cfg
+share/wesnoth/data/schema/units/specials.cfg
+share/wesnoth/data/schema/units/types.cfg
 share/wesnoth/data/test/_main.cfg
 share/wesnoth/data/test/macros/pathfind_answers.cfg
 share/wesnoth/data/test/macros/readme.txt
@@ -14623,53 +16175,87 @@ share/wesnoth/data/test/maps/generic_uni
 share/wesnoth/data/test/maps/move_skip_sighted.map
 share/wesnoth/data/test/maps/pathfind_1.cfg
 share/wesnoth/data/test/maps/sighted_events.map
+share/wesnoth/data/test/maps/simple_find_path.map
 share/wesnoth/data/test/maps/test_grunt_tod_damage.map
+share/wesnoth/data/test/maps/test_hills_square.mask
 share/wesnoth/data/test/maps/test_movetype.map
 share/wesnoth/data/test/multiplayer/_main.cfg
 share/wesnoth/data/test/multiplayer/macros/mp_unit_test_macros.cfg
 share/wesnoth/data/test/multiplayer/scenarios/test1.cfg
 share/wesnoth/data/test/multiplayer/scenarios/test2.cfg
+share/wesnoth/data/test/scenarios/ability_id_active_test.cfg
 share/wesnoth/data/test/scenarios/ai/_main.cfg
 share/wesnoth/data/test/scenarios/ai/config/simple_aspect.cfg
 share/wesnoth/data/test/scenarios/ai/modify/aspects.cfg
+share/wesnoth/data/test/scenarios/as_text.cfg
+share/wesnoth/data/test/scenarios/backstab.cfg
 share/wesnoth/data/test/scenarios/break_replay_with_lua_random.cfg
 share/wesnoth/data/test/scenarios/bytecode.bin
 share/wesnoth/data/test/scenarios/characterize_pathfinding.cfg
 share/wesnoth/data/test/scenarios/conditionals.cfg
 share/wesnoth/data/test/scenarios/empty_test.cfg
 share/wesnoth/data/test/scenarios/event_handlers_in_events.cfg
+share/wesnoth/data/test/scenarios/events-test_autovariables.cfg
+share/wesnoth/data/test/scenarios/events-test_defeat.cfg
+share/wesnoth/data/test/scenarios/events-test_die.cfg
+share/wesnoth/data/test/scenarios/events-test_filterable1.cfg
+share/wesnoth/data/test/scenarios/events-test_filterable2.cfg
+share/wesnoth/data/test/scenarios/events-test_filterable3.cfg
+share/wesnoth/data/test/scenarios/events-test_filters.cfg
+share/wesnoth/data/test/scenarios/events-test_nonfilterable.cfg
+share/wesnoth/data/test/scenarios/events-test_victory.cfg
 share/wesnoth/data/test/scenarios/facing.cfg
 share/wesnoth/data/test/scenarios/feeding.cfg
 share/wesnoth/data/test/scenarios/filter_this_unit.cfg
 share/wesnoth/data/test/scenarios/filter_vision.cfg
 share/wesnoth/data/test/scenarios/for-loops.cfg
 share/wesnoth/data/test/scenarios/has_ally.cfg
+share/wesnoth/data/test/scenarios/heal.cfg
 share/wesnoth/data/test/scenarios/interrupts.cfg
+share/wesnoth/data/test/scenarios/lua_map_find.cfg
+share/wesnoth/data/test/scenarios/mapgen_filter.cfg
 share/wesnoth/data/test/scenarios/move_skip_sighted.cfg
 share/wesnoth/data/test/scenarios/order_of_nested_events.cfg
 share/wesnoth/data/test/scenarios/prestart_settings.cfg
 share/wesnoth/data/test/scenarios/readme.txt
+share/wesnoth/data/test/scenarios/recall_by_unit_tag.cfg
 share/wesnoth/data/test/scenarios/recruit_facing.cfg
 share/wesnoth/data/test/scenarios/scatter_units.cfg
 share/wesnoth/data/test/scenarios/sighted_events.cfg
+share/wesnoth/data/test/scenarios/simple_find_path.cfg
 share/wesnoth/data/test/scenarios/store_locations.cfg
+share/wesnoth/data/test/scenarios/store_reachable_locations_vision.cfg
+share/wesnoth/data/test/scenarios/store_unit_defense.cfg
 share/wesnoth/data/test/scenarios/swarm_disables_upgrades.cfg
+share/wesnoth/data/test/scenarios/swarm_disables_upgrades_with_abilities.cfg
+share/wesnoth/data/test/scenarios/swarm_disables_upgrades_with_abilities_adjacent.cfg
+share/wesnoth/data/test/scenarios/swarm_disables_upgrades_with_abilities_adjacent_fail.cfg
+share/wesnoth/data/test/scenarios/swarm_disables_upgrades_with_abilities_adjacent_leadership.cfg
+share/wesnoth/data/test/scenarios/swarm_disables_upgrades_with_abilities_adjacent_leadership_fail.cfg
+share/wesnoth/data/test/scenarios/swarm_disables_upgrades_with_abilities_fail.cfg
 share/wesnoth/data/test/scenarios/test_assert.cfg
 share/wesnoth/data/test/scenarios/test_berzerk_firststrike.cfg
 share/wesnoth/data/test/scenarios/test_check_victory.cfg
 share/wesnoth/data/test/scenarios/test_clear.cfg
+share/wesnoth/data/test/scenarios/test_create_side.cfg
 share/wesnoth/data/test/scenarios/test_cve_2018_1999023.cfg
 share/wesnoth/data/test/scenarios/test_cve_2018_1999023_2.cfg
 share/wesnoth/data/test/scenarios/test_dofile.cfg
+share/wesnoth/data/test/scenarios/test_effect_on_vision.cfg
 share/wesnoth/data/test/scenarios/test_end_turn.cfg
 share/wesnoth/data/test/scenarios/test_event_names_and_order.cfg
 share/wesnoth/data/test/scenarios/test_for_tag.cfg
+share/wesnoth/data/test/scenarios/test_force_chance_to_hit_macro.cfg
 share/wesnoth/data/test/scenarios/test_grunt_tod_damage.cfg
 share/wesnoth/data/test/scenarios/test_lua.cfg
+share/wesnoth/data/test/scenarios/test_lua_color.cfg
+share/wesnoth/data/test/scenarios/test_lua_version_api.cfg
 share/wesnoth/data/test/scenarios/test_lua_wml.cfg
 share/wesnoth/data/test/scenarios/test_lua_wml_tagnames.cfg
 share/wesnoth/data/test/scenarios/test_max_menu_items.cfg
 share/wesnoth/data/test/scenarios/test_menu_items.cfg
+share/wesnoth/data/test/scenarios/test_modify_shroud.cfg
+share/wesnoth/data/test/scenarios/test_modify_unit.cfg
 share/wesnoth/data/test/scenarios/test_move.cfg
 share/wesnoth/data/test/scenarios/test_move_unit.cfg
 share/wesnoth/data/test/scenarios/test_movetype.cfg
@@ -14678,11 +16264,16 @@ share/wesnoth/data/test/scenarios/test_r
 share/wesnoth/data/test/scenarios/test_resistances.cfg
 share/wesnoth/data/test/scenarios/test_return.cfg
 share/wesnoth/data/test/scenarios/test_role_types.cfg
+share/wesnoth/data/test/scenarios/test_scoped_vars.cfg
+share/wesnoth/data/test/scenarios/test_synced_state.cfg
+share/wesnoth/data/test/scenarios/test_terrain_mask.cfg
 share/wesnoth/data/test/scenarios/test_unit_map.cfg
 share/wesnoth/data/test/scenarios/test_victory_attacks.cfg
 share/wesnoth/data/test/scenarios/two_plus_two.cfg
 share/wesnoth/data/test/scenarios/unit_spawns_at_nearest_vacant_hex.cfg
 share/wesnoth/data/test/scenarios/units_offmap_goto_recall.cfg
+share/wesnoth/data/test/scenarios/unknown_scenario_warning.cfg
+share/wesnoth/data/test/scenarios/unslowable_and_unpetrifiable_status_test.cfg
 share/wesnoth/data/test/scenarios/xp_mod.cfg
 share/wesnoth/data/test/test/_main.cfg
 share/wesnoth/data/test/test/filesystem/enum/A1.cfg
@@ -14696,55 +16287,6 @@ share/wesnoth/data/test/test/filesystem/
 share/wesnoth/data/test/test/filesystem/enum/D3/empty_dir
 share/wesnoth/data/test/test/filesystem/enum/_final.cfg
 share/wesnoth/data/test/test/filesystem/enum/_initial.cfg
-share/wesnoth/data/test/test/image/base.png
-share/wesnoth/data/test/test/image/blend/0F_000000FF.png
-share/wesnoth/data/test/test/image/blend/0F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/0F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/1F_000000FF.png
-share/wesnoth/data/test/test/image/blend/1F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/1F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/2F_000000FF.png
-share/wesnoth/data/test/test/image/blend/2F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/2F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/3F_000000FF.png
-share/wesnoth/data/test/test/image/blend/3F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/3F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/4F_000000FF.png
-share/wesnoth/data/test/test/image/blend/4F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/4F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/5F_000000FF.png
-share/wesnoth/data/test/test/image/blend/5F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/5F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/6F_000000FF.png
-share/wesnoth/data/test/test/image/blend/6F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/6F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/7F_000000FF.png
-share/wesnoth/data/test/test/image/blend/7F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/7F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/8F_000000FF.png
-share/wesnoth/data/test/test/image/blend/8F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/8F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/9F_000000FF.png
-share/wesnoth/data/test/test/image/blend/9F_0000FF00.png
-share/wesnoth/data/test/test/image/blend/9F_00FF0000.png
-share/wesnoth/data/test/test/image/blend/AF_000000FF.png
-share/wesnoth/data/test/test/image/blend/AF_0000FF00.png
-share/wesnoth/data/test/test/image/blend/AF_00FF0000.png
-share/wesnoth/data/test/test/image/blend/BF_000000FF.png
-share/wesnoth/data/test/test/image/blend/BF_0000FF00.png
-share/wesnoth/data/test/test/image/blend/BF_00FF0000.png
-share/wesnoth/data/test/test/image/blend/CF_000000FF.png
-share/wesnoth/data/test/test/image/blend/CF_0000FF00.png
-share/wesnoth/data/test/test/image/blend/CF_00FF0000.png
-share/wesnoth/data/test/test/image/blend/DF_000000FF.png
-share/wesnoth/data/test/test/image/blend/DF_0000FF00.png
-share/wesnoth/data/test/test/image/blend/DF_00FF0000.png
-share/wesnoth/data/test/test/image/blend/EF_000000FF.png
-share/wesnoth/data/test/test/image/blend/EF_0000FF00.png
-share/wesnoth/data/test/test/image/blend/EF_00FF0000.png
-share/wesnoth/data/test/test/image/blend/FF_000000FF.png
-share/wesnoth/data/test/test/image/blend/FF_0000FF00.png
-share/wesnoth/data/test/test/image/blend/FF_00FF0000.png
 share/wesnoth/data/test/test/leading_space.cfg
 share/wesnoth/data/test/test/umc.cfg
 share/wesnoth/data/themes/_initial.cfg
@@ -14767,7 +16309,6 @@ share/wesnoth/data/tools/addon_manager/h
 share/wesnoth/data/tools/addon_manager/jquery.js
 share/wesnoth/data/tools/addon_manager/style.css
 share/wesnoth/data/tools/addon_manager/tablesorter.js
-share/wesnoth/data/tools/campaign2wiki.py
 share/wesnoth/data/tools/emacs_mode/Makefile
 share/wesnoth/data/tools/emacs_mode/README.md
 share/wesnoth/data/tools/emacs_mode/wesnoth-mode.el
@@ -14781,7 +16322,6 @@ share/wesnoth/data/tools/helpheader.html
 share/wesnoth/data/tools/helptrailer.html
 share/wesnoth/data/tools/hexometer.py
 share/wesnoth/data/tools/imgcheck
-share/wesnoth/data/tools/journeylifter
 share/wesnoth/data/tools/pywmlx/__init__.py
 share/wesnoth/data/tools/pywmlx/autof.py
 share/wesnoth/data/tools/pywmlx/nodemanip.py
@@ -14792,12 +16332,10 @@ share/wesnoth/data/tools/pywmlx/state/ma
 share/wesnoth/data/tools/pywmlx/state/state.py
 share/wesnoth/data/tools/pywmlx/state/wml_states.py
 share/wesnoth/data/tools/pywmlx/wmlerr.py
-share/wesnoth/data/tools/rmtrans/README.md
-share/wesnoth/data/tools/rmtrans/rmtrans.py
-share/wesnoth/data/tools/scoutDefault.py
 share/wesnoth/data/tools/steam-changelog
 share/wesnoth/data/tools/terrain2wiki.py
-share/wesnoth/data/tools/trackplacer
+share/wesnoth/data/tools/tmx_trackplacer
+share/wesnoth/data/tools/trackviewer.pyw
 share/wesnoth/data/tools/unit_tree/TeamColorizer
 share/wesnoth/data/tools/unit_tree/__init__.py
 share/wesnoth/data/tools/unit_tree/animations.py
@@ -14814,15 +16352,15 @@ share/wesnoth/data/tools/wesnoth/README.
 share/wesnoth/data/tools/wesnoth/__init__.py
 share/wesnoth/data/tools/wesnoth/campaignserver_client.py
 share/wesnoth/data/tools/wesnoth/libgithub.py
+share/wesnoth/data/tools/wesnoth/trackplacer3/__init__.py
+share/wesnoth/data/tools/wesnoth/trackplacer3/cfgfileformat.py
+share/wesnoth/data/tools/wesnoth/trackplacer3/datatypes.py
+share/wesnoth/data/tools/wesnoth/trackplacer3/tmxfileformat.py
 share/wesnoth/data/tools/wesnoth/wescamp.py
 share/wesnoth/data/tools/wesnoth/wmldata.py
-share/wesnoth/data/tools/wesnoth/wmlgrammar.py
-share/wesnoth/data/tools/wesnoth/wmliterator.py
 share/wesnoth/data/tools/wesnoth/wmliterator3.py
 share/wesnoth/data/tools/wesnoth/wmlparser.py
-share/wesnoth/data/tools/wesnoth/wmlparser2.py
 share/wesnoth/data/tools/wesnoth/wmlparser3.py
-share/wesnoth/data/tools/wesnoth/wmltools.py
 share/wesnoth/data/tools/wesnoth/wmltools3.py
 share/wesnoth/data/tools/wesnoth_addon_manager
 share/wesnoth/data/tools/wmlflip
@@ -14831,7 +16369,6 @@ share/wesnoth/data/tools/wmllint
 share/wesnoth/data/tools/wmllint-1.4
 share/wesnoth/data/tools/wmlscope
 share/wesnoth/data/tools/wmlunits
-share/wesnoth/data/tools/wmlvalidator
 share/wesnoth/data/tools/wmlxgettext
 share/wesnoth/fonts/Andagii.ttf
 share/wesnoth/fonts/COPYING
@@ -15780,6 +17317,29 @@ share/wesnoth/images/icons/action/help_2
 share/wesnoth/images/icons/action/help_30-active.png
 share/wesnoth/images/icons/action/help_30-pressed.png
 share/wesnoth/images/icons/action/help_30.png
+share/wesnoth/images/icons/action/language_25-active.png
+share/wesnoth/images/icons/action/language_25-pressed.png
+share/wesnoth/images/icons/action/language_25.png
+share/wesnoth/images/icons/action/lock_25-active.png
+share/wesnoth/images/icons/action/lock_25-pressed.png
+share/wesnoth/images/icons/action/lock_25.png
+share/wesnoth/images/icons/action/lock_30-active.png
+share/wesnoth/images/icons/action/lock_30-active%2x.png@localhost
+share/wesnoth/images/icons/action/lock_30-pressed.png
+share/wesnoth/images/icons/action/lock_30-pressed%2x.png@localhost
+share/wesnoth/images/icons/action/lock_30.png
+share/wesnoth/images/icons/action/lock_30%2x.png@localhost
+share/wesnoth/images/icons/action/lock_broken_ornate_30.png
+share/wesnoth/images/icons/action/lock_open_25-active.png
+share/wesnoth/images/icons/action/lock_open_25-pressed.png
+share/wesnoth/images/icons/action/lock_open_25.png
+share/wesnoth/images/icons/action/lock_open_30-active.png
+share/wesnoth/images/icons/action/lock_open_30-active%2x.png@localhost
+share/wesnoth/images/icons/action/lock_open_30-pressed.png
+share/wesnoth/images/icons/action/lock_open_30-pressed%2x.png@localhost
+share/wesnoth/images/icons/action/lock_open_30%2x.png@localhost
+share/wesnoth/images/icons/action/lock_open_ornate_30.png
+share/wesnoth/images/icons/action/lock_ornate_30.png
 share/wesnoth/images/icons/action/minimap-draw-terrain_25-active.png
 share/wesnoth/images/icons/action/minimap-draw-terrain_25-pressed.png
 share/wesnoth/images/icons/action/minimap-draw-terrain_25.png
@@ -16502,6 +18062,7 @@ share/wesnoth/images/misc/logo.png
 share/wesnoth/images/misc/map.png
 share/wesnoth/images/misc/missing-image.png
 share/wesnoth/images/misc/no_observer.png
+share/wesnoth/images/misc/orb-two-color.png
 share/wesnoth/images/misc/orb.png
 share/wesnoth/images/misc/orb%2x.png@localhost
 share/wesnoth/images/misc/petrified.png
@@ -16537,7 +18098,6 @@ share/wesnoth/images/whiteboard/attack-i
 share/wesnoth/images/whiteboard/attack-indicator-src-se.png
 share/wesnoth/images/whiteboard/attack-indicator-src-sw.png
 share/wesnoth/images/whiteboard/suppose_dead.png
-share/wesnoth/l10n-track
 share/wesnoth/sounds/README.md
 share/wesnoth/sounds/arrive.wav
 share/wesnoth/sounds/bell.wav
@@ -16558,9 +18118,7 @@ share/wesnoth/sounds/select-unit.wav
 share/wesnoth/sounds/select.wav
 share/wesnoth/sounds/slider.wav
 share/wesnoth/sounds/timer.wav
-share/wesnoth/translations/af/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/af/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-dw.mo
@@ -16571,54 +18129,21 @@ share/wesnoth/translations/af/LC_MESSAGE
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/af/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/af/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/af/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/af/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/af/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-ai.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-aoi.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-did.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-dm.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-dw.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-editor.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-ei.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-help.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-httt.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-l.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-lib.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-manual.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-multiplayer.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-nr.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-sof.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-sota.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-sotbe.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-test.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-thot.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-trow.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-tsg.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-tutorial.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-units.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth-utbs.mo
-share/wesnoth/translations/ang/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-dw.mo
@@ -16629,25 +18154,21 @@ share/wesnoth/translations/ang@latin/LC_
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/ang@latin/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-dw.mo
@@ -16658,54 +18179,21 @@ share/wesnoth/translations/ar/LC_MESSAGE
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/ar/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/ar/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-ai.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-aoi.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-did.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-dm.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-dw.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-editor.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-ei.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-help.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-httt.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-l.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-lib.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-manual.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-multiplayer.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-nr.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-sof.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-sota.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-sotbe.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-test.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-thot.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-trow.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-tsg.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-tutorial.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-units.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth-utbs.mo
-share/wesnoth/translations/ast/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-dw.mo
@@ -16716,25 +18204,21 @@ share/wesnoth/translations/bg/LC_MESSAGE
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/bg/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/bg/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-dw.mo
@@ -16745,25 +18229,21 @@ share/wesnoth/translations/ca/LC_MESSAGE
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/ca/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/ca/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-dw.mo
@@ -16774,25 +18254,21 @@ share/wesnoth/translations/ca_ES@valenci
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/ca_ES@valencia/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-dw.mo
@@ -16803,25 +18279,21 @@ share/wesnoth/translations/cs/LC_MESSAGE
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/cs/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/cs/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/da/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/da/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-dw.mo
@@ -16832,25 +18304,21 @@ share/wesnoth/translations/da/LC_MESSAGE
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/da/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/da/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/da/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/da/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/da/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/de/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/de/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-dw.mo
@@ -16861,25 +18329,21 @@ share/wesnoth/translations/de/LC_MESSAGE
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/de/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/de/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/de/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/de/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/de/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/el/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/el/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-dw.mo
@@ -16890,25 +18354,21 @@ share/wesnoth/translations/el/LC_MESSAGE
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/el/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/el/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/el/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/el/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/el/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-dw.mo
@@ -16919,25 +18379,21 @@ share/wesnoth/translations/en@shaw/LC_ME
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/en@shaw/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-dw.mo
@@ -16948,25 +18404,21 @@ share/wesnoth/translations/en_GB/LC_MESS
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/en_GB/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-dw.mo
@@ -16977,25 +18429,21 @@ share/wesnoth/translations/eo/LC_MESSAGE
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/eo/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/eo/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/es/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/es/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-dw.mo
@@ -17006,25 +18454,21 @@ share/wesnoth/translations/es/LC_MESSAGE
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/es/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/es/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/es/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/es/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/es/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/et/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/et/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-dw.mo
@@ -17035,25 +18479,21 @@ share/wesnoth/translations/et/LC_MESSAGE
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/et/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/et/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/et/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/et/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/et/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-dw.mo
@@ -17064,25 +18504,21 @@ share/wesnoth/translations/eu/LC_MESSAGE
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/eu/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/eu/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-dw.mo
@@ -17093,25 +18529,21 @@ share/wesnoth/translations/fi/LC_MESSAGE
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/fi/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/fi/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-dw.mo
@@ -17122,54 +18554,21 @@ share/wesnoth/translations/fr/LC_MESSAGE
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/fr/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/fr/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-ai.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-aoi.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-did.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-dm.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-dw.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-editor.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-ei.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-help.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-httt.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-l.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-lib.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-manual.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-multiplayer.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-nr.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-sof.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-sota.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-sotbe.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-test.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-thot.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-trow.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-tsg.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-tutorial.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-units.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth-utbs.mo
-share/wesnoth/translations/fur_IT/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-dw.mo
@@ -17180,25 +18579,21 @@ share/wesnoth/translations/ga/LC_MESSAGE
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/ga/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/ga/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-dw.mo
@@ -17209,25 +18604,21 @@ share/wesnoth/translations/gd/LC_MESSAGE
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/gd/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/gd/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-dw.mo
@@ -17238,25 +18629,46 @@ share/wesnoth/translations/gl/LC_MESSAGE
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/gl/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/gl/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/he/LC_MESSAGES/wesnoth-ai.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-anl.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-did.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-dm.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-dw.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-editor.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-ei.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-help.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-httt.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-l.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-lib.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-low.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-multiplayer.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-nr.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-sof.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-sota.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-sotbe.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-tb.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-thot.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-trow.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-tsg.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-tutorial.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-units.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth-wc.mo
+share/wesnoth/translations/grc/LC_MESSAGES/wesnoth.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/he/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-dw.mo
@@ -17267,25 +18679,21 @@ share/wesnoth/translations/he/LC_MESSAGE
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/he/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/he/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/he/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/he/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/he/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-dw.mo
@@ -17296,25 +18704,21 @@ share/wesnoth/translations/hr/LC_MESSAGE
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/hr/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/hr/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-dw.mo
@@ -17325,25 +18729,21 @@ share/wesnoth/translations/hu/LC_MESSAGE
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/hu/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/hu/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/id/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/id/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-dw.mo
@@ -17354,25 +18754,21 @@ share/wesnoth/translations/id/LC_MESSAGE
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/id/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/id/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/id/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/id/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/id/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/is/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/is/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-dw.mo
@@ -17383,25 +18779,21 @@ share/wesnoth/translations/is/LC_MESSAGE
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/is/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/is/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/is/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/is/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/is/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/it/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/it/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-dw.mo
@@ -17412,25 +18804,21 @@ share/wesnoth/translations/it/LC_MESSAGE
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/it/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/it/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/it/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/it/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/it/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-dw.mo
@@ -17441,25 +18829,21 @@ share/wesnoth/translations/ja/LC_MESSAGE
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/ja/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/ja/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-dw.mo
@@ -17470,25 +18854,21 @@ share/wesnoth/translations/ko/LC_MESSAGE
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/ko/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/ko/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/la/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/la/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-dw.mo
@@ -17499,25 +18879,21 @@ share/wesnoth/translations/la/LC_MESSAGE
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/la/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/la/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/la/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/la/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/la/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-dw.mo
@@ -17528,25 +18904,21 @@ share/wesnoth/translations/lt/LC_MESSAGE
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/lt/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/lt/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-dw.mo
@@ -17557,25 +18929,21 @@ share/wesnoth/translations/lv/LC_MESSAGE
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/lv/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/lv/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-dw.mo
@@ -17586,25 +18954,21 @@ share/wesnoth/translations/mk/LC_MESSAGE
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/mk/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/mk/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-dw.mo
@@ -17615,25 +18979,46 @@ share/wesnoth/translations/mr/LC_MESSAGE
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/mr/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/mr/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-ai.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-anl.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-did.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-dm.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-dw.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-editor.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-ei.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-help.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-httt.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-l.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-lib.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-low.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-multiplayer.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-nr.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-sof.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-sota.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-sotbe.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-tb.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-thot.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-trow.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-tsg.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-tutorial.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-units.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth-wc.mo
+share/wesnoth/translations/my/LC_MESSAGES/wesnoth.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-dw.mo
@@ -17644,25 +19029,21 @@ share/wesnoth/translations/nb_NO/LC_MESS
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/nb_NO/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-dw.mo
@@ -17673,25 +19054,21 @@ share/wesnoth/translations/nl/LC_MESSAGE
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/nl/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/nl/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-dw.mo
@@ -17702,25 +19079,21 @@ share/wesnoth/translations/pl/LC_MESSAGE
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/pl/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/pl/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-dw.mo
@@ -17731,25 +19104,21 @@ share/wesnoth/translations/pt/LC_MESSAGE
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/pt/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/pt/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-dw.mo
@@ -17760,25 +19129,21 @@ share/wesnoth/translations/pt_BR/LC_MESS
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/pt_BR/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-dw.mo
@@ -17789,25 +19154,21 @@ share/wesnoth/translations/racv/LC_MESSA
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/racv/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/racv/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-dw.mo
@@ -17818,25 +19179,21 @@ share/wesnoth/translations/ro/LC_MESSAGE
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/ro/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/ro/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-dw.mo
@@ -17847,25 +19204,21 @@ share/wesnoth/translations/ru/LC_MESSAGE
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/ru/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/ru/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-dw.mo
@@ -17876,25 +19229,21 @@ share/wesnoth/translations/sk/LC_MESSAGE
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/sk/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/sk/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-dw.mo
@@ -17905,25 +19254,21 @@ share/wesnoth/translations/sl/LC_MESSAGE
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/sl/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/sl/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-dw.mo
@@ -17934,25 +19279,21 @@ share/wesnoth/translations/sr/LC_MESSAGE
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/sr/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/sr/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-dw.mo
@@ -17963,25 +19304,21 @@ share/wesnoth/translations/sr@ijekavian/
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/sr@ijekavian/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dw.mo
@@ -17992,25 +19329,21 @@ share/wesnoth/translations/sr@ijekavianl
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/sr@ijekavianlatin/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-dw.mo
@@ -18021,25 +19354,21 @@ share/wesnoth/translations/sr@latin/LC_M
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/sr@latin/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-dw.mo
@@ -18050,25 +19379,21 @@ share/wesnoth/translations/sv/LC_MESSAGE
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/sv/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/sv/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-dw.mo
@@ -18079,25 +19404,21 @@ share/wesnoth/translations/tl/LC_MESSAGE
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/tl/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/tl/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-dw.mo
@@ -18108,25 +19429,21 @@ share/wesnoth/translations/tr/LC_MESSAGE
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/tr/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/tr/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-dw.mo
@@ -18137,25 +19454,21 @@ share/wesnoth/translations/uk/LC_MESSAGE
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/uk/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/uk/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-dw.mo
@@ -18166,25 +19479,21 @@ share/wesnoth/translations/vi/LC_MESSAGE
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/vi/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/vi/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-dw.mo
@@ -18195,25 +19504,21 @@ share/wesnoth/translations/zh_CN/LC_MESS
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/zh_CN/LC_MESSAGES/wesnoth.mo
-share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-ai.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-anl.mo
-share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-aoi.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-did.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-dm.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-dw.mo
@@ -18224,19 +19529,17 @@ share/wesnoth/translations/zh_TW/LC_MESS
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-l.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-lib.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-low.mo
-share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-manpages.mo
-share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-manual.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-multiplayer.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-nr.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-sof.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-sota.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-sotbe.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-tb.mo
-share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-test.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-thot.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-trow.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-tsg.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-tutorial.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-units.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-utbs.mo
+share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth-wc.mo
 share/wesnoth/translations/zh_TW/LC_MESSAGES/wesnoth.mo

Index: pkgsrc/games/wesnoth/distinfo
diff -u pkgsrc/games/wesnoth/distinfo:1.78 pkgsrc/games/wesnoth/distinfo:1.79
--- pkgsrc/games/wesnoth/distinfo:1.78  Tue Oct 26 10:44:30 2021
+++ pkgsrc/games/wesnoth/distinfo       Tue Nov  2 18:35:04 2021
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.78 2021/10/26 10:44:30 nia Exp $
+$NetBSD: distinfo,v 1.79 2021/11/02 18:35:04 adam Exp $
 
-BLAKE2s (wesnoth-1.14.17.tar.bz2) = 4fcb3ca4b19eefc04ef4ad5034ed71a65f1452f4ae5e3af892c40892f3c54887
-SHA512 (wesnoth-1.14.17.tar.bz2) = d4a5cbc26ec26453f1baf375980bbfcfb11e6a86ce40d23974751b2591bbe290c70c3ee760b9b45253b1c7ed4ea1574d3920b103c70cb14067ec14860a33a8a8
-Size (wesnoth-1.14.17.tar.bz2) = 462461190 bytes
-SHA1 (patch-CMakeLists.txt) = 5c580a7b9719d769507c2c0ec3580d6cf523e7f0
-SHA1 (patch-src_CMakeLists.txt) = 5839663ab11a9fdc31e89b74ce2708a251155d9f
+BLAKE2s (wesnoth-1.16.0.tar.bz2) = 3f60a121ac5fef1ba39adf1ecf68537732aecb6612337125553f8e1229bc69e8
+SHA512 (wesnoth-1.16.0.tar.bz2) = 5827e37cc3cbf7fd4253e650f5fb64b7c4dbb6227eadb4850d990719f6c49dba93d421cc5314cd62f2d487754d90ea33d62fe6ac47b2cf56a254ff56f466fa1d
+Size (wesnoth-1.16.0.tar.bz2) = 473896834 bytes
+SHA1 (patch-CMakeLists.txt) = 5707f782cf577fcd336c769df3aff2213c1c39f8
+SHA1 (patch-src_CMakeLists.txt) = 776c522ccfc544d8898d786fe164c2be1812db1a
 SHA1 (patch-src_color__range.cpp) = bdce94054a0fb2972e63a968fdb78e34db1213a6
 SHA1 (patch-src_wesnoth.cpp) = 73fa69b47de231c5ce16f66a52b449d5242ffe67

Index: pkgsrc/games/wesnoth/patches/patch-CMakeLists.txt
diff -u pkgsrc/games/wesnoth/patches/patch-CMakeLists.txt:1.3 pkgsrc/games/wesnoth/patches/patch-CMakeLists.txt:1.4
--- pkgsrc/games/wesnoth/patches/patch-CMakeLists.txt:1.3       Thu Jul 26 10:19:56 2018
+++ pkgsrc/games/wesnoth/patches/patch-CMakeLists.txt   Tue Nov  2 18:35:04 2021
@@ -1,11 +1,11 @@
-$NetBSD: patch-CMakeLists.txt,v 1.3 2018/07/26 10:19:56 adam Exp $
+$NetBSD: patch-CMakeLists.txt,v 1.4 2021/11/02 18:35:04 adam Exp $
 
 Do not look for X11 on macOS.
 Do not bother with uninstaller.
 
---- CMakeLists.txt.orig        2018-07-22 11:40:33.000000000 +0000
+--- CMakeLists.txt.orig        2021-10-24 00:23:51.000000000 +0000
 +++ CMakeLists.txt
-@@ -68,7 +68,9 @@ find_package(Boost 1.50 REQUIRED COMPONE
+@@ -76,7 +76,9 @@ find_package(ICU REQUIRED COMPONENTS dat
  # no, gettext executables are not required when NLS is deactivated
  find_package(Gettext)
  
@@ -13,9 +13,9 @@ Do not bother with uninstaller.
  find_package(X11)
 +endif(NOT APPLE)
  
- # needed to get some SDL2 defines in... (as of rev31694 -D_GNU_SOURCE=1 is required!)
- set(SDL2_CONFIG "sdl2-config" CACHE STRING "Path to sdl2-config script")
-@@ -601,11 +576,6 @@ endif(ENABLE_GAME)
+ if(NOT WIN32)
+       # needed to get some SDL2 defines in... (as of rev31694 -D_GNU_SOURCE=1 is required!)
+@@ -568,11 +570,6 @@ endif()
  # uninstall
  #
  
Index: pkgsrc/games/wesnoth/patches/patch-src_CMakeLists.txt
diff -u pkgsrc/games/wesnoth/patches/patch-src_CMakeLists.txt:1.3 pkgsrc/games/wesnoth/patches/patch-src_CMakeLists.txt:1.4
--- pkgsrc/games/wesnoth/patches/patch-src_CMakeLists.txt:1.3   Mon Jan  6 14:14:08 2020
+++ pkgsrc/games/wesnoth/patches/patch-src_CMakeLists.txt       Tue Nov  2 18:35:04 2021
@@ -1,19 +1,15 @@
-$NetBSD: patch-src_CMakeLists.txt,v 1.3 2020/01/06 14:14:08 nia Exp $
+$NetBSD: patch-src_CMakeLists.txt,v 1.4 2021/11/02 18:35:04 adam Exp $
 
 On macOS, do not build SDLMain.mm; only needed for app bundle.
 
---- src/CMakeLists.txt.orig    2018-06-10 00:02:23.000000000 +0000
+--- src/CMakeLists.txt.orig    2021-10-24 00:23:51.000000000 +0000
 +++ src/CMakeLists.txt
-@@ -285,11 +285,7 @@ add_library(wesnoth-game ${LIBRARY_TYPE}
- ########### Wesnoth ###############
- 
- if(ENABLE_GAME)
--      if(NOT APPLE)
--              add_executable(wesnoth WIN32 wesnoth.cpp)
--      else()
--              add_executable(wesnoth WIN32 wesnoth.cpp macosx/SDLMain.mm)
--      endif(NOT APPLE)
-+      add_executable(wesnoth WIN32 wesnoth.cpp)
- 
-       target_link_libraries(wesnoth
-               wesnoth-client
+@@ -154,8 +154,6 @@ if(ENABLE_GAME)
+       if(WIN32)
+               add_executable(wesnoth WIN32 wesnoth.cpp ../packaging/windows/wesnoth.rc)
+               target_link_options(wesnoth PRIVATE /WX /WHOLEARCHIVE:wesnoth-widgets)
+-      elseif(APPLE)
+-              add_executable(wesnoth wesnoth.cpp macosx/SDLMain.mm)
+       else()
+               add_executable(wesnoth wesnoth.cpp)
+       endif()



Home | Main Index | Thread Index | Old Index