arianne / stendhal

Stendhal is a fun friendly and free multiplayer online adventure game with an old school feel.
https://arianne-project.org
GNU General Public License v2.0
593 stars 200 forks source link

Dynamic Creature Spawning #715

Open AntumDeluge opened 5 months ago

AntumDeluge commented 5 months ago

Adds optional dynamic creature spawning to zones.

Example of adding dynamic spawning to a zone in xml:

<zone name="0_semos_plains_ne" level="0" x="500128" y="499872" file="Level 0/semos/plains_ne.tmx">
    <spawns>
        <creatures>
            <parameter name="bat">10</parameter>
            <parameter name="killer bat">8</parameter>
        </creatures>
    </spawns>
...

The name attribute is the name of the creature to spawn. The value is maximum allowed simultaneous active instances.

Closes #713