diff --git a/manual/index.html b/manual/index.html index 7c1191d..4ac927e 100644 --- a/manual/index.html +++ b/manual/index.html @@ -1,27 +1,15 @@ Blob Wars : Attrition - Gameplay Manual - +

-
-Gameplay Manual
+
+Gameplay Manual

Last updated: 2nd April 2018

@@ -57,6 +45,7 @@ Blob Wars : Attrition supports both keyboard and joypad controls. A joypad must

The game's default controls are listed below. These can all be changed by going to the Options screen and selecting "Controls ...". See the Options section of this manual for more information.

+

@@ -83,7 +72,7 @@ Most missions in the game feature multiple objectives which are listed at the st
3
4
5
- +
  1. Health, Power, Oxygen, and Weapon
  2. Inventory
  3. @@ -95,7 +84,7 @@ Most missions in the game feature multiple objectives which are listed at the st

    Bob starts the game with 10 health points, which are depleted as he takes damage. When Bob's health is reduced to 0, he is killed and the mission is failed. Picking up cherries will help to regain health (see further below for more information). Bob also has a power level, that is used by both the aqua lung and jetpack. This can be replenished by picking up batteries (see further below for more information). It also naturally regenerates over time.

    - +

    Pressing Escape anytime during gameplay will bring up a menu, allowing you to access options, stats, trophy information, and to also quit the mission.

    @@ -162,7 +151,7 @@ Teeka is a buddy of Bob's who sometimes accompanied him on missions. He can some

    Title Screen

    -

    +

    The title screen offers a range of options.

      @@ -184,7 +173,7 @@ The title screen offers a range of options.
      2
      3
      4
      - +
      1. Progress statistics
      2. An incomplete mission
      3. @@ -200,7 +189,7 @@ The title screen offers a range of options.
        2
        3
        4
        - +
        1. Mission name
        2. Mission description
        3. @@ -223,7 +212,7 @@ At any time during gameplay, pressing Pause will display the mission's current o
          2
          3
          4
          - +
          1. A completed objective
          2. An incomplete (required) objective
          3. @@ -240,7 +229,7 @@ Pressing the Radar key (Tab by default) during a mission will bring up the radar
            1
            2
            3
            - +
            1. Radar map area
            2. Blip directional arrows
            3. @@ -262,7 +251,7 @@ The options screen can be access at most times during the game. It allow you to

              - +

              • Fullscreen: activate the fullscreen mode for the game. Note that you must exit and restart the game in order for this change to take effect.
              • Window Size: select the window size of the game. Change this if things appear too big or too small. Note that you must exit and restart the game in order for this change to take effect.
              • @@ -277,7 +266,7 @@ The options screen can be access at most times during the game. It allow you to

                - +

                To change a control, highlight the relevant options and press Return or Space, then press the keyboard control or joypad button of your choosing. Pressing backspace will clear a control setting. Note that menus can always be navigated by using the arrow keys, and by pressing Return or Space. @@ -316,30 +305,7 @@ Blob Wars : Attrition is a port of the Android game of the same name. It is the - - + diff --git a/manual/style.css b/manual/style.css new file mode 100644 index 0000000..ed024f9 --- /dev/null +++ b/manual/style.css @@ -0,0 +1,11 @@ +body {font-family: sans; font-size: 14px; background: #111; color: #fff; line-height: 24px;} +h3 {margin-top: 50px; background-color: #234; padding: 5px;} +h4 {background-color: #345; padding: 5px;} +a {color: #0af; text-decoration: none;} +a:hover {color: #0af; text-decoration: underline;} +table {border-collapse: collapse;} +table, th, td {border: 1px solid white; padding: 8px;} +span.highlight {color: #fb0; font-weight: bold;} +img.screenshot {width: 800px; padding: 2px; border: 1px solid #ccc; margin-left: auto; margin-right: auto; display: block;} +div.annotation {font-size: 12px; position: absolute; background-color: #08f; color: #fff; padding: 5px; font-weight: bold; border: 1px #fff solid; text-align: center} +div.annotationContainer {position: relative; width: 800px; display: block; margin-left: auto; margin-right: auto;} diff --git a/manual/toc.js b/manual/toc.js new file mode 100644 index 0000000..29cac8b --- /dev/null +++ b/manual/toc.js @@ -0,0 +1,22 @@ +$(document).ready(function() { + var toc = $('#toc'); + var i = 1; + + $('h3,h4').each(function(i, e) { + + var link = 'link' + i; + var a = $('').attr('href', '#' + link).append(e.innerText); + + $(e).before($('').attr('name', link)); + + if (e.tagName == 'H3') + { + toc.append("▪ " + e.innerText + "
                "); + } + + if (e.tagName == 'H4') + { + toc.append("" + e.innerText + "
                "); + } + }); +});

UpW
DownS