<?xml version="1.0" encoding="utf-8"?>
<Defs>
  <RiverDef>
    <defName>HugeRiver</defName>
    <label>huge river</label>
    <spawnFlowThreshold>1000000</spawnFlowThreshold>
    <spawnChance>1</spawnChance>
    <degradeThreshold>500000</degradeThreshold>
    <degradeChild>LargeRiver</degradeChild>
    <branches>
      <li>
        <minFlow>750000</minFlow>
        <child>HugeRiver</child>
        <chance>0.6</chance>
      </li>
      <li>
        <minFlow>125000</minFlow>
        <child>LargeRiver</child>
        <chance>0.3</chance>
      </li>
      <li>
        <minFlow>75000</minFlow>
        <child>River</child>
        <chance>0.3</chance>
      </li>
    </branches>
    <widthOnWorld>0.8</widthOnWorld>
    <widthOnMap>30</widthOnMap>
    <debugOpacity>0.8</debugOpacity>
  </RiverDef>

  <RiverDef>
    <defName>LargeRiver</defName>
    <label>large river</label>
    <spawnFlowThreshold>500000</spawnFlowThreshold>
    <spawnChance>0.75</spawnChance>
    <degradeThreshold>250000</degradeThreshold>
    <degradeChild>River</degradeChild>
    <branches>
      <li>
        <minFlow>100000</minFlow>
        <child>River</child>
        <chance>0.3</chance>
      </li>
    </branches>
    <widthOnWorld>0.6</widthOnWorld>
    <widthOnMap>14</widthOnMap>
    <debugOpacity>0.4</debugOpacity>
  </RiverDef>

  <RiverDef>
    <defName>River</defName>
    <label>river</label>
    <spawnFlowThreshold>100000</spawnFlowThreshold>
    <spawnChance>0.5</spawnChance>
    <degradeThreshold>50000</degradeThreshold>
    <degradeChild>Creek</degradeChild>
    <branches>
      <li>
        <minFlow>50000</minFlow>
        <child>Creek</child>
        <chance>0.3</chance>
      </li>
    </branches>
    <widthOnWorld>0.4</widthOnWorld>
    <widthOnMap>6</widthOnMap>
    <debugOpacity>0.2</debugOpacity>
  </RiverDef>

  <RiverDef>
    <defName>Creek</defName>
    <label>creek</label>
    <degradeThreshold>20000</degradeThreshold>
    <widthOnWorld>0.2</widthOnWorld>
    <widthOnMap>4</widthOnMap>
    <debugOpacity>0.05</debugOpacity>
  </RiverDef>

</Defs>
