<?xml version="1.0" ?>
<game title="Pride and Prejudice">
   <maxscore>100</maxscore>
   <room number="1">
       <name>Ballroom</name>
       <desc>This is the grand ballroom at Pemberly. Standing on the gleaming expanse of parquet flooring makes you want to dance!</desc>
       <lighted/>
   </room>
   <room number="2">
       <name>Drawing Room</name>
       <desc>This is the grand ballroom at Pemberly. Looking at the dizzying array of bookcases makes you want to read!</desc>
       <lighted/>
   </room>
   <room number="3">
       <name>Garden</name>
       <desc>This is the grand garden at Pemberly. Strolling over the crisp stretches of pristine green lawn makes you want to play croquet!</desc>
       <lighted/>
   </room>

   <connection>
       <from>1</from>
       <to>2</to>
       <dir>e</dir>
   </connection>

   <connection>
       <from>2</from>
       <to>1</to>
       <dir>w</dir>
   </connection>

   <connection>
       <from>1</from>
       <to>3</to>
       <dir>n</dir>
   </connection>

   <connection>
       <from>3</from>
       <to>1</to>
       <dir>s</dir>
   </connection>

   <thing number="4">
       <loc>1</loc>
       <name>books</name>
       <desc>They are full of words!</desc>
       <visible/>
       <flammable/>
       <inflammable/>
       <pickupable/>
   </thing>

   <thing number="5">
       <loc>1</loc>
       <name>cheese</name>
       <desc>Lovely cheese!</desc>
       <visible/>
       <food>You munch down the cheese! Scrummy!</food>
       <weapon/>
       <pickupable/>
       <treasure/>
   </thing>

   <thing number="20">
       <loc>0</loc>
       <name>cloak</name>
       <desc>It is made of swooshy dark velvet!</desc>
       <visible/>
       <clothing/>
       <pickupable/>
       <worn/>
   </thing>

   <thing number="21">
       <loc>20</loc>
       <name>ballgown</name>
       <desc>It's big and flouncy.</desc>
       <visible/>
       <clothing/>
       <pickupable/>
       <worn/>
   </thing>

   <thing number="22">
       <loc>21</loc>
       <name>bodice</name>
       <desc>Red leather! Very naughty!</desc>
       <visible/>
       <clothing/>
       <pickupable/>
       <worn/>
   </thing>

   <thing number="23">
       <loc>22</loc>
       <name>lingerie</name>
       <desc>Slinky undergarments from Paris!</desc>
       <visible/>
       <clothing/>
       <pickupable/>
       <worn/>
   </thing>

   <thing number="7">
       <loc>3</loc>
       <name>whip</name>
       <desc>It is long and pliant!</desc>
       <visible/>
       <weapon/>
       <flammable/>
       <pickupable/>
   </thing>

   <monster number="0">
       <loc>1</loc>
       <name>Eliza</name>
       <noun>eliza</noun>
       <hp>100</hp>
       <ldamage>10</ldamage>
       <hdamage>50</hdamage>
       <turnstofight>5</turnstofight>
   </monster>

   <monster number="8">
       <loc>1</loc>
       <name>Darcy</name>
       <adj>mister</adj><noun>darcy</noun>
       <hp>100</hp>
       <ldamage>5</ldamage>
       <hdamage>20</hdamage>
       <turnstofight>5</turnstofight>
       <visible/>
   </monster>

   <monster number="9">
       <loc>2</loc>
       <name>Wickham</name>
       <adj>mister</adj><noun>wickham</noun>
       <hp>50</hp>
       <ldamage>2</ldamage>
       <hdamage>10</hdamage>
       <turnstofight>5</turnstofight>
       <visible/>
   </monster>

   <monster number="10">
       <loc>3</loc>
       <name>Mr. Collins</name>
       <adj>mister</adj><noun>collins</noun>
       <hp>30</hp>
       <onfire/>
       <ldamage>1</ldamage>
       <hdamage>5</hdamage>
       <turnstofight>5</turnstofight>
       <visible/>
   </monster>

   <countdown number="100">
       <triggers>
           <onpickup target="7"/>
       </triggers>
       <event>
           <desc>Rowr!
</desc>
           <changedesc target="7">Whippety whip whip!
</changedesc>
       </event>
   </countdown>
   <countdown number="101">
       <triggers>
           <onunwear target="22"/>
       </triggers>
       <conditions logic="and">
           <isin not="true" containee="0" container="1"/>
       </conditions>
       <event>
           <desc>POOF! As you tear off the bodice, you are teleported to the Ballroom!
</desc>
           <move target="0" loc="1"/>
       </event>
   </countdown>

   <instructions>It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife.</instructions>
</game>