<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="http://dd.revealed.net/zone/zone-html.xsl"?>

<zone name="Your Zone Name" author="Your Name" number="100" 
       xmlns="http://dd.revealed.net/zone"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://dd.revealed.net/zone http://dd.revealed.net/zone/zone.xsd"> 

 <world>
  <room number="1" name="Room 1 Name" sector="city">
    <description>Room Description HERE.</description>

    <exit dir="n" toroom="2">Exit to room North of here.</exit>
    <exit dir="e" toroom="3">Exit to room East, This is whats shows
    up when you type exit</exit>
    <exit dir="s" toroom="4">South exit</exit>
    <exit dir="w" toroom="5">West exit.</exit>

<contents>
	<mobile ref="1">
	<object ref="1" wear="wield"/>
	</mobile>
	<mobile ref="2">
	<object ref="2" wear="about"/>
	</mobile>
</contents>  
  </room>
  
  <room number="2" name="Room 2" sector="city">
    <description>Enter your room description here.</description>

    <exit dir="s" toroom="1">South exit to Room 1 description.</exit>

<contents>
	<mobile ref="2"></mobile>
</contents>  
  </room>

  <room number="3" name="Room 3 Name" sector="inside">
  	<description>WOW this is my 3rd room description.</description>

	<exit dir="w" toroom="1">West exit to Room 1.</exit>

<contents>
	<mobile ref="2"></mobile>
</contents>  
  </room>

<room number="4" name="Room 4 Name" sector="inside">
  	<description>WOW this is my 4th room description.</description>

	<exit dir="n" toroom="1">North exit to Room 1.</exit>

<contents>
	<mobile ref="2">
	<object ref="3" wear="head"></object>
	</mobile>
</contents>  
  </room> 

<room number="5" name="Room 5 Name" sector="inside">
  	<description>WOW this is my 5th room description.</description>

	<exit dir="e" toroom="1">East exit to Room 1.</exit>

<contents>
	<mobile ref="2"></mobile>
</contents>  
  </room> 
 
 </world>  
  
  
  <mobiles>
  
  <mob number="1" keywords="Fido" level="1" alignment="100" limit="10" attack="hit" hitroll="1"
  ac="0" hitpoints="1d4+25" damage="2d2+1" gold="50" exp="60" position="standing" sex="neutral">
  <mobflags sentinel="yes" nosummon="yes"/>
  <affected detectinvis="yes"/>
  	<short>a fido</short>
  	<long>A fido looks hungry.</long>
  	<description>What you see when you look at the mob.</description>
  </mob>

  <mob number="2" keywords="citizen" level="3" alignment="100" limit="10" attack="hit" hitroll="3"
  ac="5" hitpoints="1d8+50" damage="2d2+2" gold="150" exp="260" position="standing" sex="male">
  <mobflags scavenger="yes" wimpy="yes"/>
   	<short>a citizen</short>
  	<long>A skinny citizen glares at you.</long>
  	<description>What you see when you look at the mob.</description>
  </mob>
  
  </mobiles>
  


  <objects>
  
	<weapon number="1" keywords="dagger" weight="10" cost="350" rent="150"
    type="stab" damage="1d4" limit="2">
		<wear wield="yes" hold="yes"/>
		<objectflags magic="yes"/>
		<affects dex="2"/>
		<short>what is seen when in inventory</short>
		<long>What is seen when item is on the ground.</long>
		<action>what is seen after the object is identified</action>
  	</weapon>
  	
  	<armor number="2" keywords="cape" weight="5" cost="200" rent="100"
  	ac="2">
  		<wear about="yes"/>
  		<short>This is what is seen when the item is in your inventory</short>
  		<long>On the ground description.</long>
  		<action>what is seen after the object is identified</action>
  	</armor>
  	
  	<armor number="3" keywords="helmet" weight="8" cost="500" rent="200"
  	ac="4">
  		<wear head="yes"/>
  		<affects dex="2"/>
  		<short>This is what is seen when the item is in your inventory</short>
  		<long>On the ground description.</long>
  		<action>what is seen after the object is identified</action>
  	</armor>
  	
  </objects>

</zone>
