<name>Lavinia</name>
<profession>Guide</profession>
<faction>Serenity</faction>
<portrait>human_female01</portrait>
<dialogue>
  <greeting>
    <reply>
      <if><company>Lavinia</company></if>
      <text>Hi! We're making good progress.</text>
      <return>inparty</return>
    </reply>
    <reply>
      <text>Do you have need for my guidance?</text>
      <return>main</return>
    </reply>
  </greeting>
  <main>
    <option>
      <text>How can you assist us?</text>
      <npc>
        <reply>
          <text>My knowledge of the roads will make you travel faster from one province to the next. And it only costs you 200 gold up front plus 3% of the gold you find.</text>
          <return>main</return> 
        </reply>
      </npc>
    </option>
    <option>
      <text>We agree to your price.</text>
      <npc>
        <reply>
          <if><company>full</company></if>
          <text>There is no room in your party. If you wish to hire me, you must fire someone else.</text>
          <return>main</return> 
        </reply>
        <reply>
          <if><gold>!200</gold></if>
          <text>Then you'd better get the money.</text>
          <return>main</return> 
        </reply>
        <reply>
          <script>
            <gold>-200</gold>
            <company>hire</company>
            <log>Hired Lavinia, the Guide</log>
          </script>
          <return>exit</return> 
        </reply>
      </npc>
    </option>
    <option>
      <text>Maybe later.</text>
      <npc>
        <reply>
          <return>exit</return> 
        </reply>
      </npc>
    </option>
  </main> 
  <inparty> 
    <option>
      <text>What is it you do again?</text>
      <npc>
        <reply>
          <text>For 3% of the gold you find, I add 4 levels to your Pathfinding skill.</text>
          <return>inparty</return> 
        </reply>
      </npc>
    </option>
    <option>
      <text>We're sorry, but we don't need you anymore.</text>
      <npc>
        <reply>
          <text>I expected as much, [name]. If you ever change your mind, look for me in Serenity.</text>
          <script>
            <company>dismiss</company>
            <log>Dismissed Lavinia, the Guide</log>
          </script>
          <return>exit</return> 
        </reply>
      </npc>
    </option>
    <option>
      <text>Glad to have you along!</text>
      <npc>
        <reply>
          <return>exit</return> 
        </reply>
      </npc>
    </option>
  </inparty> 
</dialogue>