Army List Script
by Zak Arntson

I created my own army list page, and wrote some JavaScript to make the Army Lists easier to write. If anyone is interested, feel free to copy it for your own website.

You can find the script in the HTML source at:http://www.harlekin-maus.com/hordes/index.html

To add an Army List, you just enter the following in the HTML:

<script>printArmyList(
'Bufanoids', [
'Hero General', 'Berserking Rider', 1,
'Riders', 'Mounted Giant Toads', 3,
'Shooters', 'Trained Tongue-lashers', 2,
'Spears', 'Poison-bladed Warriors', 4,
'Warband', 'Armed Fanatics', 1
]
);</script>

Where 'Bufanoids' is the name of the army, and each entry consists of the following:
'UNIT TYPE', 'NAME', Number of elements,

The script recognizes the different unit types (case-sensitive), formats it nicely, and calculates the costs for you.

The above example will give you the following display:

Back to The Stronghold