<?xml version='1.0' ?>

<!-- Note default characer set: utf8 -->

<!-- FIXME: Need a FreeStars name space -->

<!-- FIXME:
  The C++ code uses CamelCase for names _BUT_ uses case insensitive lookups.
  I would suggest that this be changed to lowercase for tags and attributes
  to keep inline with most xml formats.  Additionally case insensitive is
  not XML compliant.
-->

<Rules>
  <Constant Name="MaxSpeed">10</Constant>
  <!-- lets bump it up a bit -->
  <Constant Name="MaxShipDesigns">32</Constant>
  <Constant Name="MaxBaseDesigns">7</Constant>
  <Constant Name="MaxFleets">32</Constant>
  <Constant Name="MaxBattlePlans">10</Constant>

  <Constant Name="MaxTechType">6</Constant>
  <!-- This should be max mineral - pop should be separate -->
  <Constant Name="MaxCargoType">4</Constant>
  <Constant Name="MaxHabType">3</Constant>
  <Constant Name="MaxDefenses">50</Constant>
  <Constant Name="MaxPlanetPop">20000</Constant>

  <Array name="PacketDecayRates" Start="0">
    <Item>0</Item>
    <Item>750</Item>
    <Item>1500</Item>
    <Item>3000</Item>
  </Array>

  <TechCost Level="1">50</TechCost>
  <TechCost Level="2">80</TechCost>
  <TechCost Level="3">130</TechCost>
  <TechCost Level="4">210</TechCost>
  <TechCost Level="5">340</TechCost>

  <TechCost Level="6">550</TechCost>
  <TechCost Level="7">890</TechCost>
  <TechCost Level="8">1440</TechCost>
  <TechCost Level="9">2330</TechCost>
  <TechCost Level="10">3770</TechCost>

  <TechCost Level="11">6100</TechCost>
  <TechCost Level="12">9870</TechCost>
  <TechCost Level="13">13850</TechCost>
  <TechCost Level="14">18040</TechCost>
  <TechCost Level="15">22440</TechCost>

  <TechCost Level="16">27050</TechCost>
  <TechCost Level="17">31870</TechCost>
  <TechCost Level="18">36900</TechCost>
  <TechCost Level="19">42140</TechCost>
  <TechCost Level="20">47590</TechCost>

  <TechCost Level="21">53250</TechCost>
  <TechCost Level="22">59120</TechCost>
  <TechCost Level="23">65200</TechCost>
  <TechCost Level="24">71490</TechCost>
  <TechCost Level="25">77990</TechCost>
  
  <TechCost Level="26">77990</TechCost>


 

  <!-- The name of the technology fields in the game
	Problem 1:  Relies on Order
	Problem 2: Can't translate these names for i8ln 
	Note also the race design needs to take this into account 
    -->
  <TechName>Energy</TechName>
  <TechName>Weapons</TechName>
  <TechName>Propulsion</TechName>
  <TechName>Construction</TechName>
  <TechName>Electronics</TechName>
  <TechName>Biotechnology</TechName>
  
  <!-- Name of the minerals in the game
	Has the same problems as Tech
   -->
  <MinName>Ironium</MinName>
  <MinName>Boranium</MinName>
  <MinName>Germanium</MinName>

  <!-- Name of the Habitat types, once again -->
  <HabName>Gravity</HabName>
  <HabName>Temperature</HabName>
  <HabName>Radiation</HabName>


</Rules>
  
<!-- vim: set sw=2 : -->

