Stendhal/Creature Organization: Difference between revisions

Jump to navigation Jump to search
Content deleted Content added
imported>AntumDeluge
imported>AntumDeluge
 
(25 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Goals ==
== Goals ==
...

* Use filename to determine creature class and tag for subclass:

Example: undead.xml
<pre>
<creatures>

<skeleton>
<creature name="skeleton">
</creature>
<creature name="warrior skeleton">
</creature>
</skeleton>
<zombie>
<creature name="zombie">
</creature>
<creature name="rotten zombie">
</creature>
</zombie>
</creatures>
</pre>

In the above example creatures <creature>skeleton</creature> & <creature>warrior skeleton</creature> would be of class '''undead''' and subclass '''skeleton''' while <creature>zombie</creature> & <creature>rotten zombie</creature> would be class '''undead''' and subclass '''zombie'''.


== Requirements ==
== Requirements ==