Caligus/Battle Reports/Battle in Winkamus 1/24/24

From BattleMaster Wiki
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="/js/jquery.dataTables.js"></script> <script type="text/javascript" src="/js/dataTables.jqueryui.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.chosen.min.js"></script> <script type="text/javascript" src="/common/json2.js"></script> <script type="text/javascript" src="/common/bm.js"></script> <script src="/js/js.cookie.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="/js/jquery-ui.css" /> <link rel="stylesheet" type="text/css" href="/css/dataTables.jqueryui.css"/> <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="/common/chosen.css" /><script type="text/javascript"> $(document).ready(function() {

if ($(".chzn-select").length>0) { $(".chzn-select").chosen({ group_search: false, search_contains: true, include_group_label_in_selected: 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="/play/messages">('+data.unreadCount+')</a>'); } else { $("#navUnreadMessages").html(); } },'json'); } </script> </head> <body>

<style type="text/css">

.UID_21270 { text-decoration: underline; font-weight: bold; color: orange; } </style> <script> BattleMaster.init(21270); </script>


<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 | stable island

Information

Scribe Note, 1 turns old:



Battle in Winkamus
No.RoleArmyUnitCommanderRealmUnitFormationCS
1A 13th LegionAzerCaligus101 MIskirmish  904
2A Chadwick's DefendersChadwickCaligus39 Archskirmish  336
3A E I S E N R I T T E REisenritterCaligus88 MIskirmish  744
4A Great hunters of ....AnastassiaCaligus65 Archskirmish  923
5A GutrippasKoloyokCaligus32 MIskirmish  388
6A LionguardGerardCaligus4 Cavwedge  122
7A Men's Right ActivistsHanneloreCaligus66 Archskirmish  577
8A Morkers MenGorker MorkerCaligus38 Archskirmish  471
9A Mounted TorenGodric TórrarinCaligus81 Cavwedge  1225
10A Swansong ArchersSeanCaligus32 SFskirmish  853
11A The LuminariesLucienCaligus49 Archskirmish  692
12A Witch HuntersFendorCaligus39 MIskirmish  555
13D 303rd ArchersJavPerleone110 Archskirmish  1117
14D Castle Isadril ArchersBarabbasPerleone131 Infline  1329
15D Golden ArchersAnnonPerleone79 Archline  944
16D Lions ArrowsMangusPerleone129 Archline  1292
17D Lions of the SouthLemricPerleone131 Infline  1448
18D People's Liberation ForceKirimanPerleone60 Archskirmish  736
19D Royal GreycloaksMarchussonPerleone65 SFskirmish  1192

Total:
12 attackers (260 MI, 257 Arch, 85 Cav, 32 SF)
7 defenders (262 Inf, 378 Arch, 65 SF)
Total combat strengths: 7790 vs. 8058

Great hunters of .... tried to evade foreign troops, but were spotted.
The forces from Perleone brace as they prepare to defend their ongoing takeover.
The region owner Caligus and their allies attack the takeover forces.
The Caligus troops attack because they are at war with Perleone.

A calm wind blows, to the joy of the archers.

Distributor Mangus McGahee is spotted wearing the Bizarre Helm of the East Continent.
Protector Jav Lin is spotted wielding the Cursed Shield of Truth.
Knight Gorker Morker Flexible is spotted wearing the Helm of Evil.
Knight Lucien de Lune is spotted wearing the Legendary Jacket of Caligus.
Margrave Sean Dixon is spotted wielding the Screaming Hammer of Battle.
Eisenritter Felsenbach, Patriarch of Caligus, Royal of Caligus, Duke of the Lion's Mane, Margrave of Akesh Temple, Marshal of the Wings of Retribution takes command of his army. They deploy in Archer Opening formation.
Jav Lin, Protector of Perleone, Margrave of Isadril, Marshal of the Blazing Swords takes command of his army. They deploy in no particular formation.

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

  6 (4-C)
9 (81-C)
   1 (101-M)
2 (39-A)
3 (88-M)
4 (65-A)
5 (32-M)
7 (66-A)
8 (38-A)
10 (32-S)
11 (49-A)
12 (39-M)
    13 (110-A)
15 (79-A)
16 (129-A)
19 (65-S)
14 (131-I)
17 (131-I)
18 (60-A)
 

People's Liberation Force (18) move closer to get better shots.
Swansong Archers (10) fire on Lions Arrows (16), scoring 402 hits.
E I S E N R I T T E R (3) move closer to get better shots.
Lions Arrows (16) fire on E I S E N R I T T E R (3), scoring 291 hits.
303rd Archers (13) fire on E I S E N R I T T E R (3), scoring 312 hits.
Gutrippas (5) move closer to get better shots.
Great hunters of .... (4) fire on Royal Greycloaks (19), scoring 346 hits.
Morkers Men (8) fire on Golden Archers (15), scoring 132 hits.
Witch Hunters (12) move closer to get better shots.
Golden Archers (15) fire on Witch Hunters (12), scoring 375 hits.
Men's Right Activists (7) fire on People's Liberation Force (18), scoring 156 hits.
Royal Greycloaks (19) fire on Gutrippas (5), scoring 464 hits.
The Luminaries (11) fire on 303rd Archers (13), scoring 138 hits.
Chadwick's Defenders (2) fire on People's Liberation Force (18), scoring 46 hits.
13th Legion (1) move closer to get better shots.
Total ranged hits suffered: Attackers: 1442, Defenders: 1220
Lionguard (6) and Mounted Toren (9) ride on, closing in on the defenders.
Castle Isadril Archers (14) and Lions of the South (17) advance towards the enemy.


People's Liberation Force (18) take 202 hits from archer fire, which cause 6 casualties.
E I S E N R I T T E R (3) take 603 hits from archer fire, which cause 20 casualties.
Lions Arrows (16) take 402 hits from archer fire, which cause 14 casualties.
303rd Archers (13) take 125 hits from archer fire (reduced due to fortifications), which cause 5 casualties.
Gutrippas (5) take 464 hits from archer fire, which cause 24 casualties.
Witch Hunters (12) take 375 hits from archer fire, which cause 10 casualties.
Golden Archers (15) take 132 hits from archer fire, which cause 4 casualties.
Royal Greycloaks (19) take 346 hits from archer fire, which cause 11 casualties.
Total hits suffered: Attackers: 1442 (0 from close combat and 1442 from ranged), Defenders: 1207 (0 from close combat and 1207 from ranged)
Total casualties: 54 attackers, 40 defenders

Turn No. 2

    6 (4-C)
9 (81-C)
2 (39-A)
4 (65-A)
7 (66-A)
8 (38-A)
10 (32-S)
11 (49-A)
1 (101-M)
3 (68-M)
5 (8-M)
12 (29-M)
   13 (105-A)
14 (131-I)
15 (75-A)
16 (115-A)
17 (131-I)
18 (54-A)
19 (54-S)
  

Witch Hunters (12) fire on Lions of the South (17), scoring 135 hits.
Golden Archers (15) fire on 13th Legion (1), scoring 232 hits.
The Luminaries (11) fire on Castle Isadril Archers (14), scoring 224 hits.
Men's Right Activists (7) fire on Lions Arrows (16), scoring 215 hits.
Gutrippas (5) move closer to get better shots.
Morkers Men (8) fire on Lions of the South (17), scoring 187 hits.
E I S E N R I T T E R (3) fire on 303rd Archers (13), scoring 85 hits.
Lions Arrows (16) fire on Gutrippas (5), scoring 754 hits.
Great hunters of .... (4) fire on Royal Greycloaks (19), scoring 246 hits.
13th Legion (1) fire on Castle Isadril Archers (14), scoring 284 hits.
Chadwick's Defenders (2) fire on 303rd Archers (13), scoring 59 hits.
Royal Greycloaks (19) fire on Gutrippas (5), scoring 759 hits.
303rd Archers (13) fire on Gutrippas (5), scoring 272 hits.
People's Liberation Force (18) fire on Gutrippas (5), scoring 323 hits.
Swansong Archers (10) fire on Lions of the South (17), scoring 174 hits.
Total ranged hits suffered: Attackers: 2340, Defenders: 1609
Mounted Toren (9) and Lionguard (6) ride on, closing in on the defenders.
Lions of the South (17) and Castle Isadril Archers (14) advance towards the enemy.


Lions of the South (17) take 496 hits from archer fire, which cause 11 casualties.
Gutrippas (5) take 2108 hits from archer fire, which cause 8 casualties, wiping the unit out.
Koloyok Sethar, Count of Winkamus has been wounded by People's Liberation Force (18).
Lions Arrows (16) take 215 hits from archer fire, which cause 8 casualties.
13th Legion (1) take 232 hits from archer fire, which cause 10 casualties.
Royal Greycloaks (19) take 246 hits from archer fire, which cause 8 casualties.
303rd Archers (13) take 131 hits from archer fire (reduced due to fortifications), which cause 5 casualties.
Castle Isadril Archers (14) take 508 hits from archer fire, which cause 13 casualties.
Total hits suffered: Attackers: 2340 (0 from close combat and 2340 from ranged), Defenders: 1596 (0 from close combat and 1596 from ranged)
Total casualties: 18 attackers, 45 defenders

Turn No. 3

     2 (39-A)
4 (65-A)
7 (66-A)
8 (38-A)
10 (32-S)
11 (49-A)
1 (91-M)
3 (68-M)
6 (4-C)
9 (81-C)
12 (29-M)
  14 (118-I)
17 (120-I)
13 (100-A)
15 (75-A)
16 (107-A)
18 (54-A)
19 (46-S)
  

Men's Right Activists (7) fire on Lions of the South (17), scoring 171 hits.
People's Liberation Force (18) fire on Mounted Toren (9), scoring 229 hits.
Swansong Archers (10) fire on Castle Isadril Archers (14), scoring 338 hits.
The Luminaries (11) fire on Lions of the South (17), scoring 335 hits.
E I S E N R I T T E R (3) fire on Castle Isadril Archers (14), scoring 342 hits.
Witch Hunters (12) fire on Lions of the South (17), scoring 238 hits.
Lions Arrows (16) fire on 13th Legion (1), scoring 337 hits.
Great hunters of .... (4) fire on Castle Isadril Archers (14), scoring 602 hits.
Morkers Men (8) fire on Lions of the South (17), scoring 181 hits.
13th Legion (1) fire on Lions of the South (17), scoring 522 hits.
Royal Greycloaks (19) fire on Mounted Toren (9), scoring 231 hits.
Chadwick's Defenders (2) fire on Castle Isadril Archers (14), scoring 177 hits.
Golden Archers (15) fire on Mounted Toren (9), scoring 203 hits.
303rd Archers (13) fire on E I S E N R I T T E R (3), scoring 231 hits.
Total ranged hits suffered: Attackers: 1231, Defenders: 2906
Lionguard (6) and Mounted Toren (9) charge ahead, into the defenders' ranks.


Close Combat (Defender Line 2):
20 Perleone banners are visible in the melee.
Castle Isadril Archers (14) score 149 hits on Lionguard (6) (849 before overkill).
Lionguard (6) score 265 hits on Castle Isadril Archers (14).
Lions of the South (17) score 1239 hits on Mounted Toren (9).
Mounted Toren (9) score 3107 hits on Lions of the South (17).
Total close combat hits suffered: Attackers: 1388 (2088 before overkill), Defenders: 3372

Castle Isadril Archers (14) take 1724 hits (265 in close combat, 1459 from archer fire), which cause 44 casualties, making the unit retreat from the battlefield.
Lionguard (6) take 149 hits in close combat, which cause 3 casualties, causing panicked flight among the survivors.
Lions of the South (17) take 4554 hits (3107 in close combat, 1447 from archer fire), which cause 105 casualties, making the unit retreat from the battlefield.
Lemric Rundsted, King of Perleone, Royal of Perleone has been wounded by Mounted Toren (9).
E I S E N R I T T E R (3) take 231 hits from archer fire, which cause 8 casualties.
13th Legion (1) take 337 hits from archer fire, which cause 15 casualties.
Mounted Toren (9) take 1902 hits (1239 in close combat, 663 from archer fire), which cause 55 casualties, making the unit retreat from the battlefield.
Godric Tórrarin ka Habb, Margrave of Fontan has been wounded by Lions of the South (17).
Total hits suffered: Attackers: 2619 (1388 from close combat and 1231 from ranged), Defenders: 6278 (3372 from close combat and 2906 from ranged)
Total casualties: 81 attackers, 149 defenders

Turn No. 4

     2 (39-A)
4 (65-A)
7 (66-A)
8 (38-A)
10 (32-S)
11 (49-A)
1 (76-M)
3 (60-M)
12 (29-M)
   13 (100-A)
15 (75-A)
16 (107-A)
18 (54-A)
19 (46-S)
  

Golden Archers (15) fire on 13th Legion (1), scoring 304 hits.
13th Legion (1) fire on Lions Arrows (16), scoring 196 hits.
Royal Greycloaks (19) fire on E I S E N R I T T E R (3), scoring 372 hits.
E I S E N R I T T E R (3) fire on 303rd Archers (13), scoring 134 hits.
The Luminaries (11) fire on 303rd Archers (13), scoring 190 hits.
People's Liberation Force (18) fire on Witch Hunters (12), scoring 193 hits.
Great hunters of .... (4) fire on Lions Arrows (16), scoring 400 hits.
Swansong Archers (10) fire on Royal Greycloaks (19), scoring 155 hits.
303rd Archers (13) fire on Witch Hunters (12), scoring 358 hits.
Chadwick's Defenders (2) fire on Golden Archers (15), scoring 104 hits.
Men's Right Activists (7) fire on People's Liberation Force (18), scoring 150 hits.
Witch Hunters (12) fire on Golden Archers (15), scoring 184 hits.
Morkers Men (8) fire on Royal Greycloaks (19), scoring 79 hits.
Lions Arrows (16) fire on 13th Legion (1), scoring 441 hits.
Total ranged hits suffered: Attackers: 1668, Defenders: 1592


Golden Archers (15) take 288 hits from archer fire, which cause 9 casualties.
13th Legion (1) take 745 hits from archer fire, which cause 33 casualties, making the unit retreat from the battlefield.
Royal Greycloaks (19) take 234 hits from archer fire, which cause 7 casualties.
E I S E N R I T T E R (3) take 372 hits from archer fire, which cause 12 casualties, making the unit retreat from the battlefield.
People's Liberation Force (18) take 150 hits from archer fire, which cause 5 casualties.
303rd Archers (13) take 295 hits from archer fire (reduced due to fortifications), which cause 12 casualties.
Witch Hunters (12) take 551 hits from archer fire, which cause 15 casualties, causing panicked flight among the survivors.
Lions Arrows (16) take 596 hits from archer fire, which cause 21 casualties, making the unit retreat from the battlefield.
Total hits suffered: Attackers: 1668 (0 from close combat and 1668 from ranged), Defenders: 1563 (0 from close combat and 1563 from ranged)
Total casualties: 60 attackers, 54 defenders

Turn No. 5

     2 (39-A)
4 (65-A)
7 (66-A)
8 (38-A)
10 (32-S)
11 (49-A)
    13 (88-A)
15 (66-A)
18 (49-A)
19 (39-S)
  

Morkers Men (8) fire on 303rd Archers (13), scoring 169 hits.
People's Liberation Force (18) fire on Great hunters of .... (4), scoring 143 hits.
303rd Archers (13) fire on Swansong Archers (10), scoring 148 hits.
The Luminaries (11) fire on Royal Greycloaks (19), scoring 235 hits.
Chadwick's Defenders (2) fire on Golden Archers (15), scoring 127 hits.
Swansong Archers (10) fire on Golden Archers (15), scoring 166 hits.
Golden Archers (15) fire on Great hunters of .... (4), scoring 236 hits.
Great hunters of .... (4) fire on Royal Greycloaks (19), scoring 255 hits.
Men's Right Activists (7) fire on People's Liberation Force (18), scoring 92 hits.
Royal Greycloaks (19) fire on The Luminaries (11), scoring 288 hits.
Total ranged hits suffered: Attackers: 815, Defenders: 1044


People's Liberation Force (18) take 92 hits from archer fire, which cause 3 casualties.
303rd Archers (13) take 154 hits from archer fire (reduced due to fortifications), which cause 6 casualties.
The Luminaries (11) take 288 hits from archer fire, which cause 10 casualties.
Swansong Archers (10) take 148 hits from archer fire, which cause 4 casualties.
Golden Archers (15) take 293 hits from archer fire, which cause 9 casualties.
Great hunters of .... (4) take 379 hits from archer fire, which cause 11 casualties.
Royal Greycloaks (19) take 490 hits from archer fire, which cause 17 casualties.
Total hits suffered: Attackers: 815 (0 from close combat and 815 from ranged), Defenders: 1029 (0 from close combat and 1029 from ranged)
Total casualties: 25 attackers, 35 defenders

Turn No. 6

     2 (39-A)
4 (54-A)
7 (66-A)
8 (38-A)
10 (28-S)
11 (39-A)
    13 (82-A)
15 (57-A)
18 (46-A)
19 (22-S)
  

Morkers Men (8) fire on 303rd Archers (13), scoring 159 hits.
Men's Right Activists (7) fire on Golden Archers (15), scoring 199 hits.
People's Liberation Force (18) fire on Great hunters of .... (4), scoring 188 hits.
303rd Archers (13) fire on Swansong Archers (10), scoring 234 hits.
Golden Archers (15) fire on The Luminaries (11), scoring 127 hits.
Royal Greycloaks (19) fire on Great hunters of .... (4), scoring 85 hits.
Great hunters of .... (4) fire on Royal Greycloaks (19), scoring 265 hits.
Chadwick's Defenders (2) fire on People's Liberation Force (18), scoring 93 hits.
The Luminaries (11) fire on 303rd Archers (13), scoring 142 hits.
Swansong Archers (10) fire on People's Liberation Force (18), scoring 272 hits.
Total ranged hits suffered: Attackers: 634, Defenders: 1130


People's Liberation Force (18) take 365 hits from archer fire, which cause 12 casualties, making the unit retreat from the battlefield.
303rd Archers (13) take 274 hits from archer fire (reduced due to fortifications), which cause 11 casualties.
Golden Archers (15) take 199 hits from archer fire, which cause 6 casualties, making the unit retreat from the battlefield.
Royal Greycloaks (19) take 265 hits from archer fire, which cause 8 casualties.
Great hunters of .... (4) take 273 hits from archer fire, which cause 8 casualties.
The Luminaries (11) take 127 hits from archer fire, which cause 4 casualties.
Swansong Archers (10) take 234 hits from archer fire, which cause 6 casualties, causing panicked flight among the survivors, 1 additional men get slaughtered during the retreat.
Total hits suffered: Attackers: 634 (0 from close combat and 634 from ranged), Defenders: 1103 (0 from close combat and 1103 from ranged)
Total casualties: 19 attackers, 37 defenders

Turn No. 7

     2 (39-A)
4 (46-A)
7 (66-A)
8 (38-A)
11 (35-A)
    13 (71-A)
19 (14-S)
  

Royal Greycloaks (19) fire on Great hunters of .... (4), scoring 119 hits.
Great hunters of .... (4) fire on 303rd Archers (13), scoring 148 hits.
Chadwick's Defenders (2) fire on 303rd Archers (13), scoring 89 hits.
Morkers Men (8) fire on 303rd Archers (13), scoring 159 hits.
303rd Archers (13) fire on Men's Right Activists (7), scoring 152 hits.
Men's Right Activists (7) fire on Royal Greycloaks (19), scoring 117 hits.
The Luminaries (11) fire on Royal Greycloaks (19), scoring 169 hits.
Total ranged hits suffered: Attackers: 271, Defenders: 682

With no infantry cover left, Chadwick's Defenders (2) panic and retreat.

Royal Greycloaks (19) take 286 hits from archer fire, which cause 10 casualties, making the unit retreat from the battlefield.
Great hunters of .... (4) take 119 hits from archer fire, which cause 3 casualties, making the unit retreat from the battlefield.
Chadwick's Defenders (2) are shocked, making the unit retreat from the battlefield.
303rd Archers (13) take 360 hits from archer fire (reduced due to fortifications), which cause 14 casualties.
Men's Right Activists (7) take 152 hits from archer fire, which cause 8 casualties.
Total hits suffered: Attackers: 271 (0 from close combat and 271 from ranged), Defenders: 646 (0 from close combat and 646 from ranged)
Total casualties: 11 attackers, 24 defenders

Turn No. 8

     7 (58-A)
8 (38-A)
11 (35-A)
    13 (57-A)
  

The Luminaries (11) fire on 303rd Archers (13), scoring 144 hits.
303rd Archers (13) fire on Men's Right Activists (7), scoring 127 hits.
Morkers Men (8) fire on 303rd Archers (13), scoring 169 hits.
Men's Right Activists (7) fire on 303rd Archers (13), scoring 139 hits.
Total ranged hits suffered: Attackers: 127, Defenders: 452


303rd Archers (13) take 411 hits from archer fire (reduced due to fortifications), which cause 16 casualties.
Men's Right Activists (7) take 127 hits from archer fire, which cause 7 casualties.
Total hits suffered: Attackers: 127 (0 from close combat and 127 from ranged), Defenders: 411 (0 from close combat and 411 from ranged)
Total casualties: 7 attackers, 16 defenders

Turn No. 9

     7 (51-A)
8 (38-A)
11 (35-A)
    13 (41-A)
  

303rd Archers (13) fire on The Luminaries (11), scoring 58 hits.
Men's Right Activists (7) fire on 303rd Archers (13), scoring 114 hits.
The Luminaries (11) fire on 303rd Archers (13), scoring 136 hits.
Morkers Men (8) fire on 303rd Archers (13), scoring 158 hits.
Total ranged hits suffered: Attackers: 58, Defenders: 408


303rd Archers (13) take 371 hits from archer fire (reduced due to fortifications), which cause 15 casualties.
The Luminaries (11) take 58 hits from archer fire, which cause 2 casualties, making the unit retreat from the battlefield.
Total hits suffered: Attackers: 58 (0 from close combat and 58 from ranged), Defenders: 371 (0 from close combat and 371 from ranged)
Total casualties: 2 attackers, 15 defenders

Turn No. 10

     7 (51-A)
8 (38-A)
    13 (26-A)
  

303rd Archers (13) fire on Morkers Men (8), scoring 67 hits.
Men's Right Activists (7) fire on 303rd Archers (13), scoring 81 hits.
Morkers Men (8) fire on 303rd Archers (13), scoring 103 hits.
Total ranged hits suffered: Attackers: 67, Defenders: 184


303rd Archers (13) take 167 hits from archer fire (reduced due to fortifications), which cause 7 casualties, making the unit retreat from the battlefield.
Morkers Men (8) take 67 hits from archer fire, which cause 2 casualties.
Total hits suffered: Attackers: 67 (0 from close combat and 67 from ranged), Defenders: 167 (0 from close combat and 167 from ranged)
Total casualties: 2 attackers, 7 defenders

Attacker Victory!

The battle does some damage to the local infrastructure. Production falls 16 %.
The local roads network has also been damaged.
<script type="text/javascript"> $(document).ready(function() { $("#tabs").tabs(); $("#tabs").tabs("select","military"); }); </script> </body> </html>