Luria Nova/Events/The Zuma/Battle in Shinnen II

From BattleMaster Wiki
< Luria Nova‎ | Events‎ | The Zuma
Revision as of 07:44, 7 December 2021 by Stinkyoldmen (talk | contribs) (Created page with " <!DOCTYPE html> <html> <head> <title>BattleMaster</title> <link rel="icon" type="image/png" href="/favicon.png" /> <link rel="apple-touch-icon" sizes="57x57" href="/apple-tou...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<!DOCTYPE html> <html> <head> <title>BattleMaster</title> <link rel="icon" type="image/png" href="/favicon.png" /> <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon.png" /> <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon.png" /> <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-ipad.png" /> <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-ipad.png" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="BattleMaster is a team-oriented browsergame merging strategy and roleplaying in a (low-) fantasy world." /> <meta name="theme-color" content="#000000" /> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <meta charset="utf-8"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="/js/jquery-3.6.0.js"></script> <script type="text/javascript" src="/js/jquery-ui.js"></script> <script type="text/javascript" src="/common/jquery.autocomplete.js"></script> <script type="text/javascript" src="/common/jquery.dataTables.min.js"></script> <script type="text/javascript" src="/common/jquery.metadata.js"></script> <script type="text/javascript" src="/common/jquery.tablesorter.js"></script> <script type="text/javascript" src="/common/jquery.form.js"></script> <script type="text/javascript" src="/common/jquery.qtip.min.js"></script> <script type="text/javascript" src="/common/jquery.chosen.min.js"></script> <script type="text/javascript" src="/common/json2.js"></script> <script type="text/javascript" src="/common/bm.js"></script> <script src="/common/ckeditor/ckeditor.js"></script> <script src="/common/ckeditor/adapters/jquery.js"></script> <script> var ckeditorInited = false; function ckeditorInit() { CKEDITOR.timestamp='TGC19'; CKEDITOR.config.customConfig = '/common/ckeditor_plugins/ckeditor_config.js'; CKEDITOR.plugins.addExternal('sharedspace', '/common/ckeditor_plugins/sharedspace/'); CKEDITOR.env.isCompatible = true; ckeditorInited = true; } function updateCharCount(editorName, charLimit) { var editor = CKEDITOR.instances[editorName]; editor.document.on("keyup", function(){ editor.customPropertyOfMine = "test"; var editorContent = editor.getData(); $("#"+editorName+"_textCount").text(editorContent.length); if (editorContent.length > charLimit) { $("#"+editorName+"_textCount").css("font-weight","bold"); $("#"+editorName+"_textCount").css("color","red"); $("input[type=submit]").attr('disabled','disabled'); } else { $("#"+editorName+"_textCount").css("font-weight",""); $("#"+editorName+"_textCount").css("color",""); $("input[type=submit]").removeAttr('disabled'); } }); } var revealedMessages = []; function toggleMessage(messageId) { if (revealedMessages[messageId]) { $("#message-"+messageId+" .message-body").css('display','none'); $("#message-"+messageId+" .content-warning").css('border','4px outset goldenrod').css('margin-left',); $("#content-disclosure-"+messageId)[0].src = '/common/images/white-disclosure-right.png'; $("#content-disclosure-"+messageId).css('margin-left',); revealedMessages[messageId] = false; } else { $("#message-"+messageId+" .message-body").css('display','block'); $("#message-"+messageId+" .content-warning").css('border','4px inset goldenrod').css('margin-left','0.1em'); $("#content-disclosure-"+messageId)[0].src = '/common/images/white-disclosure-down.png'; $("#content-disclosure-"+messageId).css('margin-left','0.1em'); revealedMessages[messageId] = true; } } $(function() { }); </script> <link rel="stylesheet" type="text/css" href="/common/battlemaster.css" /> <link rel="stylesheet" type="text/css" href="/common/navbar.css" /> <link rel="stylesheet" type="text/css" href="/js/jquery-ui.css" /> <link rel="stylesheet" type="text/css" href="/common/jquery.dataTables_themeroller.css" /> <link rel="stylesheet" type="text/css" href="/common/jquery.qtip.css" /> <link rel="stylesheet" type="text/css" href="/common/chosen.css" /><script type="text/javascript"> $(document).ready(function() { /* setup qtip */ $.fn.qtip.defaults.style.classes = 'ui-tooltip-cluetip ui-tooltip-shadow ui-tooltip-rounded'; $.fn.qtip.defaults.show.effect = function(offset){$(this).fadeIn(100)}; $.fn.qtip.defaults.hide.effect = function(offset){$(this).fadeOut(100)};

if ($(".chzn-select").length>0) { $(".chzn-select").chosen({ group_search: false, search_contains: true, include_group_label_in_selected: true }); }

/* old */ BattleMaster.addParsers(); if ($("table.sortableTable").length>0) { $('table.sortableTable').tablesorter({ // debug: true }); }

/* new */ jQuery.extend( jQuery.fn.dataTableExt.oSort, { "num-html-pre": function ( a ) { var x; if (a == | a == '-' | a == 'here') { a = 0; } if (a != "∞" && a != "∞") { x = String(a).replace( /<[\s\S]*?>/g, "" ); } else { x = Number.MAX_VALUE; } return parseFloat( x ); },

"num-html-asc": function ( a, b ) { return ((a < b) ? -1 : ((a > b) ? 1 : 0)); },

"num-html-desc": function ( a, b ) { return ((a < b) ? 1 : ((a > b) ? -1 : 0)); } } ); jQuery.extend( jQuery.fn.dataTableExt.oSort, { "mentor-date-pre": function ( a ) { var parts = a.split(" "); var num = parseInt(parts[0]); var mult = 1; if (parts[1].substr(0,5)=='month') { mult = 30 * 24 * 60; } else if (parts[1].substr(0,3)=='day') { mult = 24 * 60; } else if (parts[1].substr(0,4)=='hour') { mult = 60; } else if (parts[0].substr(0,4)=='just') { return 0; } return num * mult; },

"mentor-date-asc": function ( a, b ) { return ((a < b) ? -1 : ((a > b) ? 1 : 0)); }, "mentor-date-desc": function ( a, b ) { return ((a < b) ? 1 : ((a > b) ? -1 : 0)); } } ); jQuery.extend( jQuery.fn.dataTableExt.oSort, { "gold-to-silver-pre": function ( a ) { if (a == '(no buyer here today)') { return -1; } var parts = a.split(" "); var num = parseInt(parts[0]); var mult = 1; if (parts.length == 2) { if (parts[1].substr(0,4) == 'gold') { return num * 12; } else if (parts[1].substr(0,6) == 'silver') { return num; } } else if (parts.length == 4) { if (parts[1].substr(0,5) == 'gold,') { mult = num * 12; } if (parts[3].substr(0,6) == 'silver') { return mult + parseInt(parts[2]); } } },

"gold-to-silver-asc": function ( a, b ) { return ((a < b) ? -1 : ((a > b) ? 1 : 0)); },

"gold-to-silver-desc": function ( a, b ) { return ((a < b) ? 1 : ((a > b) ? -1 : 0)); }, "age-pre": function ( a ) { var x = -1; if (a=="fresh") { x = 0; } else { if (a.length>6) { x = a.substring(0, a.length-6); } else { x = a.substring(0, a.length-5); } } return parseInt( x ); },

"age-asc": function ( a, b ) { return ((a < b) ? -1 : ((a > b) ? 1 : 0)); },

"age-desc": function ( a, b ) { return ((a < b) ? 1 : ((a > b) ? -1 : 0)); } } );

if ($("table.autoDataTable").length>0) { $('table.autoDataTable').dataTable({ "bJQueryUI": true, "sPaginationType": "full_numbers", "iDisplayLength": 50, "bLengthChange": true, "aoColumnDefs": [ {"aTargets":["sort_disabled"], "bSortable":false }, {"sType":"num-html", "aTargets":["numeric"]}, {"sType":"age", "aTargets":["scribe"]}, {"sType":"gold-to-silver", "aTargets":["gold-to-silver"]} ] }); }

if ($("table.smallDataTable").length>0) { $('table.smallDataTable').dataTable({ "bJQueryUI": true, "iDisplayLength": 20, "bPaginate": false, "bFilter": false, "bInfo": false, "aoColumnDefs": [ {"aTargets":["sort_disabled"], "bSortable":false }, {"sType":"num-html", "aTargets":["numeric"]}, {"sType":"age", "aTargets":["scribe"]}, {"sType":"gold-to-silver", "aTargets":["gold-to-silver"]} ] }); }

if ($(".myThreadList").length>0) { $(".myThreadList").dataTable({ "bDestroy": true, "bJQueryUI": true, "sPaginationType": "full_numbers", "iDisplayLength": 10, "bLengthChange": true, "aoColumnDefs": [ {"aTargets":["sort_disabled"], "bSortable":false }, {"sType":"num-html", "aTargets":["numeric"]}, {"sType":"mentor-date", "aTargets":["mentor-date"]}, {"sType":"age", "aTargets":["scribe"]} ] }); }

if ($(".threadList").length>0) { $(".threadList").dataTable({ "bDestroy": true, "bJQueryUI": true, "sPaginationType": "full_numbers", "iDisplayLength": 10, "bLengthChange": true, "aoColumnDefs": [ {"aTargets":["sort_disabled"], "bSortable":false }, {"sType":"num-html", "aTargets":["numeric"]}, {"sType":"mentor-date", "aTargets":["mentor-date"]}, {"sType":"age", "aTargets":["scribe"]} ] }); } // If there's a "messages" element waiting for us, we update it if ($("#navUnreadMessages").length) { updateUnread(); setInterval('updateUnread();', 300000); } }); function updateUnread() { $.post('/play/unread',{},function(data) { if (data.unreadCount && data.unreadCount > 0) { $("#navUnreadMessages").html(' <a href="/testing/play-news.php?force=yes">('+data.unreadCount+')</a>'); } else { $("#navUnreadMessages").html(); } },'json'); } </script> </head> <body>

<style type="text/css">

.UID_7643 { text-decoration: underline; font-weight: bold; color: orange; } </style>

<a href="#Status" title="Skip navigation" accesskey="2">Skip navigation</a>
<a href="/Bugtracker.php?File=ShowScribeNote.php" target="_blank">Report Bug</a> | stable page | testing island

Information

Scribe Note, 9 turns old:



Battle in Unterstrom Vorstadt
No.RoleArmyUnitCommanderRealmUnitFormationCS
1A Achenar ElitesHengistAstrum105 SFskirmish  2171
2A Aurelius DragonsGambitAstrum101 MIskirmish  937
3A Corp Sanctum PaladinsEionAstrum58 Cavwedge  887
4A Fireborne FuryBlazeAstrum108 Infline  1171
5A Flaming Red Sky Beams(not present)Astrum64 Archskirmish  741
6A Guardas de SantisRamonAstrum87 Infline  1052
7A Prickly PearsCarlosAstrum121 Archskirmish  1611
8A spaertipZephyrAstrum71 SFbox  1600
9A Starblight ArrowsAméeAstrum66 Archskirmish  830
10A Swords of MaddeningJornAstrum206 Infline  1678
11D Arano GaurdsCassandraSwordfell80 MIline  993
12D Archers of KortobelKorwynSwordfell80 Archskirmish  1267
13D Armsworth 3rd InfantryAugustusSwordfell65 Infbox  986
14D CobrasShelbySwordfell35 MIline  730
15D FightersWillowSwordfell72 SFskirmish  1630
16D Forest Rangers(not present)Swordfell11 Archbox  327
17DGiselle's Proudest(militia/guard unit)Swordfell72 Archline  828
18D Mina's WrathMinaSwordfell59 SFline  1271
19D Royal GuardHariSwordfell166 Infline  1905
20DSanguis Astroism Avenger's(militia/guard unit)Swordfell44 Infline  477
21DSanguis Astroism Avengers(militia/guard unit)Swordfell39 Infline  428
22DSanguis Astroism Defender(militia/guard unit)Swordfell65 Archline  742
23DSanguis Astroism Military(militia/guard unit)Swordfell20 Archline  247
24DSanguis Astroism Specialist(militia/guard unit)Swordfell58 Archline  755
25DSanguis Astroism Vanguard(militia/guard unit)Swordfell63 Archline  826
26DSwordfell Missing You(militia/guard unit)Swordfell10 Archline  175
27D Werchief GuardsBryceSwordfell44 Archline  495

Total:
10 attackers (401 Inf, 101 MI, 251 Arch, 58 Cav, 176 SF)
17 defenders (314 Inf, 115 MI, 423 Arch, 131 SF)
Total combat strengths: 12678 vs. 14082

The region owner Swordfell and their allies defend.
The Astrum troops attack because they are at war with Swordfell.

It is quite windy and the archers will have to aim very carefully.
The defenders take up positions inside the Motte and Bailey (2).

Margrave Zephyr Crewins is spotted wielding the Accurate Club.
Senator Augustus Armsworth is spotted wielding the Holy Shield.
Jorn Aginharu, Sword of the Maddening of Astrum, Duke of Coast of Morek, Margrave of Aegir, Marshal of the Crusaders of Corsanctum takes command of his army. They deploy in no particular formation.
Korwyn Kortobel, Archmarshal of Swordfell, Governor of Flowrestown, Marshal of the Fellish Imperial Legion takes command of his army. They deploy in Fortification Defense formation.

(legend: I=Infantry, M=Mixed Inf, A=Archers, C=Cavalry, S=Special Forces, U=Undead, M=Monsters)
Turn No. 1

  3 (58-C)
  1 (105-S)
2 (101-M)
5 (64-A)
7 (121-A)
9 (66-A)
4 (108-I)
6 (87-I)
8 (71-S)
10 (206-I)
  11 (80-M)
12 (80-A)
13 (65-I)
14 (35-M)
15 (72-S)
16 (11-A)
18 (59-S)
19 (166-I)
27 (44-A)
17 (72-A)
20 (44-I)
21 (39-I)
22 (65-A)
23 (20-A)
24 (58-A)
25 (63-A)
26 (10-A)
   

Forest Rangers (16) fire on Swords of Maddening (10), scoring 232 hits.
Archers of Kortobel (12) fire on spaertip (8), scoring 1234 hits.
Sanguis Astroism Vanguard (25) fire on Swords of Maddening (10), scoring 507 hits.
Prickly Pears (7) fire on Royal Guard (19), scoring 795 hits.
Achenar Elites (1) fire on Fighters (15), scoring 720 hits.
Mina's Wrath (18) fire on Fireborne Fury (4), scoring 1019 hits.
Werchief Guards (27) fire on Guardas de Santis (6), scoring 323 hits.
Sanguis Astroism Military (23) fire on Guardas de Santis (6), scoring 64 hits.
Flaming Red Sky Beams (5) fire on Armsworth 3rd Infantry (13), scoring 266 hits.
Sanguis Astroism Specialist (24) fire on Guardas de Santis (6), scoring 308 hits.
Cobras (14) fire on Swords of Maddening (10), scoring 293 hits.
Aurelius Dragons (2) fire on Arano Gaurds (11), scoring 196 hits.
Starblight Arrows (9) fire on Archers of Kortobel (12), scoring 405 hits.
Giselle's Proudest (17) fire on Guardas de Santis (6), scoring 359 hits.
Fighters (15) fire on Swords of Maddening (10), scoring 561 hits.
Sanguis Astroism Defender (22) fire on spaertip (8), scoring 332 hits.
Swordfell Missing You (26) fire on Fireborne Fury (4), scoring 84 hits.
Arano Gaurds (11) fire on Fireborne Fury (4), scoring 392 hits.
Total ranged hits suffered: Attackers: 5708, Defenders: 2382
Corp Sanctum Paladins (3) ride on, closing in on the defenders.
spaertip (8), Guardas de Santis (6), Swords of Maddening (10) and Fireborne Fury (4) advance towards the enemy.
Sanguis Astroism Avengers (21) and Sanguis Astroism Avenger's (20) move forward to take up positions at the outer wall.
Royal Guard (19) and Armsworth 3rd Infantry (13) hold their positions at the outer wall, waiting for the attack.


Archers of Kortobel (12) take 314 hits from archer fire (reduced due to fortifications), which cause 7 casualties.
spaertip (8) take 1566 hits from archer fire, which cause 30 casualties.
Zephyr Crewins, Margrave of Aegir's Deep has been wounded by Archers of Kortobel (12).
Royal Guard (19) take 616 hits from archer fire (reduced due to fortifications), which cause 12 casualties.
Fighters (15) take 558 hits from archer fire (reduced due to fortifications), which cause 14 casualties.
Armsworth 3rd Infantry (13) take 206 hits from archer fire (reduced due to fortifications), which cause 4 casualties.
Guardas de Santis (6) take 1054 hits from archer fire, which cause 21 casualties.
Swords of Maddening (10) take 1593 hits from archer fire, which cause 37 casualties.
Arano Gaurds (11) take 152 hits from archer fire (reduced due to fortifications), which cause 3 casualties.
Fireborne Fury (4) take 1495 hits from archer fire, which cause 27 casualties.
Blaze Mcloud, Count of Mimiravair has been wounded by Mina's Wrath (18).
Total hits suffered: Attackers: 5708 (0 from close combat and 5708 from ranged), Defenders: 1846 (0 from close combat and 1846 from ranged)
Total casualties: 115 attackers, 40 defenders

Turn No. 2

    1 (105-S)
2 (101-M)
3 (58-C)
5 (64-A)
7 (121-A)
9 (66-A)
  4 (81-I)
6 (66-I)
8 (41-S)
10 (169-I)
11 (77-M)
12 (73-A)
13 (61-I)
14 (35-M)
15 (58-S)
16 (11-A)
18 (59-S)
19 (154-I)
20 (44-I)
21 (39-I)
27 (44-A)
17 (72-A)
22 (65-A)
23 (20-A)
24 (58-A)
25 (63-A)
26 (10-A)
   

Prickly Pears (7) fire on Royal Guard (19), scoring 708 hits.
Sanguis Astroism Specialist (24) fire on Swords of Maddening (10), scoring 707 hits.
Sanguis Astroism Defender (22) fire on spaertip (8), scoring 486 hits.
Sanguis Astroism Military (23) fire on Fireborne Fury (4), scoring 155 hits.
Starblight Arrows (9) fire on Fighters (15), scoring 241 hits.
Swordfell Missing You (26) fire on Guardas de Santis (6), scoring 79 hits.
Sanguis Astroism Vanguard (25) fire on Guardas de Santis (6), scoring 519 hits.
Forest Rangers (16) fire on Fireborne Fury (4), scoring 212 hits.
Cobras (14) fire on Fireborne Fury (4), scoring 568 hits.
Archers of Kortobel (12) fire on spaertip (8), scoring 1025 hits.
Werchief Guards (27) fire on Swords of Maddening (10), scoring 283 hits.
Aurelius Dragons (2) fire on Mina's Wrath (18), scoring 257 hits.
Giselle's Proudest (17) fire on Guardas de Santis (6), scoring 598 hits.
Fighters (15) fire on Swords of Maddening (10), scoring 646 hits.
Mina's Wrath (18) fire on Fireborne Fury (4), scoring 672 hits.
Arano Gaurds (11) fire on Guardas de Santis (6), scoring 524 hits.
Flaming Red Sky Beams (5) fire on Armsworth 3rd Infantry (13), scoring 472 hits.
Achenar Elites (1) fire on Archers of Kortobel (12), scoring 742 hits.
Total ranged hits suffered: Attackers: 6474, Defenders: 2420
Corp Sanctum Paladins (3) ride on, closing in on the defenders.
Guardas de Santis (6) scale the fortifications (reduced combat effectiveness for this turn).
Fireborne Fury (4) scale the fortifications (reduced combat effectiveness for this turn).
spaertip (8) scale the fortifications (reduced combat effectiveness for this turn).
Swords of Maddening (10) scale the fortifications (reduced combat effectiveness for this turn).


Close Combat (Defender Line 1):
15 Astrum banners are visible in the melee.
24 Swordfell banners are visible in the melee.
Guardas de Santis (6) score 250 hits on Archers of Kortobel (12).
Guardas de Santis (6) score 27 hits on Forest Rangers (16).
Fireborne Fury (4) score 203 hits on Fighters (15).
Fireborne Fury (4) score 110 hits on Cobras (14).
Royal Guard (19) score 1451 hits on spaertip (8).
Sanguis Astroism Avenger's (20) score 381 hits on Swords of Maddening (10).
Forest Rangers (16) score 92 hits on Guardas de Santis (6).
Cobras (14) score 443 hits on Fireborne Fury (4).
Archers of Kortobel (12) score 250 hits on Guardas de Santis (6).
spaertip (8) score 332 hits on Royal Guard (19).
Werchief Guards (27) score 93 hits on Swords of Maddening (10).
Sanguis Astroism Avengers (21) score 274 hits on Swords of Maddening (10).
Armsworth 3rd Infantry (13) score 726 hits on Swords of Maddening (10).
Swords of Maddening (10) score 104 hits on Armsworth 3rd Infantry (13).
Swords of Maddening (10) score 66 hits on Werchief Guards (27).
Swords of Maddening (10) score 92 hits on Mina's Wrath (18).
Swords of Maddening (10) score 122 hits on Arano Gaurds (11).
Swords of Maddening (10) score 51 hits on Sanguis Astroism Avengers (21).
Swords of Maddening (10) score 70 hits on Sanguis Astroism Avenger's (20).
Fighters (15) score 326 hits on Fireborne Fury (4).
Mina's Wrath (18) score 412 hits on Swords of Maddening (10).
Arano Gaurds (11) score 359 hits on Swords of Maddening (10).
Total close combat hits suffered: Attackers: 4807, Defenders: 1427

Guardas de Santis (6) take 2062 hits (342 in close combat, 1720 from archer fire), which cause 40 casualties, throwing them back from the fortifications. 9 Astrum banners fall.
Ramon de Santis, Margrave of Muspel has been wounded by Arano Gaurds (11).
Fireborne Fury (4) take 2376 hits (769 in close combat, 1607 from archer fire), which cause 43 casualties, making the unit retreat from the battlefield, throwing them back from the fortifications.
Royal Guard (19) take 806 hits (257 in close combat, 549 from archer fire) (reduced due to fortifications), which cause 16 casualties.
Sanguis Astroism Avenger's (20) take 54 hits in close combat (reduced due to fortifications), which cause 1 casualties.
Forest Rangers (16) take 21 hits in close combat (reduced due to fortifications), which cause 1 casualties.
Cobras (14) take 85 hits in close combat (reduced due to fortifications), which cause 2 casualties.
Archers of Kortobel (12) take 769 hits (194 in close combat, 575 from archer fire) (reduced due to fortifications), which cause 18 casualties.
Korwyn Kortobel, Archmarshal of Swordfell, Governor of Flowrestown, Marshal of the Fellish Imperial Legion has been wounded by Achenar Elites (1).
spaertip (8) take 2962 hits (1451 in close combat, 1511 from archer fire), which cause 41 casualties, wiping the unit out.
Zephyr Crewins, Margrave of Aegir's Deep has been wounded by Royal Guard (19).
Werchief Guards (27) take 51 hits in close combat (reduced due to fortifications), which cause 2 casualties.
Sanguis Astroism Avengers (21) take 40 hits in close combat (reduced due to fortifications), which cause 1 casualties.
Armsworth 3rd Infantry (13) take 447 hits (81 in close combat, 366 from archer fire) (reduced due to fortifications), which cause 8 casualties.
Swords of Maddening (10) take 3881 hits (2245 in close combat, 1636 from archer fire), which cause 89 casualties, throwing them back from the fortifications.
Jorn Aginharu, Sword of the Maddening of Astrum, Duke of Coast of Morek, Margrave of Aegir, Marshal of the Crusaders of Corsanctum has been wounded by Armsworth 3rd Infantry (13).
Fighters (15) take 344 hits (157 in close combat, 187 from archer fire) (reduced due to fortifications), which cause 8 casualties.
Mina's Wrath (18) take 270 hits (71 in close combat, 199 from archer fire) (reduced due to fortifications), which cause 6 casualties.
Mina Mejor, Senator of Tranquil has been wounded by Aurelius Dragons (2).
Arano Gaurds (11) take 95 hits in close combat (reduced due to fortifications), which cause 2 casualties.
Total hits suffered: Attackers: 11281 (4807 from close combat and 6474 from ranged), Defenders: 2982 (1106 from close combat and 1876 from ranged)
Total casualties: 213 attackers, 65 defenders

Turn No. 3

    1 (105-S)
2 (101-M)
5 (64-A)
7 (121-A)
9 (66-A)
  3 (58-C)
6 (26-I)
10 (80-I)
11 (75-M)
12 (55-A)
13 (53-I)
14 (33-M)
15 (50-S)
16 (10-A)
18 (53-S)
19 (138-I)
20 (43-I)
21 (38-I)
27 (42-A)
17 (72-A)
22 (65-A)
23 (20-A)
24 (58-A)
25 (63-A)
26 (10-A)
   

Giselle's Proudest (17) fire on Corp Sanctum Paladins (3), scoring 449 hits.
Flaming Red Sky Beams (5) fire on Royal Guard (19), scoring 443 hits.
Achenar Elites (1) fire on Fighters (15), scoring 352 hits.
Prickly Pears (7) fire on Mina's Wrath (18), scoring 1043 hits.
Sanguis Astroism Vanguard (25) fire on Swords of Maddening (10), scoring 408 hits.
Starblight Arrows (9) fire on Archers of Kortobel (12), scoring 309 hits.
Aurelius Dragons (2) fire on Arano Gaurds (11), scoring 234 hits.
Mina's Wrath (18) fire on Guardas de Santis (6), scoring 420 hits.
Cobras (14) fire on Swords of Maddening (10), scoring 461 hits.
Arano Gaurds (11) fire on Corp Sanctum Paladins (3), scoring 504 hits.
Sanguis Astroism Defender (22) fire on Guardas de Santis (6), scoring 410 hits.
Sanguis Astroism Military (23) fire on Swords of Maddening (10), scoring 97 hits.
Sanguis Astroism Specialist (24) fire on Corp Sanctum Paladins (3), scoring 382 hits.
Forest Rangers (16) fire on Swords of Maddening (10), scoring 269 hits.
Fighters (15) fire on Guardas de Santis (6), scoring 641 hits.
Archers of Kortobel (12) fire on Swords of Maddening (10), scoring 677 hits.
Werchief Guards (27) fire on Corp Sanctum Paladins (3), scoring 139 hits.
Swordfell Missing You (26) fire on Corp Sanctum Paladins (3), scoring 98 hits.
Total ranged hits suffered: Attackers: 4955, Defenders: 2381
Corp Sanctum Paladins (3) canter up and down helplessly in front of the fortifications, waiting for friendly troops to breach them.
Guardas de Santis (6) scale the fortifications (reduced combat effectiveness for this turn).
Swords of Maddening (10) scale the fortifications (reduced combat effectiveness for this turn).
Sanguis Astroism Avenger's (20) hold their positions at the outer wall, waiting for the attack.
Forest Rangers (16), Armsworth 3rd Infantry (13) and Werchief Guards (27) cannot join the melee, as it is too crowded.


Close Combat (Defender Line 1):
6 Astrum banners are visible in the melee.
19 Swordfell banners are visible in the melee.
Sanguis Astroism Avenger's (20) score 407 hits on Swords of Maddening (10).
Guardas de Santis (6) score 49 hits on Archers of Kortobel (12).
Guardas de Santis (6) score 63 hits on Arano Gaurds (11).
Guardas de Santis (6) score 28 hits on Sanguis Astroism Avengers (21).
Sanguis Astroism Avengers (21) score 343 hits on Guardas de Santis (6).
Swords of Maddening (10) score 33 hits on Fighters (15).
Swords of Maddening (10) score 88 hits on Royal Guard (19).
Swords of Maddening (10) score 28 hits on Cobras (14).
Swords of Maddening (10) score 34 hits on Mina's Wrath (18).
Swords of Maddening (10) score 38 hits on Sanguis Astroism Avenger's (20).
Mina's Wrath (18) score 503 hits on Swords of Maddening (10).
Cobras (14) score 438 hits on Swords of Maddening (10).
Royal Guard (19) score 1467 hits on Swords of Maddening (10).
Arano Gaurds (11) score 307 hits on Guardas de Santis (6).
Fighters (15) score 425 hits on Swords of Maddening (10).
Archers of Kortobel (12) score 167 hits on Guardas de Santis (6).
Total close combat hits suffered: Attackers: 4057, Defenders: 361

Sanguis Astroism Avenger's (20) take 29 hits in close combat (reduced due to fortifications), which cause 1 casualties.
Guardas de Santis (6) take 2288 hits (817 in close combat, 1471 from archer fire), which cause 26 casualties, wiping the unit out.
Ramon de Santis, Margrave of Muspel has been wounded by Arano Gaurds (11).
Sanguis Astroism Avengers (21) take 22 hits in close combat (reduced due to fortifications). No casualties.
Swords of Maddening (10) take 5152 hits (3240 in close combat, 1912 from archer fire), which cause 80 casualties, wiping the unit out.
Mina's Wrath (18) take 835 hits (26 in close combat, 809 from archer fire) (reduced due to fortifications), which cause 18 casualties, making the unit retreat from the battlefield.
Cobras (14) take 22 hits in close combat (reduced due to fortifications), which cause 1 casualties.
Royal Guard (19) take 411 hits (68 in close combat, 343 from archer fire) (reduced due to fortifications), which cause 8 casualties.
Arano Gaurds (11) take 230 hits (49 in close combat, 181 from archer fire) (reduced due to fortifications), which cause 5 casualties.
Corp Sanctum Paladins (3) take 1572 hits from archer fire, which cause 36 casualties, making the unit retreat from the battlefield.
Fighters (15) take 299 hits (26 in close combat, 273 from archer fire) (reduced due to fortifications), which cause 7 casualties.
Archers of Kortobel (12) take 278 hits (38 in close combat, 240 from archer fire) (reduced due to fortifications), which cause 7 casualties.
Total hits suffered: Attackers: 9012 (4057 from close combat and 4955 from ranged), Defenders: 2126 (280 from close combat and 1846 from ranged)
Total casualties: 142 attackers, 47 defenders

Turn No. 4

    1 (105-S)
2 (101-M)
5 (64-A)
7 (121-A)
9 (66-A)
   11 (70-M)
12 (48-A)
13 (53-I)
14 (32-M)
15 (43-S)
16 (10-A)
19 (130-I)
20 (42-I)
21 (38-I)
27 (42-A)
17 (72-A)
22 (65-A)
23 (20-A)
24 (58-A)
25 (63-A)
26 (10-A)
   

Werchief Guards (27) fire on Achenar Elites (1), scoring 97 hits.
Sanguis Astroism Military (23) fire on Achenar Elites (1), scoring 46 hits.
Sanguis Astroism Vanguard (25) fire on Achenar Elites (1), scoring 219 hits.
Arano Gaurds (11) fire on Prickly Pears (7), scoring 280 hits.
Flaming Red Sky Beams (5) fire on Royal Guard (19), scoring 495 hits.
Archers of Kortobel (12) fire on Achenar Elites (1), scoring 262 hits.
Fighters (15) fire on Prickly Pears (7), scoring 362 hits.
Swordfell Missing You (26) fire on Achenar Elites (1), scoring 30 hits.
Sanguis Astroism Defender (22) fire on Achenar Elites (1), scoring 164 hits.
Giselle's Proudest (17) fire on Aurelius Dragons (2), scoring 204 hits.
Starblight Arrows (9) fire on Armsworth 3rd Infantry (13), scoring 592 hits.
Sanguis Astroism Specialist (24) fire on Achenar Elites (1), scoring 185 hits.
Prickly Pears (7) fire on Cobras (14), scoring 778 hits.
Aurelius Dragons (2) fire on Royal Guard (19), scoring 228 hits.
Forest Rangers (16) fire on Starblight Arrows (9), scoring 118 hits.
Cobras (14) fire on Flaming Red Sky Beams (5), scoring 194 hits.
Achenar Elites (1) fire on Fighters (15), scoring 648 hits.
Total ranged hits suffered: Attackers: 2161, Defenders: 2741
Royal Guard (19) leave the fortification, attacking the enemy.
Armsworth 3rd Infantry (13) leave the fortification, attacking the enemy.
Sanguis Astroism Avengers (21) leave the fortification, attacking the enemy.
Sanguis Astroism Avenger's (20) leave the fortification, attacking the enemy.


Flaming Red Sky Beams (5) take 194 hits from archer fire, which cause 6 casualties.
Fighters (15) take 502 hits from archer fire (reduced due to fortifications), which cause 12 casualties, making the unit retreat from the battlefield.
Willow Manor, Duke of Aquil, Senator of Flow has been wounded by Achenar Elites (1).
Starblight Arrows (9) take 118 hits from archer fire, which cause 2 casualties.
Royal Guard (19) take 723 hits from archer fire, which cause 14 casualties.
Hari Seldon, Lord Regent of Swordfell, Royal of Swordfell has been wounded by Aurelius Dragons (2).
Armsworth 3rd Infantry (13) take 592 hits from archer fire, which cause 11 casualties.
Prickly Pears (7) take 642 hits from archer fire, which cause 13 casualties.
Aurelius Dragons (2) take 204 hits from archer fire, which cause 6 casualties.
Cobras (14) take 603 hits from archer fire (reduced due to fortifications), which cause 13 casualties.
Achenar Elites (1) take 1003 hits from archer fire, which cause 21 casualties.
Total hits suffered: Attackers: 2161 (0 from close combat and 2161 from ranged), Defenders: 2420 (0 from close combat and 2420 from ranged)
Total casualties: 48 attackers, 50 defenders

Turn No. 5

    1 (84-S)
2 (95-M)
5 (58-A)
7 (108-A)
9 (64-A)
  13 (42-I)
19 (116-I)
20 (42-I)
21 (38-I)
11 (70-M)
12 (48-A)
14 (19-M)
16 (10-A)
27 (42-A)
17 (72-A)
22 (65-A)
23 (20-A)
24 (58-A)
25 (63-A)
26 (10-A)
   

Sanguis Astroism Vanguard (25) fire on Achenar Elites (1), scoring 178 hits.
Arano Gaurds (11) fire on Prickly Pears (7), scoring 299 hits.
Werchief Guards (27) fire on Achenar Elites (1), scoring 106 hits.
Archers of Kortobel (12) fire on Achenar Elites (1), scoring 353 hits.
Swordfell Missing You (26) fire on Prickly Pears (7), scoring 28 hits.
Aurelius Dragons (2) fire on Royal Guard (19), scoring 477 hits.
Prickly Pears (7) fire on Armsworth 3rd Infantry (13), scoring 2107 hits.
Achenar Elites (1) fire on Royal Guard (19), scoring 1807 hits.
Giselle's Proudest (17) fire on Starblight Arrows (9), scoring 124 hits.
Cobras (14) fire on Flaming Red Sky Beams (5), scoring 190 hits.
Sanguis Astroism Specialist (24) fire on Starblight Arrows (9), scoring 190 hits.
Forest Rangers (16) fire on Aurelius Dragons (2), scoring 116 hits.
Starblight Arrows (9) fire on Sanguis Astroism Avenger's (20), scoring 443 hits.
Sanguis Astroism Defender (22) fire on Flaming Red Sky Beams (5), scoring 87 hits.
Sanguis Astroism Military (23) fire on Aurelius Dragons (2), scoring 53 hits.
Flaming Red Sky Beams (5) fire on Sanguis Astroism Avengers (21), scoring 509 hits.
Total ranged hits suffered: Attackers: 1724, Defenders: 5343


Sanguis Astroism Avenger's (20) take 443 hits from archer fire, which cause 8 casualties.
Armsworth 3rd Infantry (13) take 2107 hits from archer fire, which cause 38 casualties, making the unit retreat from the battlefield. 5 Swordfell banners fall.
Augustus Armsworth, Senator of Fatexna has been wounded by Prickly Pears (7).
Aurelius Dragons (2) take 169 hits from archer fire, which cause 5 casualties.
Prickly Pears (7) take 327 hits from archer fire, which cause 7 casualties.
Royal Guard (19) take 2284 hits from archer fire, which cause 45 casualties.
Achenar Elites (1) take 637 hits from archer fire, which cause 12 casualties, causing panicked flight among the survivors.
Sanguis Astroism Avengers (21) take 509 hits from archer fire, which cause 9 casualties.
Starblight Arrows (9) take 314 hits from archer fire, which cause 7 casualties, making the unit retreat from the battlefield.
Flaming Red Sky Beams (5) take 277 hits from archer fire, which cause 8 casualties.
Total hits suffered: Attackers: 1724 (0 from close combat and 1724 from ranged), Defenders: 5343 (0 from close combat and 5343 from ranged)
Total casualties: 39 attackers, 100 defenders

Turn No. 6

    2 (90-M)
5 (50-A)
7 (101-A)
19 (71-I)
20 (34-I)
21 (29-I)
  11 (70-M)
12 (48-A)
14 (19-M)
16 (10-A)
27 (42-A)
17 (72-A)
22 (65-A)
23 (20-A)
24 (58-A)
25 (63-A)
26 (10-A)
   

Aurelius Dragons (2) fire on Royal Guard (19), scoring 491 hits.
Giselle's Proudest (17) fire on Prickly Pears (7), scoring 170 hits.
Sanguis Astroism Vanguard (25) fire on Prickly Pears (7), scoring 148 hits.
Flaming Red Sky Beams (5) fire on Sanguis Astroism Avenger's (20), scoring 396 hits.
Werchief Guards (27) fire on Prickly Pears (7), scoring 69 hits.
Sanguis Astroism Specialist (24) fire on Prickly Pears (7), scoring 165 hits.
Archers of Kortobel (12) fire on Aurelius Dragons (2), scoring 206 hits.
Arano Gaurds (11) fire on Prickly Pears (7), scoring 173 hits.
Sanguis Astroism Military (23) fire on Flaming Red Sky Beams (5), scoring 42 hits.
Forest Rangers (16) fire on Flaming Red Sky Beams (5), scoring 116 hits.
Swordfell Missing You (26) fire on Prickly Pears (7), scoring 51 hits.
Prickly Pears (7) fire on Sanguis Astroism Avengers (21), scoring 1481 hits.
Sanguis Astroism Defender (22) fire on Aurelius Dragons (2), scoring 137 hits.
Cobras (14) fire on Flaming Red Sky Beams (5), scoring 112 hits.
Total ranged hits suffered: Attackers: 1389, Defenders: 2368


Close Combat (Attacker Line 2):
2 Astrum banners are visible in the melee.
5 Swordfell banners are visible in the melee.
Aurelius Dragons (2) score 275 hits on Royal Guard (19).
Flaming Red Sky Beams (5) score 122 hits on Sanguis Astroism Avengers (21).
Sanguis Astroism Avenger's (20) score 305 hits on Prickly Pears (7).
Royal Guard (19) score 1048 hits on Aurelius Dragons (2).
Prickly Pears (7) score 195 hits on Sanguis Astroism Avenger's (20).
Sanguis Astroism Avengers (21) score 228 hits on Flaming Red Sky Beams (5).
Total close combat hits suffered: Attackers: 1581, Defenders: 592

Aurelius Dragons (2) take 1391 hits (1048 in close combat, 343 from archer fire), which cause 40 casualties, making the unit retreat from the battlefield.
Flaming Red Sky Beams (5) take 498 hits (228 in close combat, 270 from archer fire), which cause 14 casualties.
Sanguis Astroism Avenger's (20) take 591 hits (195 in close combat, 396 from archer fire), which cause 11 casualties.
Royal Guard (19) take 766 hits (275 in close combat, 491 from archer fire), which cause 15 casualties, making the unit retreat from the battlefield.
Prickly Pears (7) take 1081 hits (305 in close combat, 776 from archer fire), which cause 22 casualties, making the unit retreat from the battlefield.
Sanguis Astroism Avengers (21) take 1603 hits (122 in close combat, 1481 from archer fire), which cause 29 casualties, wiping the unit out.
Total hits suffered: Attackers: 2970 (1581 from close combat and 1389 from ranged), Defenders: 2960 (592 from close combat and 2368 from ranged)
Total casualties: 76 attackers, 55 defenders

Turn No. 7

    5 (36-A)
20 (23-I)
   11 (70-M)
12 (48-A)
14 (19-M)
16 (10-A)
27 (42-A)
17 (72-A)
22 (65-A)
23 (20-A)
24 (58-A)
25 (63-A)
26 (10-A)
   

Werchief Guards (27) have no enemy in range and hold their fire.
Sanguis Astroism Vanguard (25) have no enemy in range and hold their fire.
Sanguis Astroism Specialist (24) have no enemy in range and hold their fire.
Cobras (14) have no enemy in range and hold their fire.
Sanguis Astroism Military (23) have no enemy in range and hold their fire.
Forest Rangers (16) have no enemy in range and hold their fire.
Giselle's Proudest (17) have no enemy in range and hold their fire.
Swordfell Missing You (26) have no enemy in range and hold their fire.
Archers of Kortobel (12) have no enemy in range and hold their fire.
Arano Gaurds (11) have no enemy in range and hold their fire.
Sanguis Astroism Defender (22) have no enemy in range and hold their fire.


Close Combat (Attacker Line 2):
Flaming Red Sky Beams (5) score 126 hits on Sanguis Astroism Avenger's (20).
Sanguis Astroism Avenger's (20) score 164 hits on Flaming Red Sky Beams (5).
Total close combat hits suffered: Attackers: 164, Defenders: 126

The attackers are vastly outnumbered, and panic spreads throughout their ranks.

Flaming Red Sky Beams (5) take 164 hits in close combat, which cause 5 casualties.
Sanguis Astroism Avenger's (20) take 126 hits in close combat, which cause 2 casualties.
Total hits suffered: Attackers: 164 (164 from close combat and 0 from ranged), Defenders: 126 (126 from close combat and 0 from ranged)
Total casualties: 5 attackers, 2 defenders

Turn No. 8

    5 (31-A)
20 (21-I)
   11 (70-M)
12 (48-A)
14 (19-M)
16 (10-A)
27 (42-A)
17 (72-A)
22 (65-A)
23 (20-A)
24 (58-A)
25 (63-A)
26 (10-A)
   

Arano Gaurds (11) have no enemy in range and hold their fire.
Cobras (14) have no enemy in range and hold their fire.
Sanguis Astroism Military (23) move closer to get better shots.
Forest Rangers (16) have no enemy in range and hold their fire.
Sanguis Astroism Specialist (24) move closer to get better shots.
Werchief Guards (27) have no enemy in range and hold their fire.
Archers of Kortobel (12) have no enemy in range and hold their fire.
Giselle's Proudest (17) move closer to get better shots.
Swordfell Missing You (26) move closer to get better shots.
Sanguis Astroism Defender (22) move closer to get better shots.
Sanguis Astroism Vanguard (25) move closer to get better shots.


Close Combat (Attacker Line 2):
Flaming Red Sky Beams (5) score 90 hits on Sanguis Astroism Avenger's (20).
Sanguis Astroism Avenger's (20) score 161 hits on Flaming Red Sky Beams (5).
Total close combat hits suffered: Attackers: 161, Defenders: 90

The attackers are vastly outnumbered, and panic spreads throughout their ranks.

Flaming Red Sky Beams (5) take 161 hits in close combat, which cause 5 casualties, making the unit retreat from the battlefield.
Sanguis Astroism Avenger's (20) take 90 hits in close combat, which cause 2 casualties.
Total hits suffered: Attackers: 161 (161 from close combat and 0 from ranged), Defenders: 90 (90 from close combat and 0 from ranged)
Total casualties: 5 attackers, 2 defenders

Defender Victory!

The battle does extensive damage to the local infrastructure. Production falls 22 %.
The battle does 14 % damage to the fortifications.
<script type="text/javascript"> $(document).ready(function() { $("#tabs").tabs(); $("#tabs").tabs("select","military"); }); </script> </body> </html>