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

From BattleMaster Wiki
< Luria Nova‎ | Events‎ | The Zuma
Revision as of 19:24, 9 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, fresh this turn:



Battle in Shinnen Purlieus
No.RoleArmyUnitCommanderRealmUnitFormationCS
1A Drakish Assemblage(not present)Zuma Coalition15 otherbox  1862
2D 9th LegionJohn JrLuria Nova64 Archskirmish  874
3D Blades of ConquestBaelricLuria Nova164 Infskirmish  2045
4D BureaucratsThéodenLuria Nova36 Archskirmish  611
5D Deaths DealersRavenloftLuria Nova162 MIskirmish  1680
6D EmberbornBruceLuria Nova208 Infline  1569
7D Fontanese FreebootersCiarghualaLuria Nova103 SFskirmish  2319
8D Gotz RangersKennethLuria Nova165 Archskirmish  1906
9D Horn of CalamityWassgandrLuria Nova77 Cavwedge  1461
10D Lovette's ArmyLovetteLuria Nova21 Archbox  363
11D o'maxim GuardsLexisLuria Nova66 Infline  922
12D The BlackguardDamienLuria Nova68 SFskirmish  1760
13D The Crimson CrusadersEliasLuria Nova38 SFskirmish  1075
14D The Faithful WallDurkLuria Nova196 Infwedge  2318
15D The FalconsFulcoLuria Nova104 SFskirmish  2366
16D The Hellfire HordeOskarLuria Nova63 SFskirmish  1658

Total:
1 attackers (15 other)
15 defenders (634 Inf, 162 MI, 286 Arch, 77 Cav, 376 SF)
Total combat strengths: 1862 vs. 22927

Drakish Assemblage tried to evade foreign troops, but were spotted.
The troops from Luria Nova set up defenses because they control the battlefield.
Daimons attack humanity!

There is almost no wind today, archers will be deadly.

Suzerain Emperor Bruce Wilde is spotted reading from the Ducal Compendium.
Imperial Marshal Wassgandr Felsenbach is spotted wearing the Rusty Suit of McKay.
Margrave Théoden Doesire is spotted wearing the Cruel Ring.
Royal Ciarghuala Dubhaine is spotted wearing the Princely Ring.
Royal Ciarghuala Dubhaine is spotted wielding the Dazzling Guard.
Thanks to the unique item(s), the defender fight with full morale.

Wassgandr Felsenbach, Imperial Marshal of Luria Nova, Knight of Poryatown, Marshal of the Novan Wrath 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

  1 (15-D)
     2 (64-A)
4 (36-A)
5 (162-M)
7 (103-S)
8 (165-A)
11 (66-I)
12 (68-S)
13 (38-S)
14 (196-I)
16 (63-S)
6 (208-I)
3 (164-I)
10 (21-A)
15 (104-S)
9 (77-C)
 

Gotz Rangers (8) move closer to get better shots.
The Crimson Crusaders (13) fire on Drakish Assemblage (1), scoring 304 hits.
9th Legion (2) move closer to get better shots.
The Falcons (15) move closer to get better shots.
Deaths Dealers (5) move closer to get better shots.
Bureaucrats (4) move closer to get better shots.
Drakish Assemblage (1) fire on Gotz Rangers (8), scoring 324 hits.
Fontanese Freebooters (7) fire on Drakish Assemblage (1), scoring 1049 hits.
Lovette's Army (10) move closer to get better shots.
The Hellfire Horde (16) fire on Drakish Assemblage (1), scoring 398 hits.
The Blackguard (12) fire on Drakish Assemblage (1), scoring 351 hits.
Total ranged hits suffered: Attackers: 2102, Defenders: 324
Horn of Calamity (9) ride on, closing in on the enemy.
o'maxim Guards (11), The Faithful Wall (14), Emberborn (6) and Blades of Conquest (3) advance towards the enemy.


Gotz Rangers (8) take 324 hits from archer fire, which cause 7 casualties.
Drakish Assemblage (1) take 2102 hits from archer fire, which cause 10 casualties.
Total hits suffered: Attackers: 2102 (0 from close combat and 2102 from ranged), Defenders: 324 (0 from close combat and 324 from ranged)
Total casualties: 10 attackers, 7 defenders

Turn No. 2

  1 (5-D)
    2 (64-A)
4 (36-A)
5 (162-M)
8 (158-A)
11 (66-I)
14 (196-I)
6 (208-I)
7 (103-S)
12 (68-S)
13 (38-S)
16 (63-S)
3 (164-I)
9 (77-C)
10 (21-A)
15 (104-S)
   

Fontanese Freebooters (7) fire on Drakish Assemblage (1), scoring 859 hits.
The Falcons (15) move closer to get better shots.
The Blackguard (12) fire on Drakish Assemblage (1), scoring 656 hits.
The Crimson Crusaders (13) fire on Drakish Assemblage (1), scoring 236 hits.
Lovette's Army (10) move closer to get better shots.
Bureaucrats (4) fire on Drakish Assemblage (1), scoring 304 hits.
Drakish Assemblage (1) fire on The Faithful Wall (14), scoring 110 hits.
Deaths Dealers (5) move closer to get better shots.
The Hellfire Horde (16) fire on Drakish Assemblage (1), scoring 493 hits.
9th Legion (2) fire on Drakish Assemblage (1), scoring 215 hits.
Gotz Rangers (8) fire on Drakish Assemblage (1), scoring 475 hits.
Total ranged hits suffered: Attackers: 3238, Defenders: 110
Horn of Calamity (9) ride on, closing in on the enemy.
Blades of Conquest (3), The Faithful Wall (14), Emberborn (6) and o'maxim Guards (11) advance towards the enemy.


The Faithful Wall (14) take 110 hits from archer fire, which cause 2 casualties.
Drakish Assemblage (1) take 3238 hits from archer fire, which cause 5 casualties, wiping the unit out.
Total hits suffered: Attackers: 3238 (0 from close combat and 3238 from ranged), Defenders: 110 (0 from close combat and 110 from ranged)
Total casualties: 5 attackers, 2 defenders

Defender Victory!

The battle does minor damage to the local infrastructure. Production falls 6 %.
The locals are grateful for defeating the evil forces plaguing their region.
<script type="text/javascript"> $(document).ready(function() { $("#tabs").tabs(); $("#tabs").tabs("select","military"); }); </script> </body> </html>