Advertisement
Guest User

Updated Metallurgy Configuration for Custom Ore Generator

a guest
Mar 24th, 2013
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 225.50 KB | None | 0 0
  1.      <!--************************  CustomOreGen metallurgy Ores Module *********************************
  2.     *
  3.     *   This file contains Presets, Options, and Distributions for the 6 Metallurgy ore types:
  4.     *       Utility, Common, Precious, Fantasy, Nether, and End.
  5.     *
  6.     ***********************************************************************************************-->
  7. <ConfigSection>    
  8.      <!--***************************   Options + Symbols   ***********************************
  9.     *
  10.     *   Below are options for the Utility, Common, Precious, Fantasy, Nether, and End ore groups.
  11.     *   Each ore group has a "type" option corresponding to select which distribution is used
  12.     *   for that ore group in the overworld.
  13.     *
  14.     *   Each ore group also has its own overall "frequency" and "size" multipliers.  These are
  15.     *   provided so people can tweak the rarity of each ore from the options file rather
  16.     *   than having to edit the config directly.
  17.     *  
  18.     *   Each ore in the group is individually configured with its own values, based on the
  19.     *   overall ore group settings.  Each ore is also given its own Mystcraft symbol.
  20.     *
  21.     *************************************************************************************-->
  22.      
  23.      <ConfigSection>
  24.      
  25.          <OptionDisplayGroup name='groupMetallurgy' displayName='Metallurgy 2 Ores' displayState='shown'>
  26.              <Description>
  27.                  Distribution options for Metallurgy 2 Ore Groups.
  28.              </Description>
  29.          </OptionDisplayGroup>
  30.      
  31.          <!--*******************   Utility Ores  ***********************
  32.         *  
  33.         *   Utility ores include phosphorous, sulphur, saltpeter,
  34.         *   magnesium, bitumen, and potash.
  35.         *  
  36.         ************************************************************-->
  37.      
  38.          <ConfigSection>
  39.      
  40.              <!-- OptionChoice: Configure Choice-Button GUI Options -->
  41.              <OptionChoice name='utilityoreDist' default='layeredVeins' displayState='shown' displayGroup='groupMetallurgy'>
  42.                  <Description>Controls how Utility Ores are generated</Description>
  43.                  <DisplayName>Utility Ore Type</DisplayName>
  44.                  <Choice value='layeredVeins' displayValue='Veins'>
  45.                      <Description>
  46.                          Veins of Ore leading to a Motherlode.  Most realistic placement.
  47.                      </Description>
  48.                  </Choice>
  49.                  <Choice value='strategicClouds' displayValue='Clouds'>
  50.                      <Description>
  51.                          Rare, sparsely populated clouds of ore extending over several chunks.
  52.                      </Description>
  53.                  </Choice>
  54.                  <Choice value='vanillaStdGen' displayValue='Clusters'>
  55.                      <Description>
  56.                          Small evenly scattered clusters of ore.  This is the default Minecraft placement pattern.
  57.                      </Description>
  58.                  </Choice>
  59.                  <Choice value='none' displayValue='None' description='No utility ores are generated at all.'/>
  60.              </OptionChoice>
  61.      
  62.              <!-- OptionNumeric: Numeric GUI Options, Identified by a slider -->
  63.              <OptionNumeric name='utilityoreFreq' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  64.                  <Description> Frequency multiplier for Utility Ore distributions </Description>
  65.                  <DisplayName>Utility Freq.</DisplayName>
  66.              </OptionNumeric>
  67.              <OptionNumeric name='utilityoreSize' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  68.                  <Description> Size multiplier for utility Ore distributions </Description>
  69.                  <DisplayName>Utility Ore Size</DisplayName>
  70.              </OptionNumeric>
  71.      
  72.              <!-- Minecraft Symbol Configuration for the different ores in the group -->
  73.      
  74.              <!-- Phosphorous -->
  75.              <MystcraftSymbol name='phosphorousClusters' displayName='Phosphorous Clusters'/>
  76.              <MystcraftSymbol name='phosphorousVeins' displayName='Phosphorous Veins'/>
  77.              <MystcraftSymbol name='phosphorousClouds' displayName='Phosphorous Clouds'>
  78.                  <Instability>:= 50 * (age.phosphorousClusters + age.phosphorousVeins + age.phosphorousClouds - 1)^3</Instability>
  79.              </MystcraftSymbol>
  80.      
  81.              <!-- Sulphur -->
  82.              <MystcraftSymbol name='sulphurClusters' displayName='Sulphur Clusters'/>
  83.              <MystcraftSymbol name='sulphurVeins' displayName='Sulphur Veins'/>
  84.              <MystcraftSymbol name='sulphurClouds' displayName='Sulphur Clouds'>
  85.                  <Instability>:= 50 * (age.sulphurClusters + age.sulphurVeins + age.sulphurClouds - 1)^3</Instability>
  86.              </MystcraftSymbol>
  87.      
  88.              <!-- Saltpeter -->
  89.              <MystcraftSymbol name='saltpeterClusters' displayName='Saltpeter Clusters'/>
  90.              <MystcraftSymbol name='saltpeterVeins' displayName='Saltpeter Veins'/>
  91.              <MystcraftSymbol name='saltpeterClouds' displayName='Saltpeter Clouds'>
  92.                  <Instability>:= 50 * (age.saltpeterClusters + age.saltpeterVeins + age.saltpeterClouds - 1)^3</Instability>
  93.              </MystcraftSymbol>
  94.      
  95.              <!-- Magnesium -->
  96.              <MystcraftSymbol name='magnesiumClusters' displayName='Magnesium Clusters'/>
  97.              <MystcraftSymbol name='magnesiumVeins' displayName='Magnesium Veins'/>
  98.              <MystcraftSymbol name='magnesiumClouds' displayName='Magnesium Clouds'>
  99.                  <Instability>:= 50 * (age.magnesiumClusters + age.magnesiumVeins + age.magnesiumClouds - 1)^3</Instability>
  100.              </MystcraftSymbol>
  101.      
  102.              <!-- Bitumen -->
  103.              <MystcraftSymbol name='bitumenClusters' displayName='Bitumen Clusters'/>
  104.              <MystcraftSymbol name='bitumenVeins' displayName='Bitumen Veins'/>
  105.              <MystcraftSymbol name='bitumenClouds' displayName='Bitumen Clouds'>
  106.                  <Instability>:= 50 * (age.bitumenClusters + age.bitumenVeins + age.bitumenClouds - 1)^3</Instability>
  107.      
  108.              <!-- Potash -->
  109.              </MystcraftSymbol>
  110.              <MystcraftSymbol name='potashClusters' displayName='Potash Clusters'/>
  111.              <MystcraftSymbol name='potashVeins' displayName='Potash Veins'/>
  112.              <MystcraftSymbol name='potashClouds' displayName='Potash Clouds'>
  113.                  <Instability>:= 50 * (age.potashClusters + age.potashVeins + age.potashClouds - 1)^3</Instability>
  114.              </MystcraftSymbol>
  115.      
  116.          </ConfigSection>
  117.      
  118.          <!-- ******************* End of Utility Ores ***********************-->
  119.      
  120.          <!--*******************   Base Ores   ***********************
  121.         *  
  122.         *   Base ores include tin, copper, and manganese.
  123.         *  
  124.         **********************************************************-->
  125.      
  126.          <ConfigSection>
  127.      
  128.              <!-- OptionChoice: Configure Choice-Button GUI Options -->
  129.              <OptionChoice name='baseDist' default='layeredVeins' displayState='shown' displayGroup='groupMetallurgy'>
  130.                  <Description>Controls how Utility Ores are generated</Description>
  131.                  <DisplayName>Base Ore Type</DisplayName>
  132.                  <Choice value='layeredVeins' displayValue='Veins'>
  133.                      <Description>
  134.                          Veins of Ore leading to a Motherlode.  Most realistic placement.
  135.                      </Description>
  136.                  </Choice>
  137.                  <Choice value='strategicClouds' displayValue='Clouds'>
  138.                      <Description>
  139.                          Rare, sparsely populated clouds of ore extending over several chunks.
  140.                      </Description>
  141.                  </Choice>
  142.                  <Choice value='vanillaStdGen' displayValue='Clusters'>
  143.                      <Description>
  144.                          Small evenly scattered clusters of ore.  This is the default Minecraft placement pattern.
  145.                      </Description>
  146.                  </Choice>
  147.                  <Choice value='none' displayValue='None' description='No base ores are generated at all.'/>
  148.              </OptionChoice>
  149.      
  150.              <!-- OptionNumeric: Numeric GUI Options, Identified by a slider -->
  151.              <OptionNumeric name='baseFreq' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  152.                  <Description> Frequency multiplier for Utility Ore distributions </Description>
  153.                  <DisplayName>Utility Freq.</DisplayName>
  154.              </OptionNumeric>
  155.              <OptionNumeric name='baseSize' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  156.                  <Description> Size multiplier for utility Ore distributions </Description>
  157.                  <DisplayName>Utility Ore Size</DisplayName>
  158.              </OptionNumeric>
  159.      
  160.              <!-- Minecraft Symbol Configuration for the different ores in the group -->
  161.      
  162.              <!-- Tin -->
  163.              <MystcraftSymbol name='tinClusters' displayName='Tin Clusters'/>
  164.              <MystcraftSymbol name='tinVeins' displayName='Tin Veins'/>
  165.              <MystcraftSymbol name='tinClouds' displayName='Tin Clouds'>
  166.                  <Instability>:= 50 * (age.tinClusters + age.tinVeins + age.tinClouds - 1)^3</Instability>
  167.              </MystcraftSymbol>
  168.      
  169.              <!-- Copper -->
  170.              <MystcraftSymbol name='copperClusters' displayName='Copper Clusters'/>
  171.              <MystcraftSymbol name='copperVeins' displayName='Copper Veins'/>
  172.              <MystcraftSymbol name='copperClouds' displayName='Copper Clouds'>
  173.                  <Instability>:= 50 * (age.copperClusters + age.copperVeins + age.copperClouds - 1)^3</Instability>
  174.              </MystcraftSymbol>
  175.      
  176.              <!-- Manganese -->
  177.              <MystcraftSymbol name='manganeseClusters' displayName='Manganese Clusters'/>
  178.              <MystcraftSymbol name='manganeseVeins' displayName='Manganese Veins'/>
  179.              <MystcraftSymbol name='manganeseClouds' displayName='Manganese Clouds'>
  180.                  <Instability>:= 50 * (age.manganeseClusters + age.manganeseVeins + age.manganeseClouds - 1)^3</Instability>
  181.              </MystcraftSymbol>
  182.      
  183.          </ConfigSection>
  184.      
  185.          <!-- ******************* End of Base Ores ***********************-->
  186.      
  187.          <!--*******************   Precious Ores   ***********************
  188.         *  
  189.         *   Precious Ores include Zinc, Silver, and Platinum.  Gold is
  190.         *   technically also a precious ore, but it is handled by the
  191.         *   vanilla Minecraft settings.
  192.         *  
  193.         **********************************************************-->
  194.      
  195.          <ConfigSection>
  196.      
  197.              <!-- OptionChoice: Configure Choice-Button GUI Options -->
  198.              <OptionChoice name='preciousDist' default='layeredVeins' displayState='shown' displayGroup='groupMetallurgy'>
  199.                  <Description>Controls how Utility Ores are generated</Description>
  200.                  <DisplayName>Precious Ore Type</DisplayName>
  201.                  <Choice value='layeredVeins' displayValue='Veins'>
  202.                      <Description>
  203.                          Veins of Ore leading to a Motherlode.  Most realistic placement.
  204.                      </Description>
  205.                  </Choice>
  206.                  <Choice value='strategicClouds' displayValue='Clouds'>
  207.                      <Description>
  208.                          Rare, sparsely populated clouds of ore extending over several chunks.
  209.                      </Description>
  210.                  </Choice>
  211.                  <Choice value='vanillaStdGen' displayValue='Clusters'>
  212.                      <Description>
  213.                          Small evenly scattered clusters of ore.  This is the default Minecraft placement pattern.
  214.                      </Description>
  215.                  </Choice>
  216.                  <Choice value='none' displayValue='None' description='No precious ores are generated at all.'/>
  217.              </OptionChoice>
  218.      
  219.              <!-- OptionNumeric: Numeric GUI Options, Identified by a slider -->
  220.              <OptionNumeric name='preciousFreq' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  221.                  <Description> Frequency multiplier for Utility Ore distributions </Description>
  222.                  <DisplayName>Utility Freq.</DisplayName>
  223.              </OptionNumeric>
  224.              <OptionNumeric name='preciousSize' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  225.                  <Description> Size multiplier for utility Ore distributions </Description>
  226.                  <DisplayName>Utility Ore Size</DisplayName>
  227.              </OptionNumeric>
  228.      
  229.              <!-- Minecraft Symbol Configuration for the different ores in the group -->
  230.      
  231.              <!-- Zinc -->
  232.              <MystcraftSymbol name='zincClusters' displayName='Zinc Clusters'/>
  233.              <MystcraftSymbol name='zincVeins' displayName='Zinc Veins'/>
  234.              <MystcraftSymbol name='zincClouds' displayName='Zinc Clouds'>
  235.                  <Instability>:= 50 * (age.zincClusters + age.zincVeins + age.zincClouds - 1)^3</Instability>
  236.              </MystcraftSymbol>
  237.      
  238.              <!-- Silver -->
  239.              <MystcraftSymbol name='silverClusters' displayName='Silver Clusters'/>
  240.              <MystcraftSymbol name='silverVeins' displayName='Silver Veins'/>
  241.              <MystcraftSymbol name='silverClouds' displayName='Silver Clouds'>
  242.                  <Instability>:= 50 * (age.silverClusters + age.silverVeins + age.silverClouds - 1)^3</Instability>
  243.              </MystcraftSymbol>
  244.      
  245.              <!-- Platinum -->
  246.              <MystcraftSymbol name='platinumClusters' displayName='Platinum Clusters'/>
  247.              <MystcraftSymbol name='platinumVeins' displayName='Platinum Veins'/>
  248.              <MystcraftSymbol name='platinumClouds' displayName='Platinum Clouds'>
  249.                  <Instability>:= 50 * (age.platinumClusters + age.platinumVeins + age.platinumClouds - 1)^3</Instability>
  250.              </MystcraftSymbol>
  251.      
  252.          </ConfigSection>
  253.      
  254.          <!-- ******************* End of Precious Ores ***********************-->
  255.      
  256.          <!--*******************   Fantasy Ores   ***********************
  257.         *  
  258.         *   Fantasy Ores include promethium, deep iron, infuscolium,
  259.         *   oureclase, aredrite, astral silver, carmot, mithril,
  260.         *   rubracium, orichalcum, adamantine, and atlarus.
  261.         *  
  262.         **********************************************************-->
  263.      
  264.          <ConfigSection>
  265.      
  266.              <!-- OptionChoice: Configure Choice-Button GUI Options -->
  267.              <OptionChoice name='fantasyDist' default='layeredVeins' displayState='shown' displayGroup='groupMetallurgy'>
  268.                  <Description>Controls how Utility Ores are generated</Description>
  269.                  <DisplayName>Fantasy Ore Type</DisplayName>
  270.                  <Choice value='layeredVeins' displayValue='Veins'>
  271.                      <Description>
  272.                          Veins of Ore leading to a Motherlode.  Most realistic placement.
  273.                      </Description>
  274.                  </Choice>
  275.                  <Choice value='strategicClouds' displayValue='Clouds'>
  276.                      <Description>
  277.                          Rare, sparsely populated clouds of ore extending over several chunks.
  278.                      </Description>
  279.                  </Choice>
  280.                  <Choice value='vanillaStdGen' displayValue='Clusters'>
  281.                      <Description>
  282.                          Small evenly scattered clusters of ore.  This is the default Minecraft placement pattern.
  283.                      </Description>
  284.                  </Choice>
  285.                  <Choice value='none' displayValue='None' description='No fantasy ores are generated at all.'/>
  286.              </OptionChoice>
  287.      
  288.              <!-- OptionNumeric: Numeric GUI Options, Identified by a slider -->
  289.              <OptionNumeric name='fantasyFreq' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  290.                  <Description> Frequency multiplier for Utility Ore distributions </Description>
  291.                  <DisplayName>Utility Freq.</DisplayName>
  292.              </OptionNumeric>
  293.              <OptionNumeric name='fantasySize' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  294.                  <Description> Size multiplier for utility Ore distributions </Description>
  295.                  <DisplayName>Utility Ore Size</DisplayName>
  296.              </OptionNumeric>
  297.      
  298.              <!-- Minecraft Symbol Configuration for the different ores in the group -->
  299.      
  300.              <!-- Promethium -->
  301.              <MystcraftSymbol name='promethiumClusters' displayName='Promethium Clusters'/>
  302.              <MystcraftSymbol name='promethiumVeins' displayName='Promethium Veins'/>
  303.              <MystcraftSymbol name='promethiumClouds' displayName='Promethium Clouds'>
  304.                  <Instability>:= 50 * (age.promethiumClusters + age.promethiumVeins + age.promethiumClouds - 1)^3</Instability>
  305.              </MystcraftSymbol>
  306.      
  307.              <!-- Deep Iron -->
  308.              <MystcraftSymbol name='deepironClusters' displayName='Deep Iron Clusters'/>
  309.              <MystcraftSymbol name='deepironVeins' displayName='Deep Iron Veins'/>
  310.              <MystcraftSymbol name='deepironClouds' displayName='Deep Iron Clouds'>
  311.                  <Instability>:= 50 * (age.deepironClusters + age.deepironVeins + age.deepironClouds - 1)^3</Instability>
  312.              </MystcraftSymbol>
  313.      
  314.              <!-- Infuscolium -->
  315.              <MystcraftSymbol name='infuscoliumClusters' displayName='Infuscolium Clusters'/>
  316.              <MystcraftSymbol name='infuscoliumVeins' displayName='Infuscolium Veins'/>
  317.              <MystcraftSymbol name='infuscoliumClouds' displayName='Infuscolium Clouds'>
  318.                  <Instability>:= 50 * (age.infuscoliumClusters + age.infuscoliumVeins + age.infuscoliumClouds - 1)^3</Instability>
  319.              </MystcraftSymbol>
  320.      
  321.              <!-- Oureclase -->
  322.              <MystcraftSymbol name='oureclaseClusters' displayName='Oureclase Clusters'/>
  323.              <MystcraftSymbol name='oureclaseVeins' displayName='Oureclase Veins'/>
  324.              <MystcraftSymbol name='oureclaseClouds' displayName='Oureclase Clouds'>
  325.                  <Instability>:= 50 * (age.oureclaseClusters + age.oureclaseVeins + age.oureclaseClouds - 1)^3</Instability>
  326.              </MystcraftSymbol>
  327.      
  328.              <!-- Aredrite -->
  329.              <MystcraftSymbol name='aredriteClusters' displayName='Aredrite Clusters'/>
  330.              <MystcraftSymbol name='aredriteVeins' displayName='Aredrite Veins'/>
  331.              <MystcraftSymbol name='aredriteClouds' displayName='Aredrite Clouds'>
  332.                  <Instability>:= 50 * (age.aredriteClusters + age.aredriteVeins + age.aredriteClouds - 1)^3</Instability>
  333.              </MystcraftSymbol>
  334.      
  335.              <!-- Astral Silver -->
  336.              <MystcraftSymbol name='astralsilverClusters' displayName='Astral Silver Clusters'/>
  337.              <MystcraftSymbol name='astralsilverVeins' displayName='Astral Silver Veins'/>
  338.              <MystcraftSymbol name='astralsilverClouds' displayName='Astral Silver Clouds'>
  339.                  <Instability>:= 50 * (age.astralsilverClusters + age.astralsilverVeins + age.astralsilverClouds - 1)^3</Instability>
  340.              </MystcraftSymbol>
  341.      
  342.              <!-- Mithril -->
  343.              <MystcraftSymbol name='mithrilClusters' displayName='Mithril Clusters'/>
  344.              <MystcraftSymbol name='mithrilVeins' displayName='Mithril Veins'/>
  345.              <MystcraftSymbol name='mithrilClouds' displayName='Mithril Clouds'>
  346.                  <Instability>:= 50 * (age.mithrilClusters + age.mithrilVeins + age.mithrilClouds - 1)^3</Instability>
  347.              </MystcraftSymbol>
  348.  
  349.      
  350.              <!-- Rubracium -->
  351.              <MystcraftSymbol name='rubraciumClusters' displayName='Rubracium Clusters'/>
  352.              <MystcraftSymbol name='rubraciumVeins' displayName='Rubracium Veins'/>
  353.              <MystcraftSymbol name='rubraciumClouds' displayName='Rubracium Clouds'>
  354.                  <Instability>:= 50 * (age.rubraciumClusters + age.rubraciumVeins + age.rubraciumClouds - 1)^3</Instability>
  355.              </MystcraftSymbol>
  356.      
  357.              <!-- Orichalcum -->
  358.              <MystcraftSymbol name='orichalcumClusters' displayName='Orichalcum Clusters'/>
  359.              <MystcraftSymbol name='orichalcumVeins' displayName='Orichalcum Veins'/>
  360.              <MystcraftSymbol name='orichalcumClouds' displayName='Orichalcum Clouds'>
  361.                  <Instability>:= 50 * (age.orichalcumClusters + age.orichalcumVeins + age.orichalcumClouds - 1)^3</Instability>
  362.              </MystcraftSymbol>
  363.      
  364.              <!-- Adamantine -->
  365.              <MystcraftSymbol name='adamantineClusters' displayName='Adamantine Clusters'/>
  366.              <MystcraftSymbol name='adamantineVeins' displayName='Adamantine Veins'/>
  367.              <MystcraftSymbol name='adamantineClouds' displayName='Adamantine Clouds'>
  368.                  <Instability>:= 50 * (age.adamantineClusters + age.adamantineVeins + age.adamantineClouds - 1)^3</Instability>
  369.              </MystcraftSymbol>
  370.      
  371.              <!-- Atlarus -->
  372.              <MystcraftSymbol name='atlarusClusters' displayName='Atlarus Clusters'/>
  373.              <MystcraftSymbol name='atlarusVeins' displayName='Atlarus Veins'/>
  374.              <MystcraftSymbol name='atlarusClouds' displayName='Atlarus Clouds'>
  375.                  <Instability>:= 50 * (age.atlarusClusters + age.atlarusVeins + age.atlarusClouds - 1)^3</Instability>
  376.              </MystcraftSymbol>
  377.      
  378.          </ConfigSection>
  379.      
  380.          <!-- ******************* End of Fantasy Ores ***********************-->
  381.      
  382.          <!--*******************   Nether Ores   ***********************
  383.         *  
  384.         *   Nether Ores include ignatius, shadow iron, midasium,
  385.         *   vyroxeres, ceruclase, kalendrite, vulcanite, sanguinite,
  386.         *   lemurite, and adluorite.  These ores can only be found
  387.         *   naturally in the Nether.
  388.         *  
  389.         **********************************************************-->
  390.      
  391.          <ConfigSection>
  392.      
  393.              <!-- OptionChoice: Configure Choice-Button GUI Options -->
  394.              <OptionChoice name='netherDist' default='layeredVeins' displayState='shown' displayGroup='groupMetallurgy'>
  395.                  <Description>Controls how Utility Ores are generated</Description>
  396.                  <DisplayName>Nether Ore Type</DisplayName>
  397.                  <Choice value='layeredVeins' displayValue='Veins'>
  398.                      <Description>
  399.                          Veins of Ore leading to a Motherlode.  Most realistic placement.  Only appears in the Nether.
  400.                      </Description>
  401.                  </Choice>
  402.                  <Choice value='strategicClouds' displayValue='Clouds'>
  403.                      <Description>
  404.                          Rare, sparsely populated clouds of ore extending over several chunks.  Only appears in the Nether.
  405.                      </Description>
  406.                  </Choice>
  407.                  <Choice value='vanillaStdGen' displayValue='Clusters'>
  408.                      <Description>
  409.                          Small evenly scattered clusters of ore.  This is the default Minecraft placement pattern.  Only appears in the Nether.
  410.                      </Description>
  411.                  </Choice>
  412.                  <Choice value='none' displayValue='None' description='No nether ores are generated at all.'/>
  413.              </OptionChoice>
  414.      
  415.              <!-- OptionNumeric: Numeric GUI Options, Identified by a slider -->
  416.              <OptionNumeric name='netherFreq' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  417.                  <Description> Frequency multiplier for Utility Ore distributions </Description>
  418.                  <DisplayName>Utility Freq.</DisplayName>
  419.              </OptionNumeric>
  420.              <OptionNumeric name='netherSize' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  421.                  <Description> Size multiplier for utility Ore distributions </Description>
  422.                  <DisplayName>Utility Ore Size</DisplayName>
  423.              </OptionNumeric>
  424.      
  425.              <!-- Minecraft Symbol Configuration for the different ores in the group -->
  426.      
  427.              <!-- Ignatius -->
  428.              <MystcraftSymbol name='ignatiusClusters' displayName='Ignatius Clusters'/>
  429.              <MystcraftSymbol name='ignatiusVeins' displayName='Ignatius Veins'/>
  430.              <MystcraftSymbol name='ignatiusClouds' displayName='Ignatius Clouds'>
  431.                  <Instability>:= 50 * (age.ignatiusClusters + age.ignatiusVeins + age.ignatiusClouds - 1)^3</Instability>
  432.              </MystcraftSymbol>
  433.      
  434.              <!-- Shadow Iron -->
  435.              <MystcraftSymbol name='shadowironClusters' displayName='Shadow Iron Clusters'/>
  436.              <MystcraftSymbol name='shadowironVeins' displayName='Shadow Iron Veins'/>
  437.              <MystcraftSymbol name='shadowironClouds' displayName='Shadow Iron Clouds'>
  438.                  <Instability>:= 50 * (age.shadowironClusters + age.shadowironVeins + age.shadowironClouds - 1)^3</Instability>
  439.              </MystcraftSymbol>
  440.      
  441.              <!-- Midasium -->
  442.              <MystcraftSymbol name='midasiumClusters' displayName='Midasium Clusters'/>
  443.              <MystcraftSymbol name='midasiumVeins' displayName='Midasium Veins'/>
  444.              <MystcraftSymbol name='midasiumClouds' displayName='Midasium Clouds'>
  445.                  <Instability>:= 50 * (age.midasiumClusters + age.midasiumVeins + age.midasiumClouds - 1)^3</Instability>
  446.              </MystcraftSymbol>
  447.      
  448.              <!-- Vyroxeres -->
  449.              <MystcraftSymbol name='vyroxeresClusters' displayName='Vyroxeres Clusters'/>
  450.              <MystcraftSymbol name='vyroxeresVeins' displayName='Vyroxeres Veins'/>
  451.              <MystcraftSymbol name='vyroxeresClouds' displayName='Vyroxeres Clouds'>
  452.                  <Instability>:= 50 * (age.vyroxeresClusters + age.vyroxeresVeins + age.vyroxeresClouds - 1)^3</Instability>
  453.              </MystcraftSymbol>
  454.      
  455.              <!-- Ceruclase -->
  456.              <MystcraftSymbol name='ceruclaseClusters' displayName='Ceruclase Clusters'/>
  457.              <MystcraftSymbol name='ceruclaseVeins' displayName='Ceruclase Veins'/>
  458.              <MystcraftSymbol name='ceruclaseClouds' displayName='Ceruclase Clouds'>
  459.                  <Instability>:= 50 * (age.ceruclaseeClusters + age.ceruclaseVeins + age.ceruclaseClouds - 1)^3</Instability>
  460.              </MystcraftSymbol>
  461.      
  462.              <!-- Kalendrite -->
  463.              <MystcraftSymbol name='kalendriteClusters' displayName='Kalendrite Clusters'/>
  464.              <MystcraftSymbol name='kalendriteVeins' displayName='Kalendrite Veins'/>
  465.              <MystcraftSymbol name='kalendriteClouds' displayName='Kalendrite Clouds'>
  466.                  <Instability>:= 50 * (age.kalendriteClusters + age.kalendriteVeins + age.kalendriteClouds - 1)^3</Instability>
  467.              </MystcraftSymbol>
  468.      
  469.              <!-- Vulcanite -->
  470.              <MystcraftSymbol name='vulcaniteClusters' displayName='Vulcanite Clusters'/>
  471.              <MystcraftSymbol name='vulcaniteVeins' displayName='Vulcanite Veins'/>
  472.              <MystcraftSymbol name='vulcaniteClouds' displayName='Vulcanite Clouds'>
  473.                  <Instability>:= 50 * (age.vulcaniteClusters + age.vulcaniteVeins + age.vulcaniteClouds - 1)^3</Instability>
  474.              </MystcraftSymbol>
  475.      
  476.              <!-- Sanguinite -->
  477.              <MystcraftSymbol name='sanguiniteClusters' displayName='Sanguinite Clusters'/>
  478.              <MystcraftSymbol name='sanguiniteVeins' displayName='Sanguinite Veins'/>
  479.              <MystcraftSymbol name='sanguiniteClouds' displayName='Sanguinite Clouds'>
  480.                  <Instability>:= 50 * (age.sanguiniteClusters + age.sanguiniteVeins + age.sanguiniteClouds - 1)^3</Instability>
  481.              </MystcraftSymbol>
  482.      
  483.              <!-- Lemurite -->
  484.              <MystcraftSymbol name='lemuriteClusters' displayName='Lemurite Clusters'/>
  485.              <MystcraftSymbol name='lemuriteVeins' displayName='Lemurite Veins'/>
  486.              <MystcraftSymbol name='lemuriteClouds' displayName='Lemurite Clouds'>
  487.                  <Instability>:= 50 * (age.lemuriteClusters + age.lemuriteVeins + age.lemuriteClouds - 1)^3</Instability>
  488.              </MystcraftSymbol>
  489.      
  490.              <!-- Adluorite -->
  491.              <MystcraftSymbol name='adluoriteClusters' displayName='Adluorite Clusters'/>
  492.              <MystcraftSymbol name='adluoriteVeins' displayName='Adluorite Veins'/>
  493.              <MystcraftSymbol name='adluoriteClouds' displayName='Adluorite Clouds'>
  494.                  <Instability>:= 50 * (age.adluoriteClusters + age.adluoriteVeins + age.adluoriteClouds - 1)^3</Instability>
  495.              </MystcraftSymbol>
  496.      
  497.          </ConfigSection>
  498.      
  499.          <!-- ******************* End of Nether Ores ***********************-->
  500.      
  501.          <!--*******************   Ender Ores   ***********************
  502.         *  
  503.         *   Ender ores include eximite and meutoite.  These ores can
  504.         *   only be found naturally in the End.
  505.         *  
  506.         **********************************************************-->
  507.      
  508.          <ConfigSection>
  509.      
  510.              <!-- OptionChoice: Configure Choice-Button GUI Options -->
  511.              <OptionChoice name='enderDist' default='layeredVeins' displayState='shown' displayGroup='groupMetallurgy'>
  512.                  <Description>Controls how Utility Ores are generated</Description>
  513.                  <DisplayName>End Ore Type</DisplayName>
  514.                  <Choice value='layeredVeins' displayValue='Veins'>
  515.                      <Description>
  516.                          Veins of Ore leading to a Motherlode.  Most realistic placement.  Only appears in the End.
  517.                      </Description>
  518.                  </Choice>
  519.                  <Choice value='strategicClouds' displayValue='Clouds'>
  520.                      <Description>
  521.                          Rare, sparsely populated clouds of ore extending over several chunks.  Only appears in the End.
  522.                      </Description>
  523.                  </Choice>
  524.                  <Choice value='vanillaStdGen' displayValue='Clusters'>
  525.                      <Description>
  526.                          Small evenly scattered clusters of ore.  This is the default Minecraft placement pattern.  Only appears in the End.
  527.                      </Description>
  528.                  </Choice>
  529.                  <Choice value='none' displayValue='None' description='No ender ores are generated at all.'/>
  530.              </OptionChoice>
  531.      
  532.              <!-- OptionNumeric: Numeric GUI Options, Identified by a slider -->
  533.              <OptionNumeric name='enderFreq' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  534.                  <Description> Frequency multiplier for Utility Ore distributions </Description>
  535.                  <DisplayName>Utility Freq.</DisplayName>
  536.              </OptionNumeric>
  537.              <OptionNumeric name='enderSize' default='1'  min='0' max='5' displayState='hidden' displayGroup='groupMetallurgy'>
  538.                  <Description> Size multiplier for utility Ore distributions </Description>
  539.                  <DisplayName>Utility Ore Size</DisplayName>
  540.              </OptionNumeric>
  541.      
  542.              <!-- Minecraft Symbol Configuration for the different ores in the group -->
  543.      
  544.              <!-- Eximite -->
  545.              <MystcraftSymbol name='eximiteClusters' displayName='Eximite Clusters'/>
  546.              <MystcraftSymbol name='eximiteVeins' displayName='Eximite Veins'/>
  547.              <MystcraftSymbol name='eximiteClouds' displayName='Eximite Clouds'>
  548.                  <Instability>:= 50 * (age.eximiteClusters + age.eximiteVeins + age.eximiteClouds - 1)^3</Instability>
  549.              </MystcraftSymbol>
  550.      
  551.              <!-- Meutoite -->
  552.              <MystcraftSymbol name='meutoiteClusters' displayName='Meutoite Clusters'/>
  553.              <MystcraftSymbol name='meutoiteVeins' displayName='Meutoite Veins'/>
  554.              <MystcraftSymbol name='meutoiteClouds' displayName='Meutoite Clouds'>
  555.                  <Instability>:= 50 * (age.meutoiteClusters + age.meutoiteVeins + age.meutoiteClouds - 1)^3</Instability>
  556.              </MystcraftSymbol>
  557.      
  558.          </ConfigSection>
  559.      
  560.          <!-- ******************* End of Ender Ores ***********************-->
  561.      
  562.      </ConfigSection>
  563.      
  564.      <!--***************************  End of Options + Symbols   *********************************** -->
  565.      
  566.      <!--*****************************   Distributions   *************************************
  567.     *  
  568.     *   Now that we're done with the GUI options and Mystcraft symbols, let's get to the meat
  569.     *   of the matter: Setting up the actual distribution values.
  570.     *
  571.     *     Layered Veins:  
  572.     *       Some form of veins or clusters arranged loosely by height and more common
  573.     *       in affiliated biomes.  For now, I'm not placing any location weights for
  574.     *       the ores.
  575.     *
  576.     *     Strategic Clouds:  
  577.     *       Huge, rare, low-density clouds.  Size and frequency are fairly consistent;
  578.     *       density is varied to reflect ore rarity.  May be surrounded by a scattering
  579.     *       of single blocks as hints to help guide players in.
  580.     *
  581.     *     Vanilla Clusters:
  582.     *       A re-creation of the vanilla ore generation using the StandardGen algorithm.
  583.     *
  584.     *************************************************************************************-->
  585.      <IfCondition condition=':= if(dimension.generator = "HellRandomLevelSource" | dimension.generator = "EndRandomLevelSource" | dimension.generator = "RandomLevelSource",true,false)'>
  586.        <!-- <IfCondition condition=':= dimension.generator = "RandomLevelSource"'> -->
  587.      
  588.          <!--*******************   Utility Ores  ***********************
  589.         *  
  590.         *   Utility ores include phosphorous, sulphur, saltpeter,
  591.         *   magnesium, bitumen, and potash.  Distribution is based
  592.         *   on coal.
  593.         *  
  594.         ************************************************************-->
  595.      
  596.          <!-- * phosphorous * -->
  597.      
  598.          <ConfigSection>
  599.              
  600.              <IfCondition condition=':= if(age, age.phosphorousClusters > 0, utilityoreDist = "vanillaStdGen")'>    
  601.                  <StandardGen name='phosphorousStandard' block='923' inherits='PresetStandardGen'>                    
  602.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  603.                      <!--
  604.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  605.                     <WireframeColor>0x60101010</WireframeColor>
  606.                     -->
  607.                      <Setting name='Size' avg=':= 2 * utilityoreSize * _default_'/>
  608.                      <Setting name='Frequency' avg=':= utilityoreFreq * if(age,age.phosphorousClusters,1) * _default_'/>
  609.                  </StandardGen>
  610.              </IfCondition>  
  611.              
  612.              <IfCondition condition=':= if(age, age.phosphorousVeins > 0, utilityoreDist = "layeredVeins")'>    
  613.                  <Veins name='phosphorousVeins' block='923' inherits='PresetSparseVeins'>    
  614.                      <Description>
  615.                          Utility ores spawn just near the surface, and up into hills and mountains.  The veins are
  616.                          long and thick, but sparsely filled with ore and often broken up by caves or depressions
  617.                          in the terrain.
  618.                      </Description>
  619.                      <!--                    
  620.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  621.                     <WireframeColor>0x60101010</WireframeColor>
  622.                     -->
  623.                      <Setting name='MotherlodeFrequency' avg=':= 10.7 * utilityoreFreq * if(age,age.phosphorousVeins,1) * _default_'/>
  624.                      <Setting name='MotherlodeSize' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  625.                      <Setting name='MotherlodeHeight' avg=':= 60/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel'/>
  626.                      <Setting name='BranchLength' avg=':= 0.45 * _default_' range=':= 0.45 * _default_'/>
  627.                      <Setting name='BranchInclination' avg='0' range='0.35'/>
  628.                      <Setting name='BranchHeightLimit' avg='10'/>
  629.                      <Setting name='SegmentRadius' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  630.                      <Setting name='OreDensity' avg=':= 1.75 * _default_' range=':= _default_'/>
  631.                  </Veins>
  632.                  <Veins name='phosphorousVeinsSwamp' inherits='phosphorousVeins'>
  633.                      <Description>  This roughly triples the chance of finding ore in a swamp. </Description>      
  634.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  635.                      <Setting name='MotherlodeHeight' avg=':= _default_' range=':= 2 * _default_'/>
  636.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  637.                      <Biome name='Swampland'/>
  638.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>
  639.                  </Veins>      
  640.              </IfCondition>    
  641.                  
  642.              <IfCondition condition=':= if(age, age.phosphorousClouds > 0, utilityoreDist = "strategicClouds")'>    
  643.                  <Cloud name='phosphorousCloud' block='923' inherits='PresetStrategicCloud'>
  644.                      <Description>  
  645.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in swamps.
  646.                      </Description>
  647.                      <!--                    
  648.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  649.                     <WireframeColor>0x60101010</WireframeColor>
  650.                     -->
  651.                      <Setting name='DistributionFrequency' avg=':= 5 * utilityoreFreq * if(age,age.phosphorousClouds,1) * _default_'/>
  652.                      <Setting name='CloudRadius' avg=':= 1.2 * utilityoreSize * _default_' range=':= 1.2 * utilityoreSize * _default_'/>
  653.                      <Setting name='CloudThickness' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  654.                      <Setting name='OreDensity' avg=':= 0.75 * _default_'/>
  655.                      <Biome name='Swampland'/>
  656.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>  
  657.                      <Veins name='phosphorousHintVeins' block='923' inherits='PresetHintVeins'>
  658.                          <!--                    
  659.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  660.                         <WireframeColor>0x60101010</WireframeColor>
  661.                         -->
  662.                          <Setting name='MotherlodeFrequency' avg=':= 1.2 * _default_' range=':= _default_'/>
  663.                          <Setting name='MotherlodeRangeLimit' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  664.                      </Veins>                
  665.                  </Cloud>
  666.              </IfCondition>  
  667.                  
  668.          </ConfigSection>
  669.      
  670.          <!-- * sulphur * -->
  671.      
  672.          <ConfigSection>
  673.              
  674.              <IfCondition condition=':= if(age, age.sulphurClusters > 0, utilityoreDist = "vanillaStdGen")'>    
  675.                  <StandardGen name='sulphurStandard' block='923:1' inherits='PresetStandardGen'>                    
  676.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  677.                      <!--
  678.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  679.                     <WireframeColor>0x60101010</WireframeColor>
  680.                     -->
  681.                      <Setting name='Size' avg=':= 2 * utilityoreSize * _default_'/>
  682.                      <Setting name='Frequency' avg=':= utilityoreFreq * if(age,age.sulphurClusters,1) * _default_'/>
  683.                  </StandardGen>
  684.              </IfCondition>  
  685.              
  686.              <IfCondition condition=':= if(age, age.sulphurVeins > 0, utilityoreDist = "layeredVeins")'>    
  687.                  <Veins name='sulphurVeins' block='923:1' inherits='PresetSparseVeins'>    
  688.                      <Description>
  689.                          Utility ores spawn just near the surface, and up into hills and mountains.  The veins are
  690.                          long and thick, but sparsely filled with ore and often broken up by caves or depressions
  691.                          in the terrain.
  692.                      </Description>
  693.                      <!--                    
  694.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  695.                     <WireframeColor>0x60101010</WireframeColor>
  696.                     -->
  697.                      <Setting name='MotherlodeFrequency' avg=':= 10.7 * utilityoreFreq * if(age,age.sulphurVeins,1) * _default_'/>
  698.                      <Setting name='MotherlodeSize' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  699.                      <Setting name='MotherlodeHeight' avg=':= 60/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel'/>
  700.                      <Setting name='BranchLength' avg=':= 0.45 * _default_' range=':= 0.45 * _default_'/>
  701.                      <Setting name='BranchInclination' avg='0' range='0.35'/>
  702.                      <Setting name='BranchHeightLimit' avg='10'/>
  703.                      <Setting name='SegmentRadius' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  704.                      <Setting name='OreDensity' avg=':= 1.75 * _default_' range=':= _default_'/>
  705.                  </Veins>
  706.                  <Veins name='sulphurVeinsSwamp' inherits='sulphurVeins'>
  707.                      <Description>  This roughly triples the chance of finding ore in a swamp. </Description>      
  708.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  709.                      <Setting name='MotherlodeHeight' avg=':= _default_' range=':= 2 * _default_'/>
  710.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  711.                      <Biome name='Swampland'/>
  712.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>
  713.                  </Veins>      
  714.              </IfCondition>    
  715.                  
  716.              <IfCondition condition=':= if(age, age.sulphurClouds > 0, utilityoreDist = "strategicClouds")'>    
  717.                  <Cloud name='sulphurCloud' block='923:1' inherits='PresetStrategicCloud'>
  718.                      <Description>  
  719.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in swamps.
  720.                      </Description>
  721.                      <!--                    
  722.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  723.                     <WireframeColor>0x60101010</WireframeColor>
  724.                     -->
  725.                      <Setting name='DistributionFrequency' avg=':= 5 * utilityoreFreq * if(age,age.sulphurClouds,1) * _default_'/>
  726.                      <Setting name='CloudRadius' avg=':= 1.2 * utilityoreSize * _default_' range=':= 1.2 * utilityoreSize * _default_'/>
  727.                      <Setting name='CloudThickness' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  728.                      <Setting name='OreDensity' avg=':= 0.75 * _default_'/>
  729.                      <Biome name='Swampland'/>
  730.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>  
  731.                      <Veins name='sulphurHintVeins' block='923:1' inherits='PresetHintVeins'>
  732.                          <!--                    
  733.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  734.                         <WireframeColor>0x60101010</WireframeColor>
  735.                         -->
  736.                          <Setting name='MotherlodeFrequency' avg=':= 1.2 * _default_' range=':= _default_'/>
  737.                          <Setting name='MotherlodeRangeLimit' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  738.                      </Veins>                
  739.                  </Cloud>
  740.              </IfCondition>  
  741.                  
  742.          </ConfigSection>
  743.      
  744.          <!-- * saltpeter * -->
  745.      
  746.          <ConfigSection>
  747.              
  748.              <IfCondition condition=':= if(age, age.saltpeterClusters > 0, utilityoreDist = "vanillaStdGen")'>    
  749.                  <StandardGen name='saltpeterStandard' block='923:2' inherits='PresetStandardGen'>                    
  750.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  751.                      <!--
  752.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  753.                     <WireframeColor>0x60101010</WireframeColor>
  754.                     -->
  755.                      <Setting name='Size' avg=':= 2 * utilityoreSize * _default_'/>
  756.                      <Setting name='Frequency' avg=':= utilityoreFreq * if(age,age.saltpeterClusters,1) * _default_'/>
  757.                  </StandardGen>
  758.              </IfCondition>  
  759.              
  760.              <IfCondition condition=':= if(age, age.saltpeterVeins > 0, utilityoreDist = "layeredVeins")'>    
  761.                  <Veins name='saltpeterVeins' block='923:2' inherits='PresetSparseVeins'>    
  762.                      <Description>
  763.                          Utility ores spawn just near the surface, and up into hills and mountains.  The veins are
  764.                          long and thick, but sparsely filled with ore and often broken up by caves or depressions
  765.                          in the terrain.
  766.                      </Description>
  767.                      <!--                    
  768.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  769.                     <WireframeColor>0x60101010</WireframeColor>
  770.                     -->
  771.                      <Setting name='MotherlodeFrequency' avg=':= 10.7 * utilityoreFreq * if(age,age.saltpeterVeins,1) * _default_'/>
  772.                      <Setting name='MotherlodeSize' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  773.                      <Setting name='MotherlodeHeight' avg=':= 60/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel'/>
  774.                      <Setting name='BranchLength' avg=':= 0.45 * _default_' range=':= 0.45 * _default_'/>
  775.                      <Setting name='BranchInclination' avg='0' range='0.35'/>
  776.                      <Setting name='BranchHeightLimit' avg='10'/>
  777.                      <Setting name='SegmentRadius' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  778.                      <Setting name='OreDensity' avg=':= 1.75 * _default_' range=':= _default_'/>
  779.                  </Veins>
  780.                  <Veins name='saltpeterVeinsSwamp' inherits='saltpeterVeins'>
  781.                      <Description>  This roughly triples the chance of finding ore in a swamp. </Description>      
  782.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  783.                      <Setting name='MotherlodeHeight' avg=':= _default_' range=':= 2 * _default_'/>
  784.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  785.                      <Biome name='Swampland'/>
  786.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>
  787.                  </Veins>      
  788.              </IfCondition>    
  789.                  
  790.              <IfCondition condition=':= if(age, age.saltpeterClouds > 0, utilityoreDist = "strategicClouds")'>    
  791.                  <Cloud name='saltpeterCloud' block='923:2' inherits='PresetStrategicCloud'>
  792.                      <Description>  
  793.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in swamps.
  794.                      </Description>
  795.                      <!--                    
  796.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  797.                     <WireframeColor>0x60101010</WireframeColor>
  798.                     -->
  799.                      <Setting name='DistributionFrequency' avg=':= 5 * utilityoreFreq * if(age,age.saltpeterClouds,1) * _default_'/>
  800.                      <Setting name='CloudRadius' avg=':= 1.2 * utilityoreSize * _default_' range=':= 1.2 * utilityoreSize * _default_'/>
  801.                      <Setting name='CloudThickness' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  802.                      <Setting name='OreDensity' avg=':= 0.75 * _default_'/>
  803.                      <Biome name='Swampland'/>
  804.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>  
  805.                      <Veins name='saltpeterHintVeins' block='923:2' inherits='PresetHintVeins'>
  806.                          <!--                    
  807.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  808.                         <WireframeColor>0x60101010</WireframeColor>
  809.                         -->
  810.                          <Setting name='MotherlodeFrequency' avg=':= 1.2 * _default_' range=':= _default_'/>
  811.                          <Setting name='MotherlodeRangeLimit' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  812.                      </Veins>                
  813.                  </Cloud>
  814.              </IfCondition>  
  815.                  
  816.          </ConfigSection>
  817.      
  818.          <!-- * magnesium * -->
  819.      
  820.          <ConfigSection>
  821.              
  822.              <IfCondition condition=':= if(age, age.magnesiumClusters > 0, utilityoreDist = "vanillaStdGen")'>    
  823.                  <StandardGen name='magnesiumStandard' block='923:3' inherits='PresetStandardGen'>                    
  824.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  825.                      <!--
  826.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  827.                     <WireframeColor>0x60101010</WireframeColor>
  828.                     -->
  829.                      <Setting name='Size' avg=':= 2 * utilityoreSize * _default_'/>
  830.                      <Setting name='Frequency' avg=':= utilityoreFreq * if(age,age.magnesiumClusters,1) * _default_'/>
  831.                  </StandardGen>
  832.              </IfCondition>  
  833.              
  834.              <IfCondition condition=':= if(age, age.magnesiumVeins > 0, utilityoreDist = "layeredVeins")'>    
  835.                  <Veins name='magnesiumVeins' block='923:3' inherits='PresetSparseVeins'>    
  836.                      <Description>
  837.                          Utility ores spawn just near the surface, and up into hills and mountains.  The veins are
  838.                          long and thick, but sparsely filled with ore and often broken up by caves or depressions
  839.                          in the terrain.
  840.                      </Description>
  841.                      <!--                    
  842.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  843.                     <WireframeColor>0x60101010</WireframeColor>
  844.                     -->
  845.                      <Setting name='MotherlodeFrequency' avg=':= 10.7 * utilityoreFreq * if(age,age.magnesiumVeins,1) * _default_'/>
  846.                      <Setting name='MotherlodeSize' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  847.                      <Setting name='MotherlodeHeight' avg=':= 60/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel'/>
  848.                      <Setting name='BranchLength' avg=':= 0.45 * _default_' range=':= 0.45 * _default_'/>
  849.                      <Setting name='BranchInclination' avg='0' range='0.35'/>
  850.                      <Setting name='BranchHeightLimit' avg='10'/>
  851.                      <Setting name='SegmentRadius' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  852.                      <Setting name='OreDensity' avg=':= 1.75 * _default_' range=':= _default_'/>
  853.                  </Veins>
  854.                  <Veins name='magnesiumVeinsSwamp' inherits='magnesiumVeins'>
  855.                      <Description>  This roughly triples the chance of finding ore in a swamp. </Description>      
  856.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  857.                      <Setting name='MotherlodeHeight' avg=':= _default_' range=':= 2 * _default_'/>
  858.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  859.                      <Biome name='Swampland'/>
  860.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>
  861.                  </Veins>      
  862.              </IfCondition>    
  863.                  
  864.              <IfCondition condition=':= if(age, age.magnesiumClouds > 0, utilityoreDist = "strategicClouds")'>    
  865.                  <Cloud name='magnesiumCloud' block='923:3' inherits='PresetStrategicCloud'>
  866.                      <Description>  
  867.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in swamps.
  868.                      </Description>
  869.                      <!--                    
  870.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  871.                     <WireframeColor>0x60101010</WireframeColor>
  872.                     -->
  873.                      <Setting name='DistributionFrequency' avg=':= 5 * utilityoreFreq * if(age,age.magnesiumClouds,1) * _default_'/>
  874.                      <Setting name='CloudRadius' avg=':= 1.2 * utilityoreSize * _default_' range=':= 1.2 * utilityoreSize * _default_'/>
  875.                      <Setting name='CloudThickness' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  876.                      <Setting name='OreDensity' avg=':= 0.75 * _default_'/>
  877.                      <Biome name='Swampland'/>
  878.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>  
  879.                      <Veins name='magnesiumHintVeins' block='923:3' inherits='PresetHintVeins'>
  880.                          <!--                    
  881.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  882.                         <WireframeColor>0x60101010</WireframeColor>
  883.                         -->
  884.                          <Setting name='MotherlodeFrequency' avg=':= 1.2 * _default_' range=':= _default_'/>
  885.                          <Setting name='MotherlodeRangeLimit' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  886.                      </Veins>                
  887.                  </Cloud>
  888.              </IfCondition>  
  889.                  
  890.          </ConfigSection>
  891.      
  892.          <!-- * bitumen * -->
  893.      
  894.          <ConfigSection>
  895.              
  896.              <IfCondition condition=':= if(age, age.bitumenClusters > 0, utilityoreDist = "vanillaStdGen")'>    
  897.                  <StandardGen name='bitumenStandard' block='923:4' inherits='PresetStandardGen'>                    
  898.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  899.                      <!--
  900.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  901.                     <WireframeColor>0x60101010</WireframeColor>
  902.                     -->
  903.                      <Setting name='Size' avg=':= 2 * utilityoreSize * _default_'/>
  904.                      <Setting name='Frequency' avg=':= utilityoreFreq * if(age,age.bitumenClusters,1) * _default_'/>
  905.                  </StandardGen>
  906.              </IfCondition>  
  907.              
  908.              <IfCondition condition=':= if(age, age.bitumenVeins > 0, utilityoreDist = "layeredVeins")'>    
  909.                  <Veins name='bitumenVeins' block='923:4' inherits='PresetSparseVeins'>    
  910.                      <Description>
  911.                          Utility ores spawn just near the surface, and up into hills and mountains.  The veins are
  912.                          long and thick, but sparsely filled with ore and often broken up by caves or depressions
  913.                          in the terrain.
  914.                      </Description>
  915.                      <!--                    
  916.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  917.                     <WireframeColor>0x60101010</WireframeColor>
  918.                     -->
  919.                      <Setting name='MotherlodeFrequency' avg=':= 10.7 * utilityoreFreq * if(age,age.bitumenVeins,1) * _default_'/>
  920.                      <Setting name='MotherlodeSize' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  921.                      <Setting name='MotherlodeHeight' avg=':= 60/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel'/>
  922.                      <Setting name='BranchLength' avg=':= 0.45 * _default_' range=':= 0.45 * _default_'/>
  923.                      <Setting name='BranchInclination' avg='0' range='0.35'/>
  924.                      <Setting name='BranchHeightLimit' avg='10'/>
  925.                      <Setting name='SegmentRadius' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  926.                      <Setting name='OreDensity' avg=':= 1.75 * _default_' range=':= _default_'/>
  927.                  </Veins>
  928.                  <Veins name='bitumenVeinsSwamp' inherits='bitumenVeins'>
  929.                      <Description>  This roughly triples the chance of finding ore in a swamp. </Description>      
  930.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  931.                      <Setting name='MotherlodeHeight' avg=':= _default_' range=':= 2 * _default_'/>
  932.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  933.                      <Biome name='Swampland'/>
  934.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>
  935.                  </Veins>      
  936.              </IfCondition>    
  937.                  
  938.              <IfCondition condition=':= if(age, age.bitumenClouds > 0, utilityoreDist = "strategicClouds")'>    
  939.                  <Cloud name='bitumenCloud' block='923:4' inherits='PresetStrategicCloud'>
  940.                      <Description>  
  941.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in swamps.
  942.                      </Description>
  943.                      <!--                    
  944.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  945.                     <WireframeColor>0x60101010</WireframeColor>
  946.                     -->
  947.                      <Setting name='DistributionFrequency' avg=':= 5 * utilityoreFreq * if(age,age.bitumenClouds,1) * _default_'/>
  948.                      <Setting name='CloudRadius' avg=':= 1.2 * utilityoreSize * _default_' range=':= 1.2 * utilityoreSize * _default_'/>
  949.                      <Setting name='CloudThickness' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  950.                      <Setting name='OreDensity' avg=':= 0.75 * _default_'/>
  951.                      <Biome name='Swampland'/>
  952.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>  
  953.                      <Veins name='bitumenHintVeins' block='923:4' inherits='PresetHintVeins'>
  954.                          <!--                    
  955.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  956.                         <WireframeColor>0x60101010</WireframeColor>
  957.                         -->
  958.                          <Setting name='MotherlodeFrequency' avg=':= 1.2 * _default_' range=':= _default_'/>
  959.                          <Setting name='MotherlodeRangeLimit' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  960.                      </Veins>                
  961.                  </Cloud>
  962.              </IfCondition>  
  963.                  
  964.          </ConfigSection>
  965.      
  966.          <!-- * potash * -->
  967.      
  968.          <ConfigSection>
  969.              
  970.              <IfCondition condition=':= if(age, age.potashClusters > 0, utilityoreDist = "vanillaStdGen")'>    
  971.                  <StandardGen name='potashStandard' block='923:5' inherits='PresetStandardGen'>                    
  972.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  973.                      <!--
  974.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  975.                     <WireframeColor>0x60101010</WireframeColor>
  976.                     -->
  977.                      <Setting name='Size' avg=':= 2 * utilityoreSize * _default_'/>
  978.                      <Setting name='Frequency' avg=':= utilityoreFreq * if(age,age.potashClusters,1) * _default_'/>
  979.                  </StandardGen>
  980.              </IfCondition>  
  981.              
  982.              <IfCondition condition=':= if(age, age.potashVeins > 0, utilityoreDist = "layeredVeins")'>    
  983.                  <Veins name='potashVeins' block='923:5' inherits='PresetSparseVeins'>    
  984.                      <Description>
  985.                          Utility ores spawn just near the surface, and up into hills and mountains.  The veins are
  986.                          long and thick, but sparsely filled with ore and often broken up by caves or depressions
  987.                          in the terrain.
  988.                      </Description>
  989.                      <!--                    
  990.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  991.                     <WireframeColor>0x60101010</WireframeColor>
  992.                     -->
  993.                      <Setting name='MotherlodeFrequency' avg=':= 10.7 * utilityoreFreq * if(age,age.potashVeins,1) * _default_'/>
  994.                      <Setting name='MotherlodeSize' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  995.                      <Setting name='MotherlodeHeight' avg=':= 60/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel'/>
  996.                      <Setting name='BranchLength' avg=':= 0.45 * _default_' range=':= 0.45 * _default_'/>
  997.                      <Setting name='BranchInclination' avg='0' range='0.35'/>
  998.                      <Setting name='BranchHeightLimit' avg='10'/>
  999.                      <Setting name='SegmentRadius' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  1000.                      <Setting name='OreDensity' avg=':= 1.75 * _default_' range=':= _default_'/>
  1001.                  </Veins>
  1002.                  <Veins name='potashVeinsSwamp' inherits='potashVeins'>
  1003.                      <Description>  This roughly triples the chance of finding ore in a swamp. </Description>      
  1004.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1005.                      <Setting name='MotherlodeHeight' avg=':= _default_' range=':= 2 * _default_'/>
  1006.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1007.                      <Biome name='Swampland'/>
  1008.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>
  1009.                  </Veins>      
  1010.              </IfCondition>    
  1011.                  
  1012.              <IfCondition condition=':= if(age, age.potashClouds > 0, utilityoreDist = "strategicClouds")'>    
  1013.                  <Cloud name='potashCloud' block='923:5' inherits='PresetStrategicCloud'>
  1014.                      <Description>  
  1015.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in swamps.
  1016.                      </Description>
  1017.                      <!--                    
  1018.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1019.                     <WireframeColor>0x60101010</WireframeColor>
  1020.                     -->
  1021.                      <Setting name='DistributionFrequency' avg=':= 5 * utilityoreFreq * if(age,age.potashClouds,1) * _default_'/>
  1022.                      <Setting name='CloudRadius' avg=':= 1.2 * utilityoreSize * _default_' range=':= 1.2 * utilityoreSize * _default_'/>
  1023.                      <Setting name='CloudThickness' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  1024.                      <Setting name='OreDensity' avg=':= 0.75 * _default_'/>
  1025.                      <Biome name='Swampland'/>
  1026.                      <Biome name='Green\s*Swamplands'/> <Comment> ExtraBiomesXL </Comment>  
  1027.                      <Veins name='potashHintVeins' block='923:5' inherits='PresetHintVeins'>
  1028.                          <!--                    
  1029.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  1030.                         <WireframeColor>0x60101010</WireframeColor>
  1031.                         -->
  1032.                          <Setting name='MotherlodeFrequency' avg=':= 1.2 * _default_' range=':= _default_'/>
  1033.                          <Setting name='MotherlodeRangeLimit' avg=':= utilityoreSize * _default_' range=':= utilityoreSize * _default_'/>
  1034.                      </Veins>                
  1035.                  </Cloud>
  1036.              </IfCondition>  
  1037.                  
  1038.          </ConfigSection>
  1039.      
  1040.          <!--*******************   Base Ores   ***********************
  1041.         *  
  1042.         *   Base ores include tin, copper, and manganese.  Distribution
  1043.         *   is based on iron
  1044.         *  
  1045.         **********************************************************-->
  1046.      
  1047.          <!-- * copper * -->
  1048.      
  1049.          <ConfigSection>
  1050.          
  1051.              <IfCondition condition=':= if(age, age.copperClusters > 0, baseDist = "vanillaStdGen")'>
  1052.                  <StandardGen name='copperStandard' block='901' inherits='PresetStandardGen'>
  1053.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1054.                      <!--                    
  1055.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1056.                     <WireframeColor>0x60101010</WireframeColor>
  1057.                     -->
  1058.                      <Setting name='Size' avg=':= baseSize * _default_'/>
  1059.                      <Setting name='Frequency' avg=':= baseFreq * if(age,age.copperClusters,1) * _default_'/>
  1060.                      <Setting name='Height' avg=':= 32/64 * dimension.groundLevel' range=':= 32/64 * dimension.groundLevel'/>
  1061.                  </StandardGen>
  1062.              </IfCondition>
  1063.                  
  1064.              <IfCondition condition=':= if(age, age.copperVeins > 0, baseDist = "layeredVeins")'>
  1065.                  <Veins name='copperVeins' block='901' inherits='PresetLayeredVeins'>
  1066.                      <Description>
  1067.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  1068.                      </Description>
  1069.                      <!--                    
  1070.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1071.                     <WireframeColor>0x60101010</WireframeColor>
  1072.                     -->
  1073.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * baseFreq * if(age,age.copperVeins,1) * _default_'/>
  1074.                      <Setting name='MotherlodeSize' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1075.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * dimension.groundLevel' range=':= 10.5/64 * dimension.groundLevel' type='normal'/>
  1076.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  1077.                      <Setting name='SegmentRadius' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1078.                  </Veins>
  1079.                  <Veins name='copperVeinsCold' inherits='copperVeins'>
  1080.                      <Description> This roughly triples the chance of finding ore in cold/icy biomes. </Description>
  1081.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1082.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1083.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1084.                      <Biome name='Taiga'/>
  1085.                      <Biome name='TaigaHills'/>
  1086.                      <Biome name='Ice\s*Plains'/>
  1087.                      <Biome name='Ice\s*Mountains'/>
  1088.                      <Biome name='Alpine'/> <Comment> ExtraBiomesXL </Comment>
  1089.                      <Biome name='Glacier'/> <Comment> ExtraBiomesXL </Comment>
  1090.                      <Biome name='Ice\s*Wasteland'/> <Comment> ExtraBiomesXL </Comment>
  1091.                      <Biome name='Mountain\s*Taiga'/> <Comment> ExtraBiomesXL </Comment>
  1092.                      <Biome name='Snow\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1093.                      <Biome name='Tundra'/> <Comment> ExtraBiomesXL </Comment>
  1094.                  </Veins>
  1095.              </IfCondition>  
  1096.                  
  1097.              <IfCondition condition=':= if(age, age.copperClouds > 0, baseDist = "strategicClouds")'>
  1098.                  <Cloud name='copperCloud' block='901' inherits='PresetStrategicCloud'>
  1099.                      <Description>  
  1100.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  1101.                      </Description>
  1102.                      <!--                    
  1103.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1104.                     <WireframeColor>0x60101010</WireframeColor>
  1105.                     -->
  1106.                      <Setting name='DistributionFrequency' avg=':= 2.5 * baseFreq * if(age,age.copperClouds,1) * _default_'/>
  1107.                      <Setting name='CloudRadius' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1108.                      <Setting name='CloudThickness' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1109.                      <Biome name='Taiga'/>
  1110.                      <Biome name='TaigaHills'/>
  1111.                      <Biome name='Ice\s*Plains'/>
  1112.                      <Biome name='Ice\s*Mountains'/>
  1113.                      <Biome name='Alpine'/> <Comment> ExtraBiomesXL </Comment>
  1114.                      <Biome name='Glacier'/> <Comment> ExtraBiomesXL </Comment>
  1115.                      <Biome name='Ice\s*Wasteland'/> <Comment> ExtraBiomesXL </Comment>
  1116.                      <Biome name='Mountain\s*Taiga'/> <Comment> ExtraBiomesXL </Comment>
  1117.                      <Biome name='Snow\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1118.                      <Biome name='Tundra'/> <Comment> ExtraBiomesXL </Comment>  
  1119.                      <Veins name='copperHintVeins' block='901' inherits='PresetHintVeins'>
  1120.                          <!--                    
  1121.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  1122.                         <WireframeColor>0x60101010</WireframeColor>
  1123.                         -->
  1124.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  1125.                          <Setting name='MotherlodeRangeLimit' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>              
  1126.                      </Veins>                        
  1127.                  </Cloud>
  1128.              </IfCondition>      
  1129.        
  1130.          </ConfigSection>
  1131.      
  1132.          <!-- * tin * -->
  1133.      
  1134.          <ConfigSection>
  1135.          
  1136.              <IfCondition condition=':= if(age, age.tinClusters > 0, baseDist = "vanillaStdGen")'>
  1137.                  <StandardGen name='tinStandard' block='901:1' inherits='PresetStandardGen'>
  1138.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1139.                      <!--                    
  1140.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1141.                     <WireframeColor>0x60101010</WireframeColor>
  1142.                     -->
  1143.                      <Setting name='Size' avg=':= baseSize * _default_'/>
  1144.                      <Setting name='Frequency' avg=':= baseFreq * if(age,age.tinClusters,1) * _default_'/>
  1145.                      <Setting name='Height' avg=':= 32/64 * dimension.groundLevel' range=':= 32/64 * dimension.groundLevel'/>
  1146.                  </StandardGen>
  1147.              </IfCondition>
  1148.                  
  1149.              <IfCondition condition=':= if(age, age.tinVeins > 0, baseDist = "layeredVeins")'>
  1150.                  <Veins name='tinVeins' block='901:1' inherits='PresetLayeredVeins'>
  1151.                      <Description>
  1152.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  1153.                      </Description>
  1154.                      <!--                    
  1155.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1156.                     <WireframeColor>0x60101010</WireframeColor>
  1157.                     -->
  1158.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * baseFreq * if(age,age.tinVeins,1) * _default_'/>
  1159.                      <Setting name='MotherlodeSize' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1160.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * dimension.groundLevel' range=':= 10.5/64 * dimension.groundLevel' type='normal'/>
  1161.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  1162.                      <Setting name='SegmentRadius' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1163.                  </Veins>
  1164.                  <Veins name='tinVeinsCold' inherits='tinVeins'>
  1165.                      <Description> This roughly triples the chance of finding ore in cold/icy biomes. </Description>
  1166.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1167.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1168.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1169.                      <Biome name='Taiga'/>
  1170.                      <Biome name='TaigaHills'/>
  1171.                      <Biome name='Ice\s*Plains'/>
  1172.                      <Biome name='Ice\s*Mountains'/>
  1173.                      <Biome name='Alpine'/> <Comment> ExtraBiomesXL </Comment>
  1174.                      <Biome name='Glacier'/> <Comment> ExtraBiomesXL </Comment>
  1175.                      <Biome name='Ice\s*Wasteland'/> <Comment> ExtraBiomesXL </Comment>
  1176.                      <Biome name='Mountain\s*Taiga'/> <Comment> ExtraBiomesXL </Comment>
  1177.                      <Biome name='Snow\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1178.                      <Biome name='Tundra'/> <Comment> ExtraBiomesXL </Comment>
  1179.                  </Veins>
  1180.              </IfCondition>  
  1181.                  
  1182.              <IfCondition condition=':= if(age, age.tinClouds > 0, baseDist = "strategicClouds")'>
  1183.                  <Cloud name='tinCloud' block='901:1' inherits='PresetStrategicCloud'>
  1184.                      <Description>  
  1185.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  1186.                      </Description>
  1187.                      <!--                    
  1188.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1189.                     <WireframeColor>0x60101010</WireframeColor>
  1190.                     -->
  1191.                      <Setting name='DistributionFrequency' avg=':= 2.5 * baseFreq * if(age,age.tinClouds,1) * _default_'/>
  1192.                      <Setting name='CloudRadius' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1193.                      <Setting name='CloudThickness' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1194.                      <Biome name='Taiga'/>
  1195.                      <Biome name='TaigaHills'/>
  1196.                      <Biome name='Ice\s*Plains'/>
  1197.                      <Biome name='Ice\s*Mountains'/>
  1198.                      <Biome name='Alpine'/> <Comment> ExtraBiomesXL </Comment>
  1199.                      <Biome name='Glacier'/> <Comment> ExtraBiomesXL </Comment>
  1200.                      <Biome name='Ice\s*Wasteland'/> <Comment> ExtraBiomesXL </Comment>
  1201.                      <Biome name='Mountain\s*Taiga'/> <Comment> ExtraBiomesXL </Comment>
  1202.                      <Biome name='Snow\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1203.                      <Biome name='Tundra'/> <Comment> ExtraBiomesXL </Comment>  
  1204.                      <Veins name='tinHintVeins' block='901:1' inherits='PresetHintVeins'>
  1205.                          <!--                    
  1206.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  1207.                         <WireframeColor>0x60101010</WireframeColor>
  1208.                         -->
  1209.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  1210.                          <Setting name='MotherlodeRangeLimit' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>              
  1211.                      </Veins>                        
  1212.                  </Cloud>
  1213.              </IfCondition>      
  1214.        
  1215.          </ConfigSection>
  1216.      
  1217.          <!-- * manganese * -->
  1218.      
  1219.          <ConfigSection>
  1220.          
  1221.              <IfCondition condition=':= if(age, age.manganeseClusters > 0, baseDist = "vanillaStdGen")'>
  1222.                  <StandardGen name='manganeseStandard' block='901:2' inherits='PresetStandardGen'>
  1223.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1224.                      <!--                    
  1225.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1226.                     <WireframeColor>0x60101010</WireframeColor>
  1227.                     -->
  1228.                      <Setting name='Size' avg=':= baseSize * _default_'/>
  1229.                      <Setting name='Frequency' avg=':= baseFreq * if(age,age.manganeseClusters,1) * _default_'/>
  1230.                      <Setting name='Height' avg=':= 32/64 * dimension.groundLevel' range=':= 32/64 * dimension.groundLevel'/>
  1231.                  </StandardGen>
  1232.              </IfCondition>
  1233.                  
  1234.              <IfCondition condition=':= if(age, age.manganeseVeins > 0, baseDist = "layeredVeins")'>
  1235.                  <Veins name='manganeseVeins' block='901:2' inherits='PresetLayeredVeins'>
  1236.                      <Description>
  1237.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  1238.                      </Description>
  1239.                      <!--                    
  1240.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1241.                     <WireframeColor>0x60101010</WireframeColor>
  1242.                     -->
  1243.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * baseFreq * if(age,age.manganeseVeins,1) * _default_'/>
  1244.                      <Setting name='MotherlodeSize' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1245.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * dimension.groundLevel' range=':= 10.5/64 * dimension.groundLevel' type='normal'/>
  1246.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  1247.                      <Setting name='SegmentRadius' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1248.                  </Veins>
  1249.                  <Veins name='manganeseVeinsCold' inherits='manganeseVeins'>
  1250.                      <Description> This roughly triples the chance of finding ore in cold/icy biomes. </Description>
  1251.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1252.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1253.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1254.                      <Biome name='Taiga'/>
  1255.                      <Biome name='TaigaHills'/>
  1256.                      <Biome name='Ice\s*Plains'/>
  1257.                      <Biome name='Ice\s*Mountains'/>
  1258.                      <Biome name='Alpine'/> <Comment> ExtraBiomesXL </Comment>
  1259.                      <Biome name='Glacier'/> <Comment> ExtraBiomesXL </Comment>
  1260.                      <Biome name='Ice\s*Wasteland'/> <Comment> ExtraBiomesXL </Comment>
  1261.                      <Biome name='Mountain\s*Taiga'/> <Comment> ExtraBiomesXL </Comment>
  1262.                      <Biome name='Snow\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1263.                      <Biome name='Tundra'/> <Comment> ExtraBiomesXL </Comment>
  1264.                  </Veins>
  1265.              </IfCondition>  
  1266.                  
  1267.              <IfCondition condition=':= if(age, age.manganeseClouds > 0, baseDist = "strategicClouds")'>
  1268.                  <Cloud name='manganeseCloud' block='901:2' inherits='PresetStrategicCloud'>
  1269.                      <Description>  
  1270.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  1271.                      </Description>
  1272.                      <!--                    
  1273.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1274.                     <WireframeColor>0x60101010</WireframeColor>
  1275.                     -->
  1276.                      <Setting name='DistributionFrequency' avg=':= 2.5 * baseFreq * if(age,age.manganeseClouds,1) * _default_'/>
  1277.                      <Setting name='CloudRadius' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1278.                      <Setting name='CloudThickness' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>
  1279.                      <Biome name='Taiga'/>
  1280.                      <Biome name='TaigaHills'/>
  1281.                      <Biome name='Ice\s*Plains'/>
  1282.                      <Biome name='Ice\s*Mountains'/>
  1283.                      <Biome name='Alpine'/> <Comment> ExtraBiomesXL </Comment>
  1284.                      <Biome name='Glacier'/> <Comment> ExtraBiomesXL </Comment>
  1285.                      <Biome name='Ice\s*Wasteland'/> <Comment> ExtraBiomesXL </Comment>
  1286.                      <Biome name='Mountain\s*Taiga'/> <Comment> ExtraBiomesXL </Comment>
  1287.                      <Biome name='Snow\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1288.                      <Biome name='Tundra'/> <Comment> ExtraBiomesXL </Comment>  
  1289.                      <Veins name='manganeseHintVeins' block='901:2' inherits='PresetHintVeins'>
  1290.                          <!--                    
  1291.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  1292.                         <WireframeColor>0x60101010</WireframeColor>
  1293.                         -->
  1294.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  1295.                          <Setting name='MotherlodeRangeLimit' avg=':= baseSize * _default_' range=':= baseSize * _default_'/>              
  1296.                      </Veins>                        
  1297.                  </Cloud>
  1298.              </IfCondition>      
  1299.        
  1300.          </ConfigSection>
  1301.      
  1302.          <!--*******************   Precious Ores   ***********************
  1303.         *  
  1304.         *   Precious Ores include Zinc, Silver, and Platinum.  Gold is
  1305.         *   technically also a precious ore, but it is handled by the
  1306.         *   vanilla Minecraft settings.  Distribution is based on
  1307.         *   gold.
  1308.         *  
  1309.         **********************************************************-->
  1310.      
  1311.          <!-- * zinc * -->
  1312.      
  1313.          <ConfigSection>
  1314.      
  1315.              <IfCondition condition=':= if(age, age.zincClusters > 0, preciousDist = "vanillaStdGen")'>
  1316.                  <StandardGen name='zincStandard' block='910' inherits='PresetStandardGen'>
  1317.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1318.                  <!--                    
  1319.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  1320.                 <WireframeColor>0x60101010</WireframeColor>
  1321.                 -->
  1322.                  <Setting name='Size' avg=':= preciousSize * _default_'/>
  1323.                      <Setting name='Frequency' avg=':= 0.1 * preciousFreq * if(age,age.zincClusters,1) * _default_'/>
  1324.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  1325.                  </StandardGen>
  1326.              </IfCondition>
  1327.                      
  1328.              <IfCondition condition=':= if(age, age.zincVeins > 0, preciousDist = "layeredVeins")'>
  1329.                  <Veins name='zincVeins' block='910' inherits='PresetLayeredVeins'>
  1330.                      <Description>
  1331.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  1332.                          and much rarer overall.  Ore is not easy to find.
  1333.                      </Description>  
  1334.                      <!--                    
  1335.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1336.                     <WireframeColor>0x60101010</WireframeColor>
  1337.                     -->
  1338.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * preciousFreq * if(age,age.zincVeins,1) * _default_'/>
  1339.                      <Setting name='MotherlodeSize' avg=':= 0.8 * preciousSize * _default_' range=':= 0.5 * preciousSize * _default_'/>
  1340.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  1341.                      <Setting name='BranchHeightLimit' avg='10'/>  
  1342.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  1343.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  1344.                      <Setting name='SegmentRadius' avg=':= 0.7 * preciousSize * _default_' range=':= 0.5 * preciousSize * _default_'/>
  1345.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  1346.                  </Veins>
  1347.                  <Veins name='zincVeinsForest' inherits='zincVeins'>
  1348.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  1349.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1350.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1351.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1352.                      <Biome name='Forest'/>    
  1353.                      <Biome name='ForestHills'/>      
  1354.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1355.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1356.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1357.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1358.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1359.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  1360.                  </Veins>
  1361.              </IfCondition>
  1362.                      
  1363.              <IfCondition condition=':= if(age, age.zincClouds > 0, preciousDist = "strategicClouds")'>
  1364.                  <Cloud name='zincCloud' block='910' inherits='PresetStrategicCloud'>
  1365.                      <Description>  
  1366.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  1367.                      </Description>
  1368.                      <!--                    
  1369.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1370.                     <WireframeColor>0x60101010</WireframeColor>
  1371.                     -->
  1372.                      <Setting name='DistributionFrequency' avg=':= 4.5 * preciousFreq * if(age,age.zincClouds,1) * _default_'/>
  1373.                      <Setting name='CloudRadius' avg=':= 0.8 * preciousSize * _default_' range=':= 0.8 * preciousSize * _default_'/>
  1374.                      <Setting name='CloudThickness' avg=':= 0.8 * preciousSize * _default_' range=':= preciousSize * _default_'/>
  1375.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  1376.                      <Biome name='Forest'/>    
  1377.                      <Biome name='ForestHills'/>      
  1378.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1379.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1380.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1381.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1382.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1383.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  1384.                      <Veins name='zincHintVeins' block='910' inherits='PresetHintVeins'>
  1385.                      <!--                    
  1386.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1387.                     <WireframeColor>0x60101010</WireframeColor>
  1388.                     -->
  1389.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  1390.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * preciousSize * _default_' range=':= 0.65 * preciousSize * _default_'/>                    
  1391.                      </Veins>            
  1392.                  </Cloud>
  1393.              </IfCondition>      
  1394.        
  1395.          </ConfigSection>
  1396.      
  1397.          <!-- * silver * -->
  1398.      
  1399.          <ConfigSection>
  1400.      
  1401.              <IfCondition condition=':= if(age, age.silverClusters > 0, preciousDist = "vanillaStdGen")'>
  1402.                  <StandardGen name='silverStandard' block='910:1' inherits='PresetStandardGen'>
  1403.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1404.                  <!--                    
  1405.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  1406.                 <WireframeColor>0x60101010</WireframeColor>
  1407.                 -->
  1408.                  <Setting name='Size' avg=':= preciousSize * _default_'/>
  1409.                      <Setting name='Frequency' avg=':= 0.1 * preciousFreq * if(age,age.silverClusters,1) * _default_'/>
  1410.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  1411.                  </StandardGen>
  1412.              </IfCondition>
  1413.                      
  1414.              <IfCondition condition=':= if(age, age.silverVeins > 0, preciousDist = "layeredVeins")'>
  1415.                  <Veins name='silverVeins' block='910:1' inherits='PresetLayeredVeins'>
  1416.                      <Description>
  1417.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  1418.                          and much rarer overall.  Ore is not easy to find.
  1419.                      </Description>  
  1420.                      <!--                    
  1421.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1422.                     <WireframeColor>0x60101010</WireframeColor>
  1423.                     -->
  1424.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * preciousFreq * if(age,age.silverVeins,1) * _default_'/>
  1425.                      <Setting name='MotherlodeSize' avg=':= 0.8 * preciousSize * _default_' range=':= 0.5 * preciousSize * _default_'/>
  1426.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  1427.                      <Setting name='BranchHeightLimit' avg='10'/>  
  1428.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  1429.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  1430.                      <Setting name='SegmentRadius' avg=':= 0.7 * preciousSize * _default_' range=':= 0.5 * preciousSize * _default_'/>
  1431.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  1432.                  </Veins>
  1433.                  <Veins name='silverVeinsForest' inherits='silverVeins'>
  1434.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  1435.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1436.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1437.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1438.                      <Biome name='Forest'/>    
  1439.                      <Biome name='ForestHills'/>      
  1440.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1441.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1442.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1443.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1444.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1445.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  1446.                  </Veins>
  1447.              </IfCondition>
  1448.                      
  1449.              <IfCondition condition=':= if(age, age.silverClouds > 0, preciousDist = "strategicClouds")'>
  1450.                  <Cloud name='silverCloud' block='910:1' inherits='PresetStrategicCloud'>
  1451.                      <Description>  
  1452.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  1453.                      </Description>
  1454.                      <!--                    
  1455.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1456.                     <WireframeColor>0x60101010</WireframeColor>
  1457.                     -->
  1458.                      <Setting name='DistributionFrequency' avg=':= 4.5 * preciousFreq * if(age,age.silverClouds,1) * _default_'/>
  1459.                      <Setting name='CloudRadius' avg=':= 0.8 * preciousSize * _default_' range=':= 0.8 * preciousSize * _default_'/>
  1460.                      <Setting name='CloudThickness' avg=':= 0.8 * preciousSize * _default_' range=':= preciousSize * _default_'/>
  1461.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  1462.                      <Biome name='Forest'/>    
  1463.                      <Biome name='ForestHills'/>      
  1464.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1465.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1466.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1467.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1468.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1469.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  1470.                      <Veins name='silverHintVeins' block='910:1' inherits='PresetHintVeins'>
  1471.                      <!--                    
  1472.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1473.                     <WireframeColor>0x60101010</WireframeColor>
  1474.                     -->
  1475.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  1476.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * preciousSize * _default_' range=':= 0.65 * preciousSize * _default_'/>                    
  1477.                      </Veins>            
  1478.                  </Cloud>
  1479.              </IfCondition>      
  1480.        
  1481.          </ConfigSection>
  1482.      
  1483.          <!-- * platinum * -->
  1484.      
  1485.          <ConfigSection>
  1486.      
  1487.              <IfCondition condition=':= if(age, age.platinumClusters > 0, preciousDist = "vanillaStdGen")'>
  1488.                  <StandardGen name='platinumStandard' block='910:2' inherits='PresetStandardGen'>
  1489.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1490.                  <!--                    
  1491.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  1492.                 <WireframeColor>0x60101010</WireframeColor>
  1493.                 -->
  1494.                  <Setting name='Size' avg=':= preciousSize * _default_'/>
  1495.                      <Setting name='Frequency' avg=':= 0.1 * preciousFreq * if(age,age.platinumClusters,1) * _default_'/>
  1496.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  1497.                  </StandardGen>
  1498.              </IfCondition>
  1499.                      
  1500.              <IfCondition condition=':= if(age, age.platinumVeins > 0, preciousDist = "layeredVeins")'>
  1501.                  <Veins name='platinumVeins' block='910:2' inherits='PresetLayeredVeins'>
  1502.                      <Description>
  1503.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  1504.                          and much rarer overall.  Ore is not easy to find.
  1505.                      </Description>  
  1506.                      <!--                    
  1507.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1508.                     <WireframeColor>0x60101010</WireframeColor>
  1509.                     -->
  1510.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * preciousFreq * if(age,age.platinumVeins,1) * _default_'/>
  1511.                      <Setting name='MotherlodeSize' avg=':= 0.8 * preciousSize * _default_' range=':= 0.5 * preciousSize * _default_'/>
  1512.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  1513.                      <Setting name='BranchHeightLimit' avg='10'/>  
  1514.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  1515.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  1516.                      <Setting name='SegmentRadius' avg=':= 0.7 * preciousSize * _default_' range=':= 0.5 * preciousSize * _default_'/>
  1517.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  1518.                  </Veins>
  1519.                  <Veins name='platinumVeinsForest' inherits='platinumVeins'>
  1520.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  1521.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1522.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1523.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1524.                      <Biome name='Forest'/>    
  1525.                      <Biome name='ForestHills'/>      
  1526.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1527.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1528.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1529.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1530.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1531.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  1532.                  </Veins>
  1533.              </IfCondition>
  1534.                      
  1535.              <IfCondition condition=':= if(age, age.platinumClouds > 0, preciousDist = "strategicClouds")'>
  1536.                  <Cloud name='platinumCloud' block='910:2' inherits='PresetStrategicCloud'>
  1537.                      <Description>  
  1538.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  1539.                      </Description>
  1540.                      <!--                    
  1541.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1542.                     <WireframeColor>0x60101010</WireframeColor>
  1543.                     -->
  1544.                      <Setting name='DistributionFrequency' avg=':= 4.5 * preciousFreq * if(age,age.platinumClouds,1) * _default_'/>
  1545.                      <Setting name='CloudRadius' avg=':= 0.8 * preciousSize * _default_' range=':= 0.8 * preciousSize * _default_'/>
  1546.                      <Setting name='CloudThickness' avg=':= 0.8 * preciousSize * _default_' range=':= preciousSize * _default_'/>
  1547.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  1548.                      <Biome name='Forest'/>    
  1549.                      <Biome name='ForestHills'/>      
  1550.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1551.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1552.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1553.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1554.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1555.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  1556.                      <Veins name='platinumHintVeins' block='910:2' inherits='PresetHintVeins'>
  1557.                      <!--                    
  1558.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1559.                     <WireframeColor>0x60101010</WireframeColor>
  1560.                     -->
  1561.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  1562.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * preciousSize * _default_' range=':= 0.65 * preciousSize * _default_'/>                    
  1563.                      </Veins>            
  1564.                  </Cloud>
  1565.              </IfCondition>      
  1566.        
  1567.          </ConfigSection>
  1568.      
  1569.          <!--*******************   Fantasy Ores   ***********************
  1570.         *  
  1571.         *   Fantasy Ores include promethium, deep iron, infuscolium,
  1572.         *   oureclase, aredrite, astral silver, carmot, mithril,
  1573.         *   rubracium, orichalcum, adamantine, and atlarus.  Distribution
  1574.         *   is based on gold.
  1575.         *  
  1576.         **********************************************************-->
  1577.      
  1578.          <!-- * promethium * -->
  1579.      
  1580.          <ConfigSection>
  1581.      
  1582.              <IfCondition condition=':= if(age, age.promethiumClusters > 0, fantasyDist = "vanillaStdGen")'>
  1583.                  <StandardGen name='promethiumStandard' block='919' inherits='PresetStandardGen'>
  1584.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1585.                  <!--                    
  1586.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  1587.                 <WireframeColor>0x60101010</WireframeColor>
  1588.                 -->
  1589.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  1590.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.promethiumClusters,1) * _default_'/>
  1591.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  1592.                  </StandardGen>
  1593.              </IfCondition>
  1594.                      
  1595.              <IfCondition condition=':= if(age, age.promethiumVeins > 0, fantasyDist = "layeredVeins")'>
  1596.                  <Veins name='promethiumVeins' block='919' inherits='PresetLayeredVeins'>
  1597.                      <Description>
  1598.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  1599.                          and much rarer overall.  Ore is not easy to find.
  1600.                      </Description>  
  1601.                      <!--                    
  1602.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1603.                     <WireframeColor>0x60101010</WireframeColor>
  1604.                     -->
  1605.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.promethiumVeins,1) * _default_'/>
  1606.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1607.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  1608.                      <Setting name='BranchHeightLimit' avg='10'/>  
  1609.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  1610.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  1611.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1612.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  1613.                  </Veins>
  1614.                  <Veins name='promethiumVeinsForest' inherits='promethiumVeins'>
  1615.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  1616.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1617.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1618.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1619.                      <Biome name='Forest'/>    
  1620.                      <Biome name='ForestHills'/>      
  1621.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1622.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1623.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1624.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1625.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1626.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  1627.                  </Veins>
  1628.              </IfCondition>
  1629.                      
  1630.              <IfCondition condition=':= if(age, age.promethiumClouds > 0, fantasyDist = "strategicClouds")'>
  1631.                  <Cloud name='promethiumCloud' block='919' inherits='PresetStrategicCloud'>
  1632.                      <Description>  
  1633.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  1634.                      </Description>
  1635.                      <!--                    
  1636.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1637.                     <WireframeColor>0x60101010</WireframeColor>
  1638.                     -->
  1639.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.promethiumClouds,1) * _default_'/>
  1640.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  1641.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  1642.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  1643.                      <Biome name='Forest'/>    
  1644.                      <Biome name='ForestHills'/>      
  1645.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1646.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1647.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1648.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1649.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1650.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  1651.                      <Veins name='promethiumHintVeins' block='919' inherits='PresetHintVeins'>
  1652.                      <!--                    
  1653.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1654.                     <WireframeColor>0x60101010</WireframeColor>
  1655.                     -->
  1656.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  1657.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  1658.                      </Veins>            
  1659.                  </Cloud>
  1660.              </IfCondition>      
  1661.        
  1662.          </ConfigSection>
  1663.      
  1664.          <!-- * deepiron * -->
  1665.      
  1666.          <ConfigSection>
  1667.      
  1668.              <IfCondition condition=':= if(age, age.deepironClusters > 0, fantasyDist = "vanillaStdGen")'>
  1669.                  <StandardGen name='deepironStandard' block='919:1' inherits='PresetStandardGen'>
  1670.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1671.                  <!--                    
  1672.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  1673.                 <WireframeColor>0x60101010</WireframeColor>
  1674.                 -->
  1675.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  1676.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.deepironClusters,1) * _default_'/>
  1677.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  1678.                  </StandardGen>
  1679.              </IfCondition>
  1680.                      
  1681.              <IfCondition condition=':= if(age, age.deepironVeins > 0, fantasyDist = "layeredVeins")'>
  1682.                  <Veins name='deepironVeins' block='919:1' inherits='PresetLayeredVeins'>
  1683.                      <Description>
  1684.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  1685.                          and much rarer overall.  Ore is not easy to find.
  1686.                      </Description>  
  1687.                      <!--                    
  1688.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1689.                     <WireframeColor>0x60101010</WireframeColor>
  1690.                     -->
  1691.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.deepironVeins,1) * _default_'/>
  1692.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1693.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  1694.                      <Setting name='BranchHeightLimit' avg='10'/>  
  1695.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  1696.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  1697.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1698.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  1699.                  </Veins>
  1700.                  <Veins name='deepironVeinsForest' inherits='deepironVeins'>
  1701.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  1702.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1703.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1704.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1705.                      <Biome name='Forest'/>    
  1706.                      <Biome name='ForestHills'/>      
  1707.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1708.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1709.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1710.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1711.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1712.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  1713.                  </Veins>
  1714.              </IfCondition>
  1715.                      
  1716.              <IfCondition condition=':= if(age, age.deepironClouds > 0, fantasyDist = "strategicClouds")'>
  1717.                  <Cloud name='deepironCloud' block='919:1' inherits='PresetStrategicCloud'>
  1718.                      <Description>  
  1719.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  1720.                      </Description>
  1721.                      <!--                    
  1722.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1723.                     <WireframeColor>0x60101010</WireframeColor>
  1724.                     -->
  1725.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.deepironClouds,1) * _default_'/>
  1726.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  1727.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  1728.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  1729.                      <Biome name='Forest'/>    
  1730.                      <Biome name='ForestHills'/>      
  1731.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1732.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1733.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1734.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1735.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1736.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  1737.                      <Veins name='deepironHintVeins' block='919:1' inherits='PresetHintVeins'>
  1738.                      <!--                    
  1739.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1740.                     <WireframeColor>0x60101010</WireframeColor>
  1741.                     -->
  1742.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  1743.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  1744.                      </Veins>            
  1745.                  </Cloud>
  1746.              </IfCondition>      
  1747.        
  1748.          </ConfigSection>
  1749.      
  1750.          <!-- * infuscolium * -->
  1751.      
  1752.          <ConfigSection>
  1753.      
  1754.              <IfCondition condition=':= if(age, age.infuscoliumClusters > 0, fantasyDist = "vanillaStdGen")'>
  1755.                  <StandardGen name='infuscoliumStandard' block='919:2' inherits='PresetStandardGen'>
  1756.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1757.                  <!--                    
  1758.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  1759.                 <WireframeColor>0x60101010</WireframeColor>
  1760.                 -->
  1761.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  1762.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.infuscoliumClusters,1) * _default_'/>
  1763.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  1764.                  </StandardGen>
  1765.              </IfCondition>
  1766.                      
  1767.              <IfCondition condition=':= if(age, age.infuscoliumVeins > 0, fantasyDist = "layeredVeins")'>
  1768.                  <Veins name='infuscoliumVeins' block='919:2' inherits='PresetLayeredVeins'>
  1769.                      <Description>
  1770.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  1771.                          and much rarer overall.  Ore is not easy to find.
  1772.                      </Description>  
  1773.                      <!--                    
  1774.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1775.                     <WireframeColor>0x60101010</WireframeColor>
  1776.                     -->
  1777.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.infuscoliumVeins,1) * _default_'/>
  1778.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1779.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  1780.                      <Setting name='BranchHeightLimit' avg='10'/>  
  1781.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  1782.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  1783.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1784.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  1785.                  </Veins>
  1786.                  <Veins name='infuscoliumVeinsForest' inherits='infuscoliumVeins'>
  1787.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  1788.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1789.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1790.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1791.                      <Biome name='Forest'/>    
  1792.                      <Biome name='ForestHills'/>      
  1793.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1794.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1795.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1796.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1797.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1798.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  1799.                  </Veins>
  1800.              </IfCondition>
  1801.                      
  1802.              <IfCondition condition=':= if(age, age.infuscoliumClouds > 0, fantasyDist = "strategicClouds")'>
  1803.                  <Cloud name='infuscoliumCloud' block='919:2' inherits='PresetStrategicCloud'>
  1804.                      <Description>  
  1805.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  1806.                      </Description>
  1807.                      <!--                    
  1808.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1809.                     <WireframeColor>0x60101010</WireframeColor>
  1810.                     -->
  1811.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.infuscoliumClouds,1) * _default_'/>
  1812.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  1813.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  1814.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  1815.                      <Biome name='Forest'/>    
  1816.                      <Biome name='ForestHills'/>      
  1817.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1818.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1819.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1820.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1821.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1822.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  1823.                      <Veins name='infuscoliumHintVeins' block='919:2' inherits='PresetHintVeins'>
  1824.                      <!--                    
  1825.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1826.                     <WireframeColor>0x60101010</WireframeColor>
  1827.                     -->
  1828.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  1829.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  1830.                      </Veins>            
  1831.                  </Cloud>
  1832.              </IfCondition>      
  1833.        
  1834.          </ConfigSection>
  1835.      
  1836.          <!-- * oureclase * -->
  1837.      
  1838.          <ConfigSection>
  1839.      
  1840.              <IfCondition condition=':= if(age, age.oureclaseClusters > 0, fantasyDist = "vanillaStdGen")'>
  1841.                  <StandardGen name='oureclaseStandard' block='919:3' inherits='PresetStandardGen'>
  1842.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1843.                  <!--                    
  1844.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  1845.                 <WireframeColor>0x60101010</WireframeColor>
  1846.                 -->
  1847.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  1848.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.oureclaseClusters,1) * _default_'/>
  1849.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  1850.                  </StandardGen>
  1851.              </IfCondition>
  1852.                      
  1853.              <IfCondition condition=':= if(age, age.oureclaseVeins > 0, fantasyDist = "layeredVeins")'>
  1854.                  <Veins name='oureclaseVeins' block='919:3' inherits='PresetLayeredVeins'>
  1855.                      <Description>
  1856.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  1857.                          and much rarer overall.  Ore is not easy to find.
  1858.                      </Description>  
  1859.                      <!--                    
  1860.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1861.                     <WireframeColor>0x60101010</WireframeColor>
  1862.                     -->
  1863.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.oureclaseVeins,1) * _default_'/>
  1864.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1865.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  1866.                      <Setting name='BranchHeightLimit' avg='10'/>  
  1867.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  1868.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  1869.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1870.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  1871.                  </Veins>
  1872.                  <Veins name='oureclaseVeinsForest' inherits='oureclaseVeins'>
  1873.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  1874.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1875.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1876.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1877.                      <Biome name='Forest'/>    
  1878.                      <Biome name='ForestHills'/>      
  1879.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1880.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1881.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1882.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1883.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1884.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  1885.                  </Veins>
  1886.              </IfCondition>
  1887.                      
  1888.              <IfCondition condition=':= if(age, age.oureclaseClouds > 0, fantasyDist = "strategicClouds")'>
  1889.                  <Cloud name='oureclaseCloud' block='919:3' inherits='PresetStrategicCloud'>
  1890.                      <Description>  
  1891.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  1892.                      </Description>
  1893.                      <!--                    
  1894.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1895.                     <WireframeColor>0x60101010</WireframeColor>
  1896.                     -->
  1897.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.oureclaseClouds,1) * _default_'/>
  1898.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  1899.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  1900.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  1901.                      <Biome name='Forest'/>    
  1902.                      <Biome name='ForestHills'/>      
  1903.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1904.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1905.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1906.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1907.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1908.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  1909.                      <Veins name='oureclaseHintVeins' block='919:3' inherits='PresetHintVeins'>
  1910.                      <!--                    
  1911.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1912.                     <WireframeColor>0x60101010</WireframeColor>
  1913.                     -->
  1914.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  1915.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  1916.                      </Veins>            
  1917.                  </Cloud>
  1918.              </IfCondition>      
  1919.        
  1920.          </ConfigSection>
  1921.      
  1922.          <!-- * aredrite * -->
  1923.      
  1924.          <ConfigSection>
  1925.      
  1926.              <IfCondition condition=':= if(age, age.aredriteClusters > 0, fantasyDist = "vanillaStdGen")'>
  1927.                  <StandardGen name='aredriteStandard' block='919:4' inherits='PresetStandardGen'>
  1928.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  1929.                  <!--                    
  1930.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  1931.                 <WireframeColor>0x60101010</WireframeColor>
  1932.                 -->
  1933.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  1934.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.aredriteClusters,1) * _default_'/>
  1935.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  1936.                  </StandardGen>
  1937.              </IfCondition>
  1938.                      
  1939.              <IfCondition condition=':= if(age, age.aredriteVeins > 0, fantasyDist = "layeredVeins")'>
  1940.                  <Veins name='aredriteVeins' block='919:4' inherits='PresetLayeredVeins'>
  1941.                      <Description>
  1942.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  1943.                          and much rarer overall.  Ore is not easy to find.
  1944.                      </Description>  
  1945.                      <!--                    
  1946.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1947.                     <WireframeColor>0x60101010</WireframeColor>
  1948.                     -->
  1949.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.aredriteVeins,1) * _default_'/>
  1950.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1951.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  1952.                      <Setting name='BranchHeightLimit' avg='10'/>  
  1953.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  1954.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  1955.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  1956.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  1957.                  </Veins>
  1958.                  <Veins name='aredriteVeinsForest' inherits='aredriteVeins'>
  1959.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  1960.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  1961.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  1962.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  1963.                      <Biome name='Forest'/>    
  1964.                      <Biome name='ForestHills'/>      
  1965.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1966.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1967.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1968.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1969.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1970.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  1971.                  </Veins>
  1972.              </IfCondition>
  1973.                      
  1974.              <IfCondition condition=':= if(age, age.aredriteClouds > 0, fantasyDist = "strategicClouds")'>
  1975.                  <Cloud name='aredriteCloud' block='919:4' inherits='PresetStrategicCloud'>
  1976.                      <Description>  
  1977.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  1978.                      </Description>
  1979.                      <!--                    
  1980.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1981.                     <WireframeColor>0x60101010</WireframeColor>
  1982.                     -->
  1983.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.aredriteClouds,1) * _default_'/>
  1984.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  1985.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  1986.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  1987.                      <Biome name='Forest'/>    
  1988.                      <Biome name='ForestHills'/>      
  1989.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  1990.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  1991.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  1992.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  1993.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  1994.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  1995.                      <Veins name='aredriteHintVeins' block='919:4' inherits='PresetHintVeins'>
  1996.                      <!--                    
  1997.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  1998.                     <WireframeColor>0x60101010</WireframeColor>
  1999.                     -->
  2000.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  2001.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  2002.                      </Veins>            
  2003.                  </Cloud>
  2004.              </IfCondition>      
  2005.        
  2006.          </ConfigSection>
  2007.      
  2008.          <!-- * astralsilver * -->
  2009.      
  2010.          <ConfigSection>
  2011.      
  2012.              <IfCondition condition=':= if(age, age.astralsilverClusters > 0, fantasyDist = "vanillaStdGen")'>
  2013.                  <StandardGen name='astralsilverStandard' block='919:5' inherits='PresetStandardGen'>
  2014.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2015.                  <!--                    
  2016.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  2017.                 <WireframeColor>0x60101010</WireframeColor>
  2018.                 -->
  2019.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  2020.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.astralsilverClusters,1) * _default_'/>
  2021.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  2022.                  </StandardGen>
  2023.              </IfCondition>
  2024.                      
  2025.              <IfCondition condition=':= if(age, age.astralsilverVeins > 0, fantasyDist = "layeredVeins")'>
  2026.                  <Veins name='astralsilverVeins' block='919:5' inherits='PresetLayeredVeins'>
  2027.                      <Description>
  2028.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  2029.                          and much rarer overall.  Ore is not easy to find.
  2030.                      </Description>  
  2031.                      <!--                    
  2032.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2033.                     <WireframeColor>0x60101010</WireframeColor>
  2034.                     -->
  2035.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.astralsilverVeins,1) * _default_'/>
  2036.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2037.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  2038.                      <Setting name='BranchHeightLimit' avg='10'/>  
  2039.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  2040.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  2041.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2042.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  2043.                  </Veins>
  2044.                  <Veins name='astralsilverVeinsForest' inherits='astralsilverVeins'>
  2045.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  2046.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  2047.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  2048.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  2049.                      <Biome name='Forest'/>    
  2050.                      <Biome name='ForestHills'/>      
  2051.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2052.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2053.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2054.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2055.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2056.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  2057.                  </Veins>
  2058.              </IfCondition>
  2059.                      
  2060.              <IfCondition condition=':= if(age, age.astralsilverClouds > 0, fantasyDist = "strategicClouds")'>
  2061.                  <Cloud name='astralsilverCloud' block='919:5' inherits='PresetStrategicCloud'>
  2062.                      <Description>  
  2063.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  2064.                      </Description>
  2065.                      <!--                    
  2066.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2067.                     <WireframeColor>0x60101010</WireframeColor>
  2068.                     -->
  2069.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.astralsilverClouds,1) * _default_'/>
  2070.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  2071.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  2072.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  2073.                      <Biome name='Forest'/>    
  2074.                      <Biome name='ForestHills'/>      
  2075.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2076.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2077.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2078.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2079.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2080.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  2081.                      <Veins name='astralsilverHintVeins' block='919:5' inherits='PresetHintVeins'>
  2082.                      <!--                    
  2083.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2084.                     <WireframeColor>0x60101010</WireframeColor>
  2085.                     -->
  2086.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  2087.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  2088.                      </Veins>            
  2089.                  </Cloud>
  2090.              </IfCondition>      
  2091.        
  2092.          </ConfigSection>
  2093.      
  2094.          <!-- * carmot * -->
  2095.      
  2096.          <ConfigSection>
  2097.      
  2098.              <IfCondition condition=':= if(age, age.carmotClusters > 0, fantasyDist = "vanillaStdGen")'>
  2099.                  <StandardGen name='carmotStandard' block='919:6' inherits='PresetStandardGen'>
  2100.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2101.                  <!--                    
  2102.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  2103.                 <WireframeColor>0x60101010</WireframeColor>
  2104.                 -->
  2105.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  2106.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.carmotClusters,1) * _default_'/>
  2107.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  2108.                  </StandardGen>
  2109.              </IfCondition>
  2110.                      
  2111.              <IfCondition condition=':= if(age, age.carmotVeins > 0, fantasyDist = "layeredVeins")'>
  2112.                  <Veins name='carmotVeins' block='919:6' inherits='PresetLayeredVeins'>
  2113.                      <Description>
  2114.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  2115.                          and much rarer overall.  Ore is not easy to find.
  2116.                      </Description>  
  2117.                      <!--                    
  2118.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2119.                     <WireframeColor>0x60101010</WireframeColor>
  2120.                     -->
  2121.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.carmotVeins,1) * _default_'/>
  2122.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2123.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  2124.                      <Setting name='BranchHeightLimit' avg='10'/>  
  2125.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  2126.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  2127.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2128.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  2129.                  </Veins>
  2130.                  <Veins name='carmotVeinsForest' inherits='carmotVeins'>
  2131.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  2132.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  2133.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  2134.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  2135.                      <Biome name='Forest'/>    
  2136.                      <Biome name='ForestHills'/>      
  2137.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2138.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2139.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2140.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2141.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2142.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  2143.                  </Veins>
  2144.              </IfCondition>
  2145.                      
  2146.              <IfCondition condition=':= if(age, age.carmotClouds > 0, fantasyDist = "strategicClouds")'>
  2147.                  <Cloud name='carmotCloud' block='919:6' inherits='PresetStrategicCloud'>
  2148.                      <Description>  
  2149.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  2150.                      </Description>
  2151.                      <!--                    
  2152.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2153.                     <WireframeColor>0x60101010</WireframeColor>
  2154.                     -->
  2155.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.carmotClouds,1) * _default_'/>
  2156.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  2157.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  2158.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  2159.                      <Biome name='Forest'/>    
  2160.                      <Biome name='ForestHills'/>      
  2161.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2162.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2163.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2164.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2165.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2166.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  2167.                      <Veins name='carmotHintVeins' block='919:6' inherits='PresetHintVeins'>
  2168.                      <!--                    
  2169.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2170.                     <WireframeColor>0x60101010</WireframeColor>
  2171.                     -->
  2172.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  2173.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  2174.                      </Veins>            
  2175.                  </Cloud>
  2176.              </IfCondition>      
  2177.        
  2178.          </ConfigSection>
  2179.      
  2180.          <!-- * mithril * -->
  2181.      
  2182.          <ConfigSection>
  2183.      
  2184.              <IfCondition condition=':= if(age, age.mithrilClusters > 0, fantasyDist = "vanillaStdGen")'>
  2185.                  <StandardGen name='mithrilStandard' block='919:7' inherits='PresetStandardGen'>
  2186.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2187.                  <!--                    
  2188.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  2189.                 <WireframeColor>0x60101010</WireframeColor>
  2190.                 -->
  2191.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  2192.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.mithrilClusters,1) * _default_'/>
  2193.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  2194.                  </StandardGen>
  2195.              </IfCondition>
  2196.                      
  2197.              <IfCondition condition=':= if(age, age.mithrilVeins > 0, fantasyDist = "layeredVeins")'>
  2198.                  <Veins name='mithrilVeins' block='919:7' inherits='PresetLayeredVeins'>
  2199.                      <Description>
  2200.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  2201.                          and much rarer overall.  Ore is not easy to find.
  2202.                      </Description>  
  2203.                      <!--                    
  2204.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2205.                     <WireframeColor>0x60101010</WireframeColor>
  2206.                     -->
  2207.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.mithrilVeins,1) * _default_'/>
  2208.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2209.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  2210.                      <Setting name='BranchHeightLimit' avg='10'/>  
  2211.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  2212.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  2213.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2214.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  2215.                  </Veins>
  2216.                  <Veins name='mithrilVeinsForest' inherits='mithrilVeins'>
  2217.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  2218.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  2219.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  2220.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  2221.                      <Biome name='Forest'/>    
  2222.                      <Biome name='ForestHills'/>      
  2223.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2224.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2225.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2226.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2227.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2228.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  2229.                  </Veins>
  2230.              </IfCondition>
  2231.                      
  2232.              <IfCondition condition=':= if(age, age.mithrilClouds > 0, fantasyDist = "strategicClouds")'>
  2233.                  <Cloud name='mithrilCloud' block='919:7' inherits='PresetStrategicCloud'>
  2234.                      <Description>  
  2235.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  2236.                      </Description>
  2237.                      <!--                    
  2238.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2239.                     <WireframeColor>0x60101010</WireframeColor>
  2240.                     -->
  2241.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.mithrilClouds,1) * _default_'/>
  2242.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  2243.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  2244.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  2245.                      <Biome name='Forest'/>    
  2246.                      <Biome name='ForestHills'/>      
  2247.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2248.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2249.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2250.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2251.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2252.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  2253.                      <Veins name='mithrilHintVeins' block='919:7' inherits='PresetHintVeins'>
  2254.                      <!--                    
  2255.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2256.                     <WireframeColor>0x60101010</WireframeColor>
  2257.                     -->
  2258.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  2259.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  2260.                      </Veins>            
  2261.                  </Cloud>
  2262.              </IfCondition>      
  2263.        
  2264.          </ConfigSection>
  2265.      
  2266.          <!-- * rubracium * -->
  2267.      
  2268.          <ConfigSection>
  2269.      
  2270.              <IfCondition condition=':= if(age, age.rubraciumClusters > 0, fantasyDist = "vanillaStdGen")'>
  2271.                  <StandardGen name='rubraciumStandard' block='919:8' inherits='PresetStandardGen'>
  2272.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2273.                  <!--                    
  2274.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  2275.                 <WireframeColor>0x60101010</WireframeColor>
  2276.                 -->
  2277.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  2278.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.rubraciumClusters,1) * _default_'/>
  2279.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  2280.                  </StandardGen>
  2281.              </IfCondition>
  2282.                      
  2283.              <IfCondition condition=':= if(age, age.rubraciumVeins > 0, fantasyDist = "layeredVeins")'>
  2284.                  <Veins name='rubraciumVeins' block='919:8' inherits='PresetLayeredVeins'>
  2285.                      <Description>
  2286.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  2287.                          and much rarer overall.  Ore is not easy to find.
  2288.                      </Description>  
  2289.                      <!--                    
  2290.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2291.                     <WireframeColor>0x60101010</WireframeColor>
  2292.                     -->
  2293.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.rubraciumVeins,1) * _default_'/>
  2294.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2295.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  2296.                      <Setting name='BranchHeightLimit' avg='10'/>  
  2297.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  2298.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  2299.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2300.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  2301.                  </Veins>
  2302.                  <Veins name='rubraciumVeinsForest' inherits='rubraciumVeins'>
  2303.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  2304.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  2305.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  2306.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  2307.                      <Biome name='Forest'/>    
  2308.                      <Biome name='ForestHills'/>      
  2309.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2310.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2311.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2312.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2313.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2314.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  2315.                  </Veins>
  2316.              </IfCondition>
  2317.                      
  2318.              <IfCondition condition=':= if(age, age.rubraciumClouds > 0, fantasyDist = "strategicClouds")'>
  2319.                  <Cloud name='rubraciumCloud' block='919:8' inherits='PresetStrategicCloud'>
  2320.                      <Description>  
  2321.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  2322.                      </Description>
  2323.                      <!--                    
  2324.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2325.                     <WireframeColor>0x60101010</WireframeColor>
  2326.                     -->
  2327.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.rubraciumClouds,1) * _default_'/>
  2328.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  2329.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  2330.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  2331.                      <Biome name='Forest'/>    
  2332.                      <Biome name='ForestHills'/>      
  2333.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2334.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2335.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2336.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2337.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2338.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  2339.                      <Veins name='rubraciumHintVeins' block='919:8' inherits='PresetHintVeins'>
  2340.                      <!--                    
  2341.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2342.                     <WireframeColor>0x60101010</WireframeColor>
  2343.                     -->
  2344.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  2345.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  2346.                      </Veins>            
  2347.                  </Cloud>
  2348.              </IfCondition>      
  2349.        
  2350.          </ConfigSection>
  2351.      
  2352.          <!-- * orichalcum * -->
  2353.      
  2354.          <ConfigSection>
  2355.      
  2356.              <IfCondition condition=':= if(age, age.orichalcumClusters > 0, fantasyDist = "vanillaStdGen")'>
  2357.                  <StandardGen name='orichalcumStandard' block='919:9' inherits='PresetStandardGen'>
  2358.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2359.                  <!--                    
  2360.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  2361.                 <WireframeColor>0x60101010</WireframeColor>
  2362.                 -->
  2363.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  2364.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.orichalcumClusters,1) * _default_'/>
  2365.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  2366.                  </StandardGen>
  2367.              </IfCondition>
  2368.                      
  2369.              <IfCondition condition=':= if(age, age.orichalcumVeins > 0, fantasyDist = "layeredVeins")'>
  2370.                  <Veins name='orichalcumVeins' block='919:9' inherits='PresetLayeredVeins'>
  2371.                      <Description>
  2372.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  2373.                          and much rarer overall.  Ore is not easy to find.
  2374.                      </Description>  
  2375.                      <!--                    
  2376.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2377.                     <WireframeColor>0x60101010</WireframeColor>
  2378.                     -->
  2379.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.orichalcumVeins,1) * _default_'/>
  2380.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2381.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  2382.                      <Setting name='BranchHeightLimit' avg='10'/>  
  2383.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  2384.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  2385.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2386.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  2387.                  </Veins>
  2388.                  <Veins name='orichalcumVeinsForest' inherits='orichalcumVeins'>
  2389.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  2390.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  2391.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  2392.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  2393.                      <Biome name='Forest'/>    
  2394.                      <Biome name='ForestHills'/>      
  2395.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2396.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2397.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2398.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2399.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2400.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  2401.                  </Veins>
  2402.              </IfCondition>
  2403.                      
  2404.              <IfCondition condition=':= if(age, age.orichalcumClouds > 0, fantasyDist = "strategicClouds")'>
  2405.                  <Cloud name='orichalcumCloud' block='919:9' inherits='PresetStrategicCloud'>
  2406.                      <Description>  
  2407.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  2408.                      </Description>
  2409.                      <!--                    
  2410.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2411.                     <WireframeColor>0x60101010</WireframeColor>
  2412.                     -->
  2413.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.orichalcumClouds,1) * _default_'/>
  2414.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  2415.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  2416.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  2417.                      <Biome name='Forest'/>    
  2418.                      <Biome name='ForestHills'/>      
  2419.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2420.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2421.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2422.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2423.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2424.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  2425.                      <Veins name='orichalcumHintVeins' block='919:9' inherits='PresetHintVeins'>
  2426.                      <!--                    
  2427.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2428.                     <WireframeColor>0x60101010</WireframeColor>
  2429.                     -->
  2430.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  2431.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  2432.                      </Veins>            
  2433.                  </Cloud>
  2434.              </IfCondition>      
  2435.        
  2436.          </ConfigSection>
  2437.      
  2438.          <!-- * adamantine * -->
  2439.      
  2440.          <ConfigSection>
  2441.      
  2442.              <IfCondition condition=':= if(age, age.adamantineClusters > 0, fantasyDist = "vanillaStdGen")'>
  2443.                  <StandardGen name='adamantineStandard' block='919:10' inherits='PresetStandardGen'>
  2444.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2445.                  <!--                    
  2446.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  2447.                 <WireframeColor>0x60101010</WireframeColor>
  2448.                 -->
  2449.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  2450.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.adamantineClusters,1) * _default_'/>
  2451.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  2452.                  </StandardGen>
  2453.              </IfCondition>
  2454.                      
  2455.              <IfCondition condition=':= if(age, age.adamantineVeins > 0, fantasyDist = "layeredVeins")'>
  2456.                  <Veins name='adamantineVeins' block='919:10' inherits='PresetLayeredVeins'>
  2457.                      <Description>
  2458.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  2459.                          and much rarer overall.  Ore is not easy to find.
  2460.                      </Description>  
  2461.                      <!--                    
  2462.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2463.                     <WireframeColor>0x60101010</WireframeColor>
  2464.                     -->
  2465.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.adamantineVeins,1) * _default_'/>
  2466.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2467.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  2468.                      <Setting name='BranchHeightLimit' avg='10'/>  
  2469.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  2470.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  2471.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2472.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  2473.                  </Veins>
  2474.                  <Veins name='adamantineVeinsForest' inherits='adamantineVeins'>
  2475.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  2476.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  2477.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  2478.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  2479.                      <Biome name='Forest'/>    
  2480.                      <Biome name='ForestHills'/>      
  2481.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2482.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2483.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2484.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2485.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2486.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  2487.                  </Veins>
  2488.              </IfCondition>
  2489.                      
  2490.              <IfCondition condition=':= if(age, age.adamantineClouds > 0, fantasyDist = "strategicClouds")'>
  2491.                  <Cloud name='adamantineCloud' block='919:10' inherits='PresetStrategicCloud'>
  2492.                      <Description>  
  2493.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  2494.                      </Description>
  2495.                      <!--                    
  2496.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2497.                     <WireframeColor>0x60101010</WireframeColor>
  2498.                     -->
  2499.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.adamantineClouds,1) * _default_'/>
  2500.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  2501.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  2502.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  2503.                      <Biome name='Forest'/>    
  2504.                      <Biome name='ForestHills'/>      
  2505.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2506.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2507.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2508.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2509.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2510.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  2511.                      <Veins name='adamantineHintVeins' block='919:10' inherits='PresetHintVeins'>
  2512.                      <!--                    
  2513.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2514.                     <WireframeColor>0x60101010</WireframeColor>
  2515.                     -->
  2516.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  2517.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  2518.                      </Veins>            
  2519.                  </Cloud>
  2520.              </IfCondition>      
  2521.        
  2522.          </ConfigSection>
  2523.      
  2524.          <!-- * atlarus * -->
  2525.      
  2526.          <ConfigSection>
  2527.      
  2528.              <IfCondition condition=':= if(age, age.atlarusClusters > 0, fantasyDist = "vanillaStdGen")'>
  2529.                  <StandardGen name='atlarusStandard' block='919:11' inherits='PresetStandardGen'>
  2530.                  <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2531.                  <!--                    
  2532.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  2533.                 <WireframeColor>0x60101010</WireframeColor>
  2534.                 -->
  2535.                  <Setting name='Size' avg=':= fantasySize * _default_'/>
  2536.                      <Setting name='Frequency' avg=':= 0.1 * fantasyFreq * if(age,age.atlarusClusters,1) * _default_'/>
  2537.                      <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  2538.                  </StandardGen>
  2539.              </IfCondition>
  2540.                      
  2541.              <IfCondition condition=':= if(age, age.atlarusVeins > 0, fantasyDist = "layeredVeins")'>
  2542.                  <Veins name='atlarusVeins' block='919:11' inherits='PresetLayeredVeins'>
  2543.                      <Description>
  2544.                          Ore spawns in the height 10-30 range.  The veins are shorter than average,
  2545.                          and much rarer overall.  Ore is not easy to find.
  2546.                      </Description>  
  2547.                      <!--                    
  2548.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2549.                     <WireframeColor>0x60101010</WireframeColor>
  2550.                     -->
  2551.                      <Setting name='MotherlodeFrequency' avg=':= 0.85 * fantasyFreq * if(age,age.atlarusVeins,1) * _default_'/>
  2552.                      <Setting name='MotherlodeSize' avg=':= 0.8 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2553.                      <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  2554.                      <Setting name='BranchHeightLimit' avg='10'/>  
  2555.                      <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  2556.                      <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  2557.                      <Setting name='SegmentRadius' avg=':= 0.7 * fantasySize * _default_' range=':= 0.5 * fantasySize * _default_'/>
  2558.                      <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  2559.                  </Veins>
  2560.                  <Veins name='atlarusVeinsForest' inherits='atlarusVeins'>
  2561.                      <Description> This roughly triples the chance of finding ore in forested biomes. </Description>
  2562.                      <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  2563.                      <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  2564.                      <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  2565.                      <Biome name='Forest'/>    
  2566.                      <Biome name='ForestHills'/>      
  2567.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2568.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2569.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2570.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2571.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2572.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>
  2573.                  </Veins>
  2574.              </IfCondition>
  2575.                      
  2576.              <IfCondition condition=':= if(age, age.atlarusClouds > 0, fantasyDist = "strategicClouds")'>
  2577.                  <Cloud name='atlarusCloud' block='919:11' inherits='PresetStrategicCloud'>
  2578.                      <Description>  
  2579.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in forest biomes.
  2580.                      </Description>
  2581.                      <!--                    
  2582.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2583.                     <WireframeColor>0x60101010</WireframeColor>
  2584.                     -->
  2585.                      <Setting name='DistributionFrequency' avg=':= 4.5 * fantasyFreq * if(age,age.atlarusClouds,1) * _default_'/>
  2586.                      <Setting name='CloudRadius' avg=':= 0.8 * fantasySize * _default_' range=':= 0.8 * fantasySize * _default_'/>
  2587.                      <Setting name='CloudThickness' avg=':= 0.8 * fantasySize * _default_' range=':= fantasySize * _default_'/>
  2588.                      <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  2589.                      <Biome name='Forest'/>    
  2590.                      <Biome name='ForestHills'/>      
  2591.                      <Biome name='Birch\s*Forest'/> <Comment> ExtraBiomesXL </Comment>
  2592.                      <Biome name='Autumn\s*Woods'/> <Comment> ExtraBiomesXL </Comment>
  2593.                      <Biome name='Forested\s*Island'/> <Comment> ExtraBiomesXL </Comment>
  2594.                      <Biome name='Forested\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  2595.                      <Biome name='Rainforest'/> <Comment> ExtraBiomesXL </Comment>
  2596.                      <Biome name='Woodlands'/> <Comment> ExtraBiomesXL </Comment>  
  2597.                      <Veins name='atlarusHintVeins' block='919:11' inherits='PresetHintVeins'>
  2598.                      <!--                    
  2599.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2600.                     <WireframeColor>0x60101010</WireframeColor>
  2601.                     -->
  2602.                          <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  2603.                          <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * fantasySize * _default_' range=':= 0.65 * fantasySize * _default_'/>                    
  2604.                      </Veins>            
  2605.                  </Cloud>
  2606.              </IfCondition>      
  2607.        
  2608.          </ConfigSection>
  2609.      
  2610.          <!--*******************   Nether Ores   ***********************
  2611.         *  
  2612.         *   Nether Ores include ignatius, shadow iron, midasium,
  2613.         *   vyroxeres, ceruclase, kalendrite, vulcanite, sanguinite,
  2614.         *   lemurite, and adluorite.  These ores can only be found
  2615.         *   naturally in the Nether.  Distribution is based on iron.
  2616.         *  
  2617.         **********************************************************-->
  2618.      
  2619.          <!-- * ignatius * -->
  2620.      
  2621.          <ConfigSection>
  2622.          
  2623.              <IfCondition condition=':= if(age, age.ignatiusClusters > 0, netherDist = "vanillaStdGen")'>
  2624.                  <StandardGen name='ignatiusStandard' block='915' inherits='PresetStandardGen'>
  2625.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2626.                      <!--                    
  2627.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2628.                     <WireframeColor>0x60101010</WireframeColor>
  2629.                         -->
  2630.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  2631.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.ignatiusClusters,1) * _default_'/>
  2632.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  2633.                      <Replaces block='hellrock'/>
  2634.                      <Biome name='Hell' weight='1'/>
  2635.                  </StandardGen>
  2636.              </IfCondition>
  2637.                  
  2638.              <IfCondition condition=':= if(age, age.ignatiusVeins > 0, netherDist = "layeredVeins")'>
  2639.                  <Veins name='ignatiusVeins' block='915' inherits='PresetLayeredVeins'>
  2640.                      <Description>
  2641.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  2642.                      </Description>
  2643.                      <!--                    
  2644.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2645.                     <WireframeColor>0x60101010</WireframeColor>
  2646.                     -->
  2647.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.ignatiusVeins,1) * _default_'/>
  2648.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2649.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  2650.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  2651.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2652.                      <Replaces block='hellrock'/>
  2653.                      <Biome name='Hell' weight='1'/>
  2654.                  </Veins>
  2655.              </IfCondition>  
  2656.                  
  2657.              <IfCondition condition=':= if(age, age.ignatiusClouds > 0, netherDist = "strategicClouds")'>
  2658.                  <Cloud name='ignatiusCloud' block='915' inherits='PresetStrategicCloud'>
  2659.                      <Description>  
  2660.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  2661.                      </Description>
  2662.                      <!--                    
  2663.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2664.                     <WireframeColor>0x60101010</WireframeColor>
  2665.                     -->
  2666.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.ignatiusClouds,1) * _default_'/>
  2667.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2668.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2669.                      <Replaces block='hellrock'/>
  2670.                      <Biome name='Hell' weight='1'/>
  2671.                      <Veins name='ignatiusHintVeins' block='915' inherits='PresetHintVeins'>
  2672.                          <!--                    
  2673.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  2674.                         <WireframeColor>0x60101010</WireframeColor>
  2675.                         -->
  2676.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  2677.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  2678.                          <Replaces block='hellrock'/>
  2679.                      <Biome name='Hell' weight='1'/>          
  2680.                      </Veins>                        
  2681.                  </Cloud>
  2682.              </IfCondition>      
  2683.        
  2684.          </ConfigSection>
  2685.      
  2686.          <!-- * shadowiron * -->
  2687.      
  2688.          <ConfigSection>
  2689.          
  2690.              <IfCondition condition=':= if(age, age.shadowironClusters > 0, netherDist = "vanillaStdGen")'>
  2691.                  <StandardGen name='shadowironStandard' block='915:1' inherits='PresetStandardGen'>
  2692.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2693.                      <!--                    
  2694.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2695.                     <WireframeColor>0x60101010</WireframeColor>
  2696.                         -->
  2697.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  2698.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.shadowironClusters,1) * _default_'/>
  2699.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  2700.                      <Replaces block='hellrock'/>
  2701.                      <Biome name='Hell' weight='1'/>
  2702.                  </StandardGen>
  2703.              </IfCondition>
  2704.                  
  2705.              <IfCondition condition=':= if(age, age.shadowironVeins > 0, netherDist = "layeredVeins")'>
  2706.                  <Veins name='shadowironVeins' block='915:1' inherits='PresetLayeredVeins'>
  2707.                      <Description>
  2708.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  2709.                      </Description>
  2710.                      <!--                    
  2711.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2712.                     <WireframeColor>0x60101010</WireframeColor>
  2713.                     -->
  2714.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.shadowironVeins,1) * _default_'/>
  2715.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2716.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  2717.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  2718.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2719.                      <Replaces block='hellrock'/>
  2720.                      <Biome name='Hell' weight='1'/>
  2721.                  </Veins>
  2722.              </IfCondition>  
  2723.                  
  2724.              <IfCondition condition=':= if(age, age.shadowironClouds > 0, netherDist = "strategicClouds")'>
  2725.                  <Cloud name='shadowironCloud' block='915:1' inherits='PresetStrategicCloud'>
  2726.                      <Description>  
  2727.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  2728.                      </Description>
  2729.                      <!--                    
  2730.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2731.                     <WireframeColor>0x60101010</WireframeColor>
  2732.                     -->
  2733.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.shadowironClouds,1) * _default_'/>
  2734.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2735.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2736.                      <Replaces block='hellrock'/>
  2737.                      <Biome name='Hell' weight='1'/>
  2738.                      <Veins name='shadowironHintVeins' block='915:1' inherits='PresetHintVeins'>
  2739.                          <!--                    
  2740.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  2741.                         <WireframeColor>0x60101010</WireframeColor>
  2742.                         -->
  2743.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  2744.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  2745.                          <Replaces block='hellrock'/>
  2746.                      <Biome name='Hell' weight='1'/>          
  2747.                      </Veins>                        
  2748.                  </Cloud>
  2749.              </IfCondition>      
  2750.        
  2751.          </ConfigSection>
  2752.      
  2753.          <!-- * midasium * -->
  2754.      
  2755.          <ConfigSection>
  2756.          
  2757.              <IfCondition condition=':= if(age, age.midasiumClusters > 0, netherDist = "vanillaStdGen")'>
  2758.                  <StandardGen name='midasiumStandard' block='915:2' inherits='PresetStandardGen'>
  2759.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2760.                      <!--                    
  2761.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2762.                     <WireframeColor>0x60101010</WireframeColor>
  2763.                         -->
  2764.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  2765.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.midasiumClusters,1) * _default_'/>
  2766.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  2767.                      <Replaces block='hellrock'/>
  2768.                      <Biome name='Hell' weight='1'/>
  2769.                  </StandardGen>
  2770.              </IfCondition>
  2771.                  
  2772.              <IfCondition condition=':= if(age, age.midasiumVeins > 0, netherDist = "layeredVeins")'>
  2773.                  <Veins name='midasiumVeins' block='915:2' inherits='PresetLayeredVeins'>
  2774.                      <Description>
  2775.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  2776.                      </Description>
  2777.                      <!--                    
  2778.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2779.                     <WireframeColor>0x60101010</WireframeColor>
  2780.                     -->
  2781.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.midasiumVeins,1) * _default_'/>
  2782.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2783.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  2784.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  2785.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2786.                      <Replaces block='hellrock'/>
  2787.                      <Biome name='Hell' weight='1'/>
  2788.                  </Veins>
  2789.              </IfCondition>  
  2790.                  
  2791.              <IfCondition condition=':= if(age, age.midasiumClouds > 0, netherDist = "strategicClouds")'>
  2792.                  <Cloud name='midasiumCloud' block='915:2' inherits='PresetStrategicCloud'>
  2793.                      <Description>  
  2794.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  2795.                      </Description>
  2796.                      <!--                    
  2797.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2798.                     <WireframeColor>0x60101010</WireframeColor>
  2799.                     -->
  2800.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.midasiumClouds,1) * _default_'/>
  2801.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2802.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2803.                      <Replaces block='hellrock'/>
  2804.                      <Biome name='Hell' weight='1'/>
  2805.                      <Veins name='midasiumHintVeins' block='915:2' inherits='PresetHintVeins'>
  2806.                          <!--                    
  2807.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  2808.                         <WireframeColor>0x60101010</WireframeColor>
  2809.                         -->
  2810.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  2811.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  2812.                          <Replaces block='hellrock'/>
  2813.                      <Biome name='Hell' weight='1'/>          
  2814.                      </Veins>                        
  2815.                  </Cloud>
  2816.              </IfCondition>      
  2817.        
  2818.          </ConfigSection>
  2819.      
  2820.          <!-- * vyroxeres * -->
  2821.      
  2822.          <ConfigSection>
  2823.          
  2824.              <IfCondition condition=':= if(age, age.vyroxeresClusters > 0, netherDist = "vanillaStdGen")'>
  2825.                  <StandardGen name='vyroxeresStandard' block='915:3' inherits='PresetStandardGen'>
  2826.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2827.                      <!--                    
  2828.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2829.                     <WireframeColor>0x60101010</WireframeColor>
  2830.                         -->
  2831.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  2832.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.vyroxeresClusters,1) * _default_'/>
  2833.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  2834.                      <Replaces block='hellrock'/>
  2835.                      <Biome name='Hell' weight='1'/>
  2836.                  </StandardGen>
  2837.              </IfCondition>
  2838.                  
  2839.              <IfCondition condition=':= if(age, age.vyroxeresVeins > 0, netherDist = "layeredVeins")'>
  2840.                  <Veins name='vyroxeresVeins' block='915:3' inherits='PresetLayeredVeins'>
  2841.                      <Description>
  2842.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  2843.                      </Description>
  2844.                      <!--                    
  2845.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2846.                     <WireframeColor>0x60101010</WireframeColor>
  2847.                     -->
  2848.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.vyroxeresVeins,1) * _default_'/>
  2849.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2850.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  2851.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  2852.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2853.                      <Replaces block='hellrock'/>
  2854.                      <Biome name='Hell' weight='1'/>
  2855.                  </Veins>
  2856.              </IfCondition>  
  2857.                  
  2858.              <IfCondition condition=':= if(age, age.vyroxeresClouds > 0, netherDist = "strategicClouds")'>
  2859.                  <Cloud name='vyroxeresCloud' block='915:3' inherits='PresetStrategicCloud'>
  2860.                      <Description>  
  2861.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  2862.                      </Description>
  2863.                      <!--                    
  2864.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2865.                     <WireframeColor>0x60101010</WireframeColor>
  2866.                     -->
  2867.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.vyroxeresClouds,1) * _default_'/>
  2868.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2869.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2870.                      <Replaces block='hellrock'/>
  2871.                      <Biome name='Hell' weight='1'/>
  2872.                      <Veins name='vyroxeresHintVeins' block='915:3' inherits='PresetHintVeins'>
  2873.                          <!--                    
  2874.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  2875.                         <WireframeColor>0x60101010</WireframeColor>
  2876.                         -->
  2877.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  2878.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  2879.                          <Replaces block='hellrock'/>
  2880.                      <Biome name='Hell' weight='1'/>          
  2881.                      </Veins>                        
  2882.                  </Cloud>
  2883.              </IfCondition>      
  2884.        
  2885.          </ConfigSection>
  2886.      
  2887.          <!-- * ceruclase * -->
  2888.      
  2889.          <ConfigSection>
  2890.          
  2891.              <IfCondition condition=':= if(age, age.ceruclaseClusters > 0, netherDist = "vanillaStdGen")'>
  2892.                  <StandardGen name='ceruclaseStandard' block='915:4' inherits='PresetStandardGen'>
  2893.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2894.                      <!--                    
  2895.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2896.                     <WireframeColor>0x60101010</WireframeColor>
  2897.                         -->
  2898.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  2899.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.ceruclaseClusters,1) * _default_'/>
  2900.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  2901.                      <Replaces block='hellrock'/>
  2902.                      <Biome name='Hell' weight='1'/>
  2903.                  </StandardGen>
  2904.              </IfCondition>
  2905.                  
  2906.              <IfCondition condition=':= if(age, age.ceruclaseVeins > 0, netherDist = "layeredVeins")'>
  2907.                  <Veins name='ceruclaseVeins' block='915:4' inherits='PresetLayeredVeins'>
  2908.                      <Description>
  2909.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  2910.                      </Description>
  2911.                      <!--                    
  2912.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2913.                     <WireframeColor>0x60101010</WireframeColor>
  2914.                     -->
  2915.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.ceruclaseVeins,1) * _default_'/>
  2916.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2917.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  2918.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  2919.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2920.                      <Replaces block='hellrock'/>
  2921.                      <Biome name='Hell' weight='1'/>
  2922.                  </Veins>
  2923.              </IfCondition>  
  2924.                  
  2925.              <IfCondition condition=':= if(age, age.ceruclaseClouds > 0, netherDist = "strategicClouds")'>
  2926.                  <Cloud name='ceruclaseCloud' block='915:4' inherits='PresetStrategicCloud'>
  2927.                      <Description>  
  2928.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  2929.                      </Description>
  2930.                      <!--                    
  2931.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2932.                     <WireframeColor>0x60101010</WireframeColor>
  2933.                     -->
  2934.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.ceruclaseClouds,1) * _default_'/>
  2935.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2936.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2937.                      <Replaces block='hellrock'/>
  2938.                      <Biome name='Hell' weight='1'/>
  2939.                      <Veins name='ceruclaseHintVeins' block='915:4' inherits='PresetHintVeins'>
  2940.                          <!--                    
  2941.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  2942.                         <WireframeColor>0x60101010</WireframeColor>
  2943.                         -->
  2944.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  2945.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  2946.                          <Replaces block='hellrock'/>
  2947.                      <Biome name='Hell' weight='1'/>          
  2948.                      </Veins>                        
  2949.                  </Cloud>
  2950.              </IfCondition>      
  2951.        
  2952.          </ConfigSection>
  2953.      
  2954.          <!-- * kalendrite * -->
  2955.      
  2956.          <ConfigSection>
  2957.          
  2958.              <IfCondition condition=':= if(age, age.kalendriteClusters > 0, netherDist = "vanillaStdGen")'>
  2959.                  <StandardGen name='kalendriteStandard' block='915:5' inherits='PresetStandardGen'>
  2960.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  2961.                      <!--                    
  2962.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2963.                     <WireframeColor>0x60101010</WireframeColor>
  2964.                         -->
  2965.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  2966.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.kalendriteClusters,1) * _default_'/>
  2967.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  2968.                      <Replaces block='hellrock'/>
  2969.                      <Biome name='Hell' weight='1'/>
  2970.                  </StandardGen>
  2971.              </IfCondition>
  2972.                  
  2973.              <IfCondition condition=':= if(age, age.kalendriteVeins > 0, netherDist = "layeredVeins")'>
  2974.                  <Veins name='kalendriteVeins' block='915:5' inherits='PresetLayeredVeins'>
  2975.                      <Description>
  2976.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  2977.                      </Description>
  2978.                      <!--                    
  2979.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2980.                     <WireframeColor>0x60101010</WireframeColor>
  2981.                     -->
  2982.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.kalendriteVeins,1) * _default_'/>
  2983.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2984.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  2985.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  2986.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  2987.                      <Replaces block='hellrock'/>
  2988.                      <Biome name='Hell' weight='1'/>
  2989.                  </Veins>
  2990.              </IfCondition>  
  2991.                  
  2992.              <IfCondition condition=':= if(age, age.kalendriteClouds > 0, netherDist = "strategicClouds")'>
  2993.                  <Cloud name='kalendriteCloud' block='915:5' inherits='PresetStrategicCloud'>
  2994.                      <Description>  
  2995.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  2996.                      </Description>
  2997.                      <!--                    
  2998.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  2999.                     <WireframeColor>0x60101010</WireframeColor>
  3000.                     -->
  3001.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.kalendriteClouds,1) * _default_'/>
  3002.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3003.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3004.                      <Replaces block='hellrock'/>
  3005.                      <Biome name='Hell' weight='1'/>
  3006.                      <Veins name='kalendriteHintVeins' block='915:5' inherits='PresetHintVeins'>
  3007.                          <!--                    
  3008.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  3009.                         <WireframeColor>0x60101010</WireframeColor>
  3010.                         -->
  3011.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  3012.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  3013.                          <Replaces block='hellrock'/>
  3014.                      <Biome name='Hell' weight='1'/>          
  3015.                      </Veins>                        
  3016.                  </Cloud>
  3017.              </IfCondition>      
  3018.        
  3019.          </ConfigSection>
  3020.      
  3021.          <!-- * vulcanite * -->
  3022.      
  3023.          <ConfigSection>
  3024.          
  3025.              <IfCondition condition=':= if(age, age.vulcaniteClusters > 0, netherDist = "vanillaStdGen")'>
  3026.                  <StandardGen name='vulcaniteStandard' block='915:6' inherits='PresetStandardGen'>
  3027.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  3028.                      <!--                    
  3029.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3030.                     <WireframeColor>0x60101010</WireframeColor>
  3031.                         -->
  3032.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  3033.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.vulcaniteClusters,1) * _default_'/>
  3034.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  3035.                      <Replaces block='hellrock'/>
  3036.                      <Biome name='Hell' weight='1'/>
  3037.                  </StandardGen>
  3038.              </IfCondition>
  3039.                  
  3040.              <IfCondition condition=':= if(age, age.vulcaniteVeins > 0, netherDist = "layeredVeins")'>
  3041.                  <Veins name='vulcaniteVeins' block='915:6' inherits='PresetLayeredVeins'>
  3042.                      <Description>
  3043.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  3044.                      </Description>
  3045.                      <!--                    
  3046.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3047.                     <WireframeColor>0x60101010</WireframeColor>
  3048.                     -->
  3049.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.vulcaniteVeins,1) * _default_'/>
  3050.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3051.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  3052.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  3053.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3054.                      <Replaces block='hellrock'/>
  3055.                      <Biome name='Hell' weight='1'/>
  3056.                  </Veins>
  3057.              </IfCondition>  
  3058.                  
  3059.              <IfCondition condition=':= if(age, age.vulcaniteClouds > 0, netherDist = "strategicClouds")'>
  3060.                  <Cloud name='vulcaniteCloud' block='915:6' inherits='PresetStrategicCloud'>
  3061.                      <Description>  
  3062.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  3063.                      </Description>
  3064.                      <!--                    
  3065.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3066.                     <WireframeColor>0x60101010</WireframeColor>
  3067.                     -->
  3068.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.vulcaniteClouds,1) * _default_'/>
  3069.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3070.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3071.                      <Replaces block='hellrock'/>
  3072.                      <Biome name='Hell' weight='1'/>
  3073.                      <Veins name='vulcaniteHintVeins' block='915:6' inherits='PresetHintVeins'>
  3074.                          <!--                    
  3075.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  3076.                         <WireframeColor>0x60101010</WireframeColor>
  3077.                         -->
  3078.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  3079.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  3080.                          <Replaces block='hellrock'/>
  3081.                      <Biome name='Hell' weight='1'/>          
  3082.                      </Veins>                        
  3083.                  </Cloud>
  3084.              </IfCondition>      
  3085.        
  3086.          </ConfigSection>
  3087.      
  3088.          <!-- * sanguinite * -->
  3089.      
  3090.          <ConfigSection>
  3091.          
  3092.              <IfCondition condition=':= if(age, age.sanguiniteClusters > 0, netherDist = "vanillaStdGen")'>
  3093.                  <StandardGen name='sanguiniteStandard' block='915:7' inherits='PresetStandardGen'>
  3094.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  3095.                      <!--                    
  3096.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3097.                     <WireframeColor>0x60101010</WireframeColor>
  3098.                         -->
  3099.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  3100.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.sanguiniteClusters,1) * _default_'/>
  3101.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  3102.                      <Replaces block='hellrock'/>
  3103.                      <Biome name='Hell' weight='1'/>
  3104.                  </StandardGen>
  3105.              </IfCondition>
  3106.                  
  3107.              <IfCondition condition=':= if(age, age.sanguiniteVeins > 0, netherDist = "layeredVeins")'>
  3108.                  <Veins name='sanguiniteVeins' block='915:7' inherits='PresetLayeredVeins'>
  3109.                      <Description>
  3110.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  3111.                      </Description>
  3112.                      <!--                    
  3113.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3114.                     <WireframeColor>0x60101010</WireframeColor>
  3115.                     -->
  3116.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.sanguiniteVeins,1) * _default_'/>
  3117.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3118.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  3119.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  3120.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3121.                      <Replaces block='hellrock'/>
  3122.                      <Biome name='Hell' weight='1'/>
  3123.                  </Veins>
  3124.              </IfCondition>  
  3125.                  
  3126.              <IfCondition condition=':= if(age, age.sanguiniteClouds > 0, netherDist = "strategicClouds")'>
  3127.                  <Cloud name='sanguiniteCloud' block='915:7' inherits='PresetStrategicCloud'>
  3128.                      <Description>  
  3129.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  3130.                      </Description>
  3131.                      <!--                    
  3132.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3133.                     <WireframeColor>0x60101010</WireframeColor>
  3134.                     -->
  3135.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.sanguiniteClouds,1) * _default_'/>
  3136.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3137.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3138.                      <Replaces block='hellrock'/>
  3139.                      <Biome name='Hell' weight='1'/>
  3140.                      <Veins name='sanguiniteHintVeins' block='915:7' inherits='PresetHintVeins'>
  3141.                          <!--                    
  3142.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  3143.                         <WireframeColor>0x60101010</WireframeColor>
  3144.                         -->
  3145.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  3146.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  3147.                          <Replaces block='hellrock'/>
  3148.                      <Biome name='Hell' weight='1'/>          
  3149.                      </Veins>                        
  3150.                  </Cloud>
  3151.              </IfCondition>      
  3152.        
  3153.          </ConfigSection>
  3154.      
  3155.          <!-- * lemurite * -->
  3156.      
  3157.          <ConfigSection>
  3158.          
  3159.              <IfCondition condition=':= if(age, age.lemuriteClusters > 0, netherDist = "vanillaStdGen")'>
  3160.                  <StandardGen name='lemuriteStandard' block='915:8' inherits='PresetStandardGen'>
  3161.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  3162.                      <!--                    
  3163.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3164.                     <WireframeColor>0x60101010</WireframeColor>
  3165.                         -->
  3166.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  3167.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.lemuriteClusters,1) * _default_'/>
  3168.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  3169.                      <Replaces block='hellrock'/>
  3170.                      <Biome name='Hell' weight='1'/>
  3171.                  </StandardGen>
  3172.              </IfCondition>
  3173.                  
  3174.              <IfCondition condition=':= if(age, age.lemuriteVeins > 0, netherDist = "layeredVeins")'>
  3175.                  <Veins name='lemuriteVeins' block='915:8' inherits='PresetLayeredVeins'>
  3176.                      <Description>
  3177.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  3178.                      </Description>
  3179.                      <!--                    
  3180.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3181.                     <WireframeColor>0x60101010</WireframeColor>
  3182.                     -->
  3183.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.lemuriteVeins,1) * _default_'/>
  3184.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3185.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  3186.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  3187.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3188.                      <Replaces block='hellrock'/>
  3189.                      <Biome name='Hell' weight='1'/>
  3190.                  </Veins>
  3191.              </IfCondition>  
  3192.                  
  3193.              <IfCondition condition=':= if(age, age.lemuriteClouds > 0, netherDist = "strategicClouds")'>
  3194.                  <Cloud name='lemuriteCloud' block='915:8' inherits='PresetStrategicCloud'>
  3195.                      <Description>  
  3196.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  3197.                      </Description>
  3198.                      <!--                    
  3199.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3200.                     <WireframeColor>0x60101010</WireframeColor>
  3201.                     -->
  3202.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.lemuriteClouds,1) * _default_'/>
  3203.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3204.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3205.                      <Replaces block='hellrock'/>
  3206.                      <Biome name='Hell' weight='1'/>
  3207.                      <Veins name='lemuriteHintVeins' block='915:8' inherits='PresetHintVeins'>
  3208.                          <!--                    
  3209.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  3210.                         <WireframeColor>0x60101010</WireframeColor>
  3211.                         -->
  3212.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  3213.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  3214.                          <Replaces block='hellrock'/>
  3215.                      <Biome name='Hell' weight='1'/>          
  3216.                      </Veins>                        
  3217.                  </Cloud>
  3218.              </IfCondition>      
  3219.        
  3220.          </ConfigSection>
  3221.      
  3222.          <!-- * adluorite * -->
  3223.      
  3224.          <ConfigSection>
  3225.          
  3226.              <IfCondition condition=':= if(age, age.adluoriteClusters > 0, netherDist = "vanillaStdGen")'>
  3227.                  <StandardGen name='adluoriteStandard' block='915:9' inherits='PresetStandardGen'>
  3228.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  3229.                      <!--                    
  3230.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3231.                     <WireframeColor>0x60101010</WireframeColor>
  3232.                         -->
  3233.                      <Setting name='Size' avg=':= netherSize * _default_'/>
  3234.                      <Setting name='Frequency' avg=':= netherFreq * if(age,age.adluoriteClusters,1) * _default_'/>
  3235.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  3236.                      <Replaces block='hellrock'/>
  3237.                      <Biome name='Hell' weight='1'/>
  3238.                  </StandardGen>
  3239.              </IfCondition>
  3240.                  
  3241.              <IfCondition condition=':= if(age, age.adluoriteVeins > 0, netherDist = "layeredVeins")'>
  3242.                  <Veins name='adluoriteVeins' block='915:9' inherits='PresetLayeredVeins'>
  3243.                      <Description>
  3244.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  3245.                      </Description>
  3246.                      <!--                    
  3247.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3248.                     <WireframeColor>0x60101010</WireframeColor>
  3249.                     -->
  3250.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * netherFreq * if(age,age.adluoriteVeins,1) * _default_'/>
  3251.                      <Setting name='MotherlodeSize' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3252.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  3253.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  3254.                      <Setting name='SegmentRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3255.                      <Replaces block='hellrock'/>
  3256.                      <Biome name='Hell' weight='1'/>
  3257.                  </Veins>
  3258.              </IfCondition>  
  3259.                  
  3260.              <IfCondition condition=':= if(age, age.adluoriteClouds > 0, netherDist = "strategicClouds")'>
  3261.                  <Cloud name='adluoriteCloud' block='915:9' inherits='PresetStrategicCloud'>
  3262.                      <Description>  
  3263.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  3264.                      </Description>
  3265.                      <!--                    
  3266.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3267.                     <WireframeColor>0x60101010</WireframeColor>
  3268.                     -->
  3269.                      <Setting name='DistributionFrequency' avg=':= 2.5 * netherFreq * if(age,age.adluoriteClouds,1) * _default_'/>
  3270.                      <Setting name='CloudRadius' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3271.                      <Setting name='CloudThickness' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>
  3272.                      <Replaces block='hellrock'/>
  3273.                      <Biome name='Hell' weight='1'/>
  3274.                      <Veins name='adluoriteHintVeins' block='915:9' inherits='PresetHintVeins'>
  3275.                          <!--                    
  3276.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  3277.                         <WireframeColor>0x60101010</WireframeColor>
  3278.                         -->
  3279.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  3280.                          <Setting name='MotherlodeRangeLimit' avg=':= netherSize * _default_' range=':= netherSize * _default_'/>    
  3281.                          <Replaces block='hellrock'/>
  3282.                      <Biome name='Hell' weight='1'/>          
  3283.                      </Veins>                        
  3284.                  </Cloud>
  3285.              </IfCondition>      
  3286.        
  3287.          </ConfigSection>
  3288.      
  3289.          <!--*******************   Ender Ores   ***********************
  3290.         *  
  3291.         *   Ender ores include eximite and meutoite.  These ores can
  3292.         *   only be found naturally in the End.  Distribution is based
  3293.         *   on iron.
  3294.         *  
  3295.         **********************************************************-->
  3296.      
  3297.          <!-- * eximite * -->
  3298.      
  3299.          <ConfigSection>
  3300.          
  3301.              <IfCondition condition=':= if(age, age.eximiteClusters > 0, enderDist = "vanillaStdGen")'>
  3302.                  <StandardGen name='eximiteStandard' block='924' inherits='PresetStandardGen'>
  3303.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  3304.                      <!--                    
  3305.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3306.                     <WireframeColor>0x60101010</WireframeColor>
  3307.                     -->
  3308.                      <Setting name='Size' avg=':= enderSize * _default_'/>
  3309.                      <Setting name='Frequency' avg=':= enderFreq * if(age,age.eximiteClusters,1) * _default_'/>
  3310.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  3311.                      <Replaces block='whiteStone'/>
  3312.                      <Biome name='Sky' weight='1'/>
  3313.                  </StandardGen>
  3314.              </IfCondition>
  3315.                  
  3316.              <IfCondition condition=':= if(age, age.eximiteVeins > 0, enderDist = "layeredVeins")'>
  3317.                  <Veins name='eximiteVeins' block='924' inherits='PresetLayeredVeins'>
  3318.                      <Description>
  3319.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  3320.                      </Description>
  3321.                      <!--                    
  3322.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3323.                     <WireframeColor>0x60101010</WireframeColor>
  3324.                     -->
  3325.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * enderFreq * if(age,age.eximiteVeins,1) * _default_'/>
  3326.                      <Setting name='MotherlodeSize' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3327.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  3328.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  3329.                      <Setting name='SegmentRadius' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3330.                      <Replaces block='whiteStone'/>
  3331.                      <Biome name='Sky' weight='1'/>
  3332.                  </Veins>
  3333.              </IfCondition>  
  3334.                  
  3335.              <IfCondition condition=':= if(age, age.eximiteClouds > 0, enderDist = "strategicClouds")'>
  3336.                  <Cloud name='eximiteCloud' block='924' inherits='PresetStrategicCloud'>
  3337.                      <Description>  
  3338.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  3339.                      </Description>
  3340.                      <!--                    
  3341.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3342.                     <WireframeColor>0x60101010</WireframeColor>
  3343.                     -->
  3344.                      <Setting name='DistributionFrequency' avg=':= 2.5 * enderFreq * if(age,age.eximiteClouds,1) * _default_'/>
  3345.                      <Setting name='CloudRadius' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3346.                      <Setting name='CloudThickness' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3347.                      <Replaces block='whiteStone'/>
  3348.                      <Biome name='Sky' weight='1'/>
  3349.                      <Veins name='eximiteHintVeins' block='924' inherits='PresetHintVeins'>
  3350.                          <!--                    
  3351.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  3352.                         <WireframeColor>0x60101010</WireframeColor>
  3353.                         -->
  3354.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  3355.                          <Setting name='MotherlodeRangeLimit' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3356.                          <Replaces block='whiteStone'/>
  3357.                      <Biome name='Sky' weight='1'/>
  3358.                      </Veins>                        
  3359.                  </Cloud>
  3360.              </IfCondition>      
  3361.        
  3362.          </ConfigSection>
  3363.      
  3364.          <!-- * meutoite * -->
  3365.              
  3366.          <ConfigSection>
  3367.          
  3368.              <IfCondition condition=':= if(age, age.meutoiteClusters > 0, enderDist = "vanillaStdGen")'>
  3369.                  <StandardGen name='meutoiteStandard' block='924:1' inherits='PresetStandardGen'>
  3370.                      <Description> Equivalent to vanilla minecraft ore distribution </Description>
  3371.                      <!--                    
  3372.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3373.                     <WireframeColor>0x60101010</WireframeColor>
  3374.                     -->
  3375.                      <Setting name='Size' avg=':= enderSize * _default_'/>
  3376.                      <Setting name='Frequency' avg=':= enderFreq * if(age,age.meutoiteClusters,1) * _default_'/>
  3377.                      <Setting name='Height' avg=':= 32/64 * 1.5 * dimension.groundLevel' range=':= 32/64 * 1.5 * dimension.groundLevel'/>
  3378.                      <Replaces block='whiteStone'/>
  3379.                      <Biome name='Sky' weight='1'/>
  3380.                  </StandardGen>
  3381.              </IfCondition>
  3382.                  
  3383.              <IfCondition condition=':= if(age, age.meutoiteVeins > 0, enderDist = "layeredVeins")'>
  3384.                  <Veins name='meutoiteVeins' block='924:1' inherits='PresetLayeredVeins'>
  3385.                      <Description>
  3386.                          Ore spawns in the height 30-50 range.  The veins are average in length and size.
  3387.                      </Description>
  3388.                      <!--                    
  3389.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3390.                     <WireframeColor>0x60101010</WireframeColor>
  3391.                     -->
  3392.                      <Setting name='MotherlodeFrequency' avg=':= 0.9 * enderFreq * if(age,age.meutoiteVeins,1) * _default_'/>
  3393.                      <Setting name='MotherlodeSize' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3394.                      <Setting name='MotherlodeHeight' avg=':= 43/64 * 1.5 * dimension.groundLevel' range=':= 10.5/64 * 1.5 * dimension.groundLevel' type='normal'/>
  3395.                      <Setting name='BranchHeightLimit' avg='10.5'/>
  3396.                      <Setting name='SegmentRadius' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3397.                      <Replaces block='whiteStone'/>
  3398.                      <Biome name='Sky' weight='1'/>
  3399.                  </Veins>
  3400.              </IfCondition>  
  3401.                  
  3402.              <IfCondition condition=':= if(age, age.meutoiteClouds > 0, enderDist = "strategicClouds")'>
  3403.                  <Cloud name='meutoiteCloud' block='924:1' inherits='PresetStrategicCloud'>
  3404.                      <Description>  
  3405.                          Diffuse ore cloud surrounded by single-block "hint" veins, found in cold biomes.
  3406.                      </Description>
  3407.                      <!--                    
  3408.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  3409.                     <WireframeColor>0x60101010</WireframeColor>
  3410.                     -->
  3411.                      <Setting name='DistributionFrequency' avg=':= 2.5 * enderFreq * if(age,age.meutoiteClouds,1) * _default_'/>
  3412.                      <Setting name='CloudRadius' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3413.                      <Setting name='CloudThickness' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3414.                      <Replaces block='whiteStone'/>
  3415.                      <Biome name='Sky' weight='1'/>
  3416.                      <Veins name='meutoiteHintVeins' block='924:1' inherits='PresetHintVeins'>
  3417.                          <!--                    
  3418.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  3419.                         <WireframeColor>0x60101010</WireframeColor>
  3420.                         -->
  3421.                          <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  3422.                          <Setting name='MotherlodeRangeLimit' avg=':= enderSize * _default_' range=':= enderSize * _default_'/>
  3423.                          <Replaces block='whiteStone'/>
  3424.                      <Biome name='Sky' weight='1'/>
  3425.                      </Veins>                        
  3426.                  </Cloud>
  3427.              </IfCondition>      
  3428.        
  3429.          </ConfigSection>
  3430.      
  3431.      </IfCondition>
  3432.  
  3433. </ConfigSection>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement