diff options
Diffstat (limited to 'maps')
-rw-r--r-- | maps/objecttypes.xml | 38 |
1 files changed, 32 insertions, 6 deletions
diff --git a/maps/objecttypes.xml b/maps/objecttypes.xml index 812486d2..16fef399 100644 --- a/maps/objecttypes.xml +++ b/maps/objecttypes.xml @@ -9,12 +9,6 @@ <property name="trigger_x" type="string"/> <property name="trigger_y" type="string"/> </objecttype> - <objecttype name="slide" color="#00ff00"> - <property name="dest_x" type="string"/> - <property name="dest_y" type="string"/> - <property name="trigger_x" type="string"/> - <property name="trigger_y" type="string"/> - </objecttype> <objecttype name="spawn" color="#ff0000"> <property name="death" type="string"/> <property name="max_beings" type="string"/> @@ -24,4 +18,36 @@ <objecttype name="save" color="#ffff00"> <property name="inn" type="string"/> </objecttype> + <!-- TMW2 Custom Object Types --> + <objecttype name="slide" color="#00ff00"> + <property name="dest_x" type="string"/> + <property name="dest_y" type="string"/> + <property name="trigger_x" type="string"/> + <property name="trigger_y" type="string"/> + </objecttype> + <objecttype name="dyncollision" color="#000040"> + <property name="colid" type="string"/> + <property name="enabled" type="string"/> + </objecttype> + <objecttype name="switch" color="#004070"> + <property name="callfunc" type="string"/> + <property name="args" type="string"/> + <property name="doevent" type="string"/> + <property name="distance" type="string"/> + <property name="enabled" type="string"/> + </objecttype> + <objecttype name="function" color="#400000"> + <property name="callfunc" type="string"/> + <property name="args" type="string"/> + <property name="doevent" type="string"/> + </objecttype> + <objecttype name="trap" color="#700070"> + <property name="disarmtime" type="string"/> + <property name="stuntime" type="string"/> + <property name="damage" type="string"/> + <property name="target" type="string"/> + </objecttype> + <objecttype name="treasure" color="#000090"> + <property name="distance" type="string" default="2"/> + </objecttype> </objecttypes> |