How to Add Tiles
----------------

The tiles directory is "modules/Dragon\ Hunt/images/tiles".

Sets of tiles should go in a sub-directory that is logically named.

New tiles must be added to the walk definition file
"modules/Dragon\ Hunt/data/walk_defs.txt"
with the binary value of whether or not this tile can be walked upon.

Item tiles have several requirements:
The pictures must go in the items directory.  They must be named
item_name.png, and have a transparent background.

For example, an item tile called "healing_potion.png" is a "healing potion".
It can be added to a level either through the level editor, or by using the
following code:

pix grass.png
walk 1
if var healing_potion_3 | pass | addpix items/healing_potion.png
Action
if var healing_potion_3 | end | pass
if find "healing potion" a | set healing_potion_3 = 1 | end
delpix items/healing_potion.png


It is also recomended to add the picture to the item definition. Add the line
picture=items/item_name.png to the relevant item definition file in
Module Name/data/items/