Advertisement
Pyromancer3D

MinecraftOres.xml

Jan 13th, 2015
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 48.54 KB | None | 0 0
  1. <!--************************  CustomOreGen Minecraft Ores Module ****************
  2. *
  3. *   This file contains Presets, Options, and Distributions for the 7
  4. *   vanilla minecraft ores:
  5. *       Coal, Iron, Gold, Redstone, Diamond, Lapis Lazuli, and Emerald.
  6. *
  7. ******************************************************************************-->
  8. <ConfigSection>
  9.  
  10.     <!--***************************   Options + Symbols   ***********************
  11.    *
  12.    *   Below are options and symbols for Coal, Iron, Gold, Redstone,
  13.    *   Diamond, Lapis Lazuli, and Emerald.
  14.    *   Each ore has a "type" option corresponding to select which distribution
  15.    *   is used for that ore in the overworld.
  16.    *
  17.    *   Each ore also has its own overall "frequency" and "size" multipliers.
  18.    *   These are provided so people can tweak the rarity of each ore
  19.    *   from the options file rather than having to edit the config directly.
  20.    *
  21.    **************************************************************************-->
  22.     <ConfigSection>
  23.    
  24.         <OptionDisplayGroup name='groupStdOres' displayName='Minecraft Ores' displayState='shown'>
  25.             <Description>
  26.                 Distribution options for the vanilla Minecraft ores.
  27.             </Description>
  28.         </OptionDisplayGroup>
  29.  
  30.         <!--*******************   Coal   ***********************-->
  31.         <ConfigSection>
  32.        
  33.             <OptionChoice name='coalDist' default='layeredVeins' displayState='shown' displayGroup='groupStdOres'>
  34.                 <Description> Controls how Coal is generated </Description>
  35.                 <DisplayName>Coal Type</DisplayName>
  36.                 <Choice value='layeredVeins' displayValue='Veins'>
  37.                     <Description>
  38.                         Single short, wide veins found near ground level and only sparsely filled with ore.  Most common in swamps.  
  39.                     </Description>
  40.                 </Choice>
  41.                 <Choice value='strategicClouds' displayValue='Clouds'>
  42.                     <Description>
  43.                         Rare, sparsely populated clouds of ore extending over several chunks.  Found only in swamps.
  44.                     </Description>
  45.                 </Choice>
  46.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  47.                     <Description>
  48.                         Small evenly scattered clusters of ore.  This is the vanilla coal generation.
  49.                     </Description>
  50.                 </Choice>
  51.                 <Choice value='none' displayValue='None' description='No coal is generated at all.'/>
  52.             </OptionChoice>
  53.            
  54.             <OptionNumeric name='coalFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  55.                 <Description> Frequency multiplier for Coal distributions </Description>
  56.                 <DisplayName>Coal Freq.</DisplayName>
  57.             </OptionNumeric>
  58.            
  59.             <OptionNumeric name='coalSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  60.                 <Description> Size multiplier for Coal distributions </Description>
  61.                 <DisplayName>Coal Size</DisplayName>
  62.             </OptionNumeric>
  63.  
  64.         </ConfigSection>        
  65.            
  66.         <!--*******************   Iron   ***********************-->
  67.         <ConfigSection>
  68.            
  69.             <OptionChoice name='ironDist' default='layeredVeins' displayState='shown' displayGroup='groupStdOres'>
  70.                 <Description> Controls how Iron is generated </Description>
  71.                 <DisplayName>Iron Type</DisplayName>
  72.                 <Choice value='layeredVeins' displayValue='Veins'>
  73.                     <Description>
  74.                         Groups of long narrow veins found about one third of the way down to bedrock.  Especially common in snowy or icy areas.  
  75.                     </Description>
  76.                 </Choice>
  77.                 <Choice value='strategicClouds' displayValue='Clouds'>
  78.                     <Description>
  79.                         Rare, sparsely populated clouds of ore extending over several chunks.  Found only in snowy or icy areas.
  80.                     </Description>
  81.                 </Choice>
  82.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  83.                     <Description>
  84.                         Small evenly scattered clusters of ore.  This is the vanilla iron generation.
  85.                     </Description>
  86.                 </Choice>
  87.                 <Choice value='none' displayValue='None' description='No iron is generated at all.'/>
  88.             </OptionChoice>
  89.            
  90.             <OptionNumeric name='ironFreq' default='1.5'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  91.                 <Description> Frequency multiplier for Iron distributions </Description>
  92.                 <DisplayName>Iron Freq.</DisplayName>
  93.             </OptionNumeric>
  94.            
  95.             <OptionNumeric name='ironSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  96.                 <Description> Size multiplier for Iron distributions </Description>
  97.                 <DisplayName>Iron Size</DisplayName>
  98.             </OptionNumeric>    
  99.            
  100.         </ConfigSection>          
  101.        
  102.         <!--*******************   Gold   ***********************-->
  103.         <ConfigSection>
  104.        
  105.             <OptionChoice name='goldDist' default='layeredVeins' displayState='shown' displayGroup='groupStdOres'>
  106.                 <Description> Controls how Gold is generated </Description>
  107.                 <DisplayName>Gold Type</DisplayName>
  108.                 <Choice value='layeredVeins' displayValue='Veins'>
  109.                     <Description>
  110.                         Groups of long narrow veins found about two thirds of the way down to bedrock.  Most common in temperate hardwood forests, but still very rare.
  111.                     </Description>
  112.                 </Choice>
  113.                 <Choice value='strategicClouds' displayValue='Clouds'>
  114.                     <Description>
  115.                         Rare, sparsely populated clouds of ore extending over several chunks.  Found only in temperate hardwood forests.
  116.                     </Description>
  117.                 </Choice>
  118.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  119.                     <Description>
  120.                         Small clusters of ore scattered evenly from bedrock about halfway to the surface.  This is the vanilla gold generation.
  121.                     </Description>
  122.                 </Choice>
  123.                 <Choice value='none' displayValue='None' description='No gold is generated at all.'/>
  124.             </OptionChoice>
  125.            
  126.             <OptionNumeric name='goldFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  127.                 <Description> Frequency multiplier for Gold distributions </Description>
  128.                 <DisplayName>Gold Freq.</DisplayName>
  129.             </OptionNumeric>
  130.            
  131.             <OptionNumeric name='goldSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  132.                 <Description> Size multiplier for Gold distributions </Description>
  133.                 <DisplayName>Gold Size</DisplayName>
  134.             </OptionNumeric>
  135.            
  136.         </ConfigSection>          
  137.        
  138.         <!--*****************   Redstone   *********************-->
  139.         <ConfigSection>        
  140.        
  141.             <OptionChoice name='redstoneDist' default='layeredVeins' displayState='shown' displayGroup='groupStdOres'>
  142.                 <Description> Controls how Redstone is generated </Description>
  143.                 <DisplayName>Redstone Type</DisplayName>
  144.                 <Choice value='layeredVeins' displayValue='Veins'>
  145.                     <Description>
  146.                         Single vertical veins starting near the surface and extending down about halfway to bedrock.  Most common in desert climates.
  147.                     </Description>
  148.                 </Choice>
  149.                 <Choice value='strategicClouds' displayValue='Clouds'>
  150.                     <Description>
  151.                         Rare, sparsely populated clouds of ore extending over several chunks.  Found only in desert climates.
  152.                     </Description>
  153.                 </Choice>
  154.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  155.                     <Description>
  156.                         Small clusters of ore scattered evenly from bedrock about one quarter of the way to the surface.  This is the vanilla redstone generation.
  157.                     </Description>
  158.                 </Choice>
  159.                 <Choice value='none' displayValue='None' description='No redstone is generated at all.'/>
  160.             </OptionChoice>
  161.            
  162.             <OptionNumeric name='redstoneFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  163.                 <Description> Frequency multiplier for Redstone distributions </Description>
  164.                 <DisplayName>Redstone Freq.</DisplayName>
  165.             </OptionNumeric>
  166.            
  167.             <OptionNumeric name='redstoneSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  168.                 <Description> Size multiplier for Redstone distributions </Description>
  169.                 <DisplayName>Redstone Size</DisplayName>
  170.             </OptionNumeric>    
  171.                
  172.         </ConfigSection>          
  173.        
  174.         <!--*****************   Diamond   **********************-->
  175.         <ConfigSection>
  176.        
  177.             <OptionChoice name='diamondDist' default='layeredVeins' displayState='shown' displayGroup='groupStdOres'>
  178.                 <Description> Controls how Diamonds are generated </Description>
  179.                 <DisplayName>Diamond Type</DisplayName>
  180.                 <Choice value='layeredVeins' displayValue='Veins'>
  181.                     <Description>
  182.                         Short lava-filled tubes extending upward from bedrock with diamonds around the edges.
  183.                     </Description>
  184.                 </Choice>
  185.                 <Choice value='strategicClouds' displayValue='Clouds'>
  186.                     <Description>
  187.                         Uncommon, sparsely populated clouds of ore covering roughly one chunk.
  188.                     </Description>
  189.                 </Choice>
  190.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  191.                     <Description>
  192.                         Small clusters of ore scattered evenly from bedrock about one quarter of the way to the surface.  This is the vanilla diamond generation.
  193.                     </Description>
  194.                 </Choice>
  195.                 <Choice value='none' displayValue='None' description='No diamonds are generated at all.'/>
  196.             </OptionChoice>
  197.            
  198.             <OptionNumeric name='diamondFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  199.                 <Description> Frequency multiplier for Diamond distributions </Description>
  200.                 <DisplayName>Diamond Freq.</DisplayName>
  201.             </OptionNumeric>
  202.            
  203.             <OptionNumeric name='diamondSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  204.                 <Description> Size multiplier for Diamond distributions </Description>
  205.                 <DisplayName>Diamond Size</DisplayName>
  206.             </OptionNumeric>    
  207.                
  208.         </ConfigSection>          
  209.        
  210.         <!--***************   Lapis Lazuli   *******************-->
  211.         <ConfigSection>
  212.        
  213.             <OptionChoice name='lapisDist' default='layeredVeins' displayState='shown' displayGroup='groupStdOres'>
  214.                 <Description> Controls how Lapis Lazuli is generated </Description>
  215.                 <DisplayName>Lapis Lazuli Type</DisplayName>
  216.                 <Choice value='layeredVeins' displayValue='Veins'>
  217.                     <Description>
  218.                         Single vertical veins starting near bedrock and extending about halfway to the surface.  Most common under ocean floors.
  219.                     </Description>
  220.                 </Choice>
  221.                 <Choice value='strategicClouds' displayValue='Clouds'>
  222.                     <Description>
  223.                         Rare, sparsely populated clouds of ore extending over several chunks.  Found only under oceans.
  224.                     </Description>
  225.                 </Choice>
  226.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  227.                     <Description>
  228.                         Small clusters of ore scattered evenly from bedrock about halfway to the surface.  This is the vanilla lapis lazuli generation.
  229.                     </Description>
  230.                 </Choice>
  231.                 <Choice value='none' displayValue='None' description='No lapis lazuli is generated at all.'/>
  232.             </OptionChoice>
  233.            
  234.             <OptionNumeric name='lapisFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  235.                 <Description> Frequency multiplier for Lapis Lazuli distributions </Description>
  236.                 <DisplayName>Lapis Lazuli Freq.</DisplayName>
  237.             </OptionNumeric>
  238.            
  239.             <OptionNumeric name='lapisSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  240.                 <Description> Size multiplier for Lapis Lazuli distributions </Description>
  241.                 <DisplayName>Lapis Lazuli Size</DisplayName>
  242.             </OptionNumeric>    
  243.                        
  244.         </ConfigSection>          
  245.        
  246.         <!--*****************   Emerald   **********************-->
  247.         <ConfigSection>
  248.        
  249.             <OptionChoice name='emeraldDist' default='layeredVeins' displayState='shown' displayGroup='groupStdOres'>
  250.                 <Description> Controls how Emeralds are generated </Description>
  251.                 <DisplayName>Emerald Type</DisplayName>
  252.                 <Choice value='layeredVeins' displayValue='Veins'>
  253.                     <Description>
  254.                         Short sloping tubes filled sparsely with emeralds and a few ... surprises.  Vastly more common under open grassy hills.
  255.                     </Description>
  256.                 </Choice>
  257.                 <Choice value='strategicClouds' displayValue='Clouds'>
  258.                     <Description>
  259.                         Uncommon, sparsely populated clouds of ore covering roughly one chunk.  Found only under open grassy hills.
  260.                     </Description>
  261.                 </Choice>
  262.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  263.                     <Description>
  264.                         Single blocks scattered near bedrock under open grassy highlands.  This is the vanilla emerald generation.
  265.                     </Description>
  266.                 </Choice>
  267.                 <Choice value='none' displayValue='None' description='No emeralds are generated at all.'/>
  268.             </OptionChoice>
  269.            
  270.             <OptionNumeric name='emeraldFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  271.                 <Description> Frequency multiplier for Emerald distributions </Description>
  272.                 <DisplayName>Emerald Freq.</DisplayName>
  273.             </OptionNumeric>
  274.            
  275.             <OptionNumeric name='emeraldSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupStdOres'>
  276.                 <Description> Size multiplier for Emerald distributions </Description>
  277.                 <DisplayName>Emerald Size</DisplayName>
  278.             </OptionNumeric>
  279.            
  280.         </ConfigSection>
  281.        
  282.      </ConfigSection>    
  283.    
  284.     <!--*****************************   Distributions   *************************
  285.    *  
  286.    *   Below are the actual distributions for the vanilla ores in the
  287.    *   overworld and mystcraft ages.  There are currently 3 types of
  288.    *   distribution for each ore:
  289.    *     Layered Veins:  
  290.    *       Some form of veins or clusters arranged loosely by height and
  291.    *       more common in affiliated biomes.
  292.    *     Strategic Clouds:  
  293.    *       Huge, rare, low-density clouds.  Size and frequency are
  294.    *       fairly consistent; density is varied to reflect ore rarity.
  295.    *       May be surrounded by a scattering of single blocks as
  296.    *       hints to help guide players in.
  297.    *     Vanilla Clusters:
  298.    *       A re-creation of the vanilla ore generation using the
  299.    *       StandardGen algorithm.
  300.    *
  301.    **************************************************************************-->
  302.     <IfCondition condition=':= ?COGActive'>
  303.        
  304.         <!--**********   Vanilla Deposit Removal   *************-->
  305.       <IfCondition condition=':= vanillaOreGen'>
  306.         <Substitute name='StandardOreSubstitute' block='minecraft:stone'>
  307.             <Description>
  308.                 Replace vanilla-generated ore clusters with stone.  
  309.             </Description>
  310.             <Comment>  
  311.                 The global option deferredPopulationRange must be large enough to catch all ore clusters (>= 32).
  312.             </Comment>
  313.             <Replaces block='minecraft:coal_ore'/>
  314.             <Replaces block='minecraft:iron_ore'/>
  315.             <Replaces block='minecraft:gold_ore'/>
  316.             <Replaces block='minecraft:redstone_ore'/>
  317.             <Replaces block='minecraft:diamond_ore'/>
  318.             <Replaces block='minecraft:lapis_ore'/>
  319.             <Replaces block='minecraft:emerald_ore'/>
  320.         </Substitute>
  321.       </IfCondition>
  322.        
  323.         <!--*******************   Coal   ***********************-->
  324.         <ConfigSection>
  325.        
  326.             <IfCondition condition=':= coalDist = "vanillaStdGen"'>    
  327.                 <StandardGen name='CoalStandard' block='minecraft:coal_ore' inherits='PresetStandardGen'>
  328.                     <Description> Equivalent to vanilla minecraft coal distribution </Description>
  329.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  330.                     <WireframeColor>0x60101010</WireframeColor>
  331.                     <Setting name='Size' avg=':= 2 * coalSize * _default_'/>
  332.                     <Setting name='Frequency' avg=':= coalFreq *  _default_'/>
  333.                 </StandardGen>
  334.             </IfCondition>  
  335.            
  336.             <IfCondition condition=':= coalDist = "layeredVeins"'>    
  337.                 <Veins name='CoalVeins' block='minecraft:coal_ore' inherits='PresetSparseVeins'>    
  338.                     <Description>
  339.                         Coal spawns just near the surface, and up into hills and mountains.  The veins are
  340.                         long and thick, but sparsely filled with ore and often broken up by caves or depressions
  341.                         in the terrain.
  342.                     </Description>
  343.                     <DrawWireframe>:=false</DrawWireframe>
  344.                     <WireframeColor>0x60101010</WireframeColor>
  345.                     <Setting name='MotherlodeFrequency'
  346.                             avg=':= 7.7 * coalFreq * _default_'/>
  347.                     <Setting name='MotherlodeSize' avg=':= coalSize * _default_' range=':= coalSize * _default_'/>
  348.                     <Setting name='MotherlodeHeight' avg='60'
  349.                             range='10' scaleTo='sealevel'/>
  350.                     <Setting name='BranchLength' avg=':= 0.45 * _default_' range=':= 0.45 * _default_'/>
  351.                     <Setting name='BranchInclination' avg='0' range='0.35'/>
  352.                     <Setting name='BranchHeightLimit' avg='10'/>
  353.                     <Setting name='SegmentRadius' avg=':= coalSize * _default_' range=':= coalSize * _default_'/>
  354.                     <Setting name='OreDensity' avg=':= 1.75 * _default_' range=':= _default_'/>
  355.                 </Veins>
  356.                 <Veins name='CoalVeinsMountain' block='minecraft:coal_ore' inherits='CoalVeins'>    
  357.                     <Description>
  358.                         Coal can be found high in the mountainside occasionally
  359.                     </Description>
  360.                     <DrawWireframe>:=false</DrawWireframe>
  361.                     <WireframeColor>0x60101010</WireframeColor>
  362.                     <Setting name='MotherlodeFrequency'
  363.                             avg=':= 1.7 * coalFreq * _default_'/>
  364.                     <Setting name='MotherlodeSize' avg=':= 0.5 * coalSize * _default_' range=':= coalSize * _default_'/>
  365.                     <Setting name='MotherlodeHeight' avg='120'
  366.                             range='20' scaleTo='sealevel'/>
  367.                     <Setting name='BranchLength' avg=':= 0.85 * _default_' range=':= 0.85 * _default_'/>
  368.                     <Setting name='BranchInclination' avg='0' range='0.5'/>
  369.                     <Setting name='BranchHeightLimit' avg='10'/>
  370.                     <Setting name='SegmentRadius' avg=':= coalSize * _default_' range=':= coalSize * _default_'/>
  371.                     <Setting name='OreDensity' avg=':= 1.0 * _default_' range=':= _default_'/>
  372.                 </Veins>
  373.                 <Veins name='CoalVeinsSwamp' inherits='CoalVeins'>
  374.                     <Description>  This roughly triples the chance of finding coal in a swamp. </Description>      
  375.                     <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  376.                     <Setting name='MotherlodeHeight' avg=':= _default_' range=':= 2 * _default_'/>
  377.                     <Setting name='BranchHeightLimit' avg=':= 1.45 * _default_'/>  
  378.                     <BiomeType name='Swamp'/>
  379.                 </Veins>      
  380.             </IfCondition>    
  381.            
  382.             <IfCondition condition=':= coalDist = "strategicClouds"'>    
  383.                 <Cloud name='CoalCloud' block='minecraft:coal_ore' inherits='PresetStrategicCloud'>
  384.                     <Description>  
  385.                         Diffuse coal cloud surrounded by single-block "hint" veins, found in swamps.
  386.                     </Description>
  387.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  388.                     <WireframeColor>0x60101010</WireframeColor>
  389.                     <Setting name='DistributionFrequency' avg=':= 5 * coalFreq *_default_'/>
  390.                     <Setting name='CloudRadius' avg=':= 1.2 * coalSize * _default_' range=':= 1.2 * coalSize * _default_'/>
  391.                     <Setting name='CloudThickness' avg=':= coalSize * _default_' range=':= coalSize * _default_'/>
  392.                     <Setting name='OreDensity' avg=':= 0.75 * _default_'/>
  393.                     <BiomeType name='Swamp'/>
  394.                     <Veins name='CoalHintVeins' block='minecraft:coal_ore' inherits='PresetHintVeins'>
  395.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  396.                         <WireframeColor>0x60101010</WireframeColor>
  397.                         <Setting name='MotherlodeFrequency' avg=':= 1.2 * _default_' range=':= _default_'/>
  398.                         <Setting name='MotherlodeRangeLimit' avg=':= coalSize * _default_' range=':= coalSize * _default_'/>
  399.                     </Veins>                
  400.                 </Cloud>
  401.             </IfCondition>  
  402.            
  403.         </ConfigSection>
  404.                
  405.         <!--*******************   Iron   ***********************-->
  406.         <ConfigSection>
  407.        
  408.             <IfCondition condition=':= ironDist = "vanillaStdGen"'>
  409.                 <StandardGen name='IronStandard' block='minecraft:iron_ore' inherits='PresetStandardGen'>
  410.                     <Description> Equivalent to vanilla minecraft iron distribution </Description>
  411.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  412.                     <WireframeColor>0x40221100</WireframeColor>
  413.                     <Setting name='Size' avg=':= ironSize * _default_'/>
  414.                     <Setting name='Frequency' avg=':= ironFreq * _default_'/>
  415.                     <Setting name='Height' avg='32' range='32' scaleTo='sealevel'/>
  416.                 </StandardGen>
  417.             </IfCondition>
  418.            
  419.             <IfCondition condition=':= ironDist = "layeredVeins"'>
  420.                 <Veins name='IronVeins' block='minecraft:iron_ore' inherits='PresetLayeredVeins'>
  421.                     <Description>
  422.                         Iron spawns in the height 30-50 range.  The veins are average in length and size.
  423.                     </Description>
  424.                     <DrawWireframe>:=false</DrawWireframe>
  425.                     <WireframeColor>0x40221100</WireframeColor>
  426.                     <Setting name='MotherlodeFrequency' avg=':= 0.75 * ironFreq * _default_'/>
  427.                     <Setting name='MotherlodeSize' avg=':= ironSize * _default_' range=':= ironSize * _default_'/>
  428.                     <Setting name='MotherlodeHeight' avg='43'
  429.                             range='10.5' type='normal' scaleTo='sealevel'/>
  430.                     <Setting name='BranchHeightLimit' avg='10.5'/>
  431.                     <Setting name='SegmentRadius' avg=':= ironSize * _default_' range=':= ironSize * _default_'/>
  432.                 </Veins>
  433.                 <Veins name='IronVeinsMountains' block='minecraft:iron_ore' inherits='IronVeins'>
  434.                     <Description>
  435.                         Iron can occasionally be found running through upper ends of mountaintops occasionally
  436.                     </Description>
  437.                     <DrawWireframe>:=false</DrawWireframe>
  438.                     <WireframeColor>0x40221100</WireframeColor>
  439.                     <Setting name='MotherlodeFrequency' avg=':= 0.05 * ironFreq * _default_'/>
  440.                     <Setting name='MotherlodeSize' avg=':= 0.2 * ironSize * _default_' range=':= ironSize * _default_'/>
  441.                     <Setting name='MotherlodeHeight' avg='130'
  442.                             range='15' type='normal' scaleTo='sealevel'/>
  443.                     <Setting name='BranchHeightLimit' avg='15'/>
  444.                     <Setting name='SegmentRadius' avg=':= 0.6 * ironSize * _default_' range=':= ironSize * _default_'/>
  445.                     <Setting name='SegmentLength' avg=':= 0.2 * ironSize * _default_' range=':= ironSize * _default_'/>
  446.                 </Veins>
  447.                 <Veins name='IronVeinsCold' inherits='IronVeins'>
  448.                     <Description> This roughly triples the chance of finding iron in cold/icy biomes. </Description>
  449.                     <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  450.                     <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  451.                     <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  452.                     <BiomeType name='Cold'/>
  453.                     <BiomeType name='Ocean' weight='-1'/>
  454.                 </Veins>
  455.             </IfCondition>  
  456.                
  457.             <IfCondition condition=':= ironDist = "strategicClouds"'>
  458.                 <Cloud name='IronCloud' block='minecraft:iron_ore' inherits='PresetStrategicCloud'>
  459.                     <Description>  
  460.                         Diffuse iron cloud surrounded by single-block "hint" veins, found in cold biomes.
  461.                     </Description>
  462.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  463.                     <WireframeColor>0x40221100</WireframeColor>
  464.                     <Setting name='DistributionFrequency' avg=':= 2.5 * ironFreq * _default_'/>
  465.                     <Setting name='CloudRadius' avg=':= ironSize * _default_' range=':= ironSize * _default_'/>
  466.                     <Setting name='CloudThickness' avg=':= ironSize * _default_' range=':= ironSize * _default_'/>
  467.                     <BiomeType name='Cold'/>
  468.                     <BiomeType name='Ocean' weight='-1'/>
  469.                     <Veins name='IronHintVeins' block='minecraft:iron_ore' inherits='PresetHintVeins'>
  470.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  471.                         <WireframeColor>0x40221100</WireframeColor>
  472.                         <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  473.                         <Setting name='MotherlodeRangeLimit' avg=':= ironSize * _default_' range=':= ironSize * _default_'/>              
  474.                     </Veins>                        
  475.                 </Cloud>
  476.             </IfCondition>      
  477.        
  478.         </ConfigSection>          
  479.        
  480.         <!--*******************   Gold   ***********************-->
  481.         <ConfigSection>
  482.        
  483.             <IfCondition condition=':= goldDist = "vanillaStdGen"'>
  484.                 <StandardGen name='GoldStandard' block='minecraft:gold_ore' inherits='PresetStandardGen'>
  485.                     <Description> Equivalent to vanilla minecraft gold distribution </Description>
  486.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  487.                     <WireframeColor>0x40443300</WireframeColor>
  488.                     <Setting name='Size' avg=':= goldSize * _default_'/>
  489.                     <Setting name='Frequency' avg=':= 0.1 * goldFreq * _default_'/>
  490.                     <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel'/>
  491.                 </StandardGen>
  492.             </IfCondition>
  493.                
  494.             <IfCondition condition=':= goldDist = "layeredVeins"'>
  495.                 <Veins name='GoldVeins' block='minecraft:gold_ore' inherits='PresetLayeredVeins'>
  496.                     <Description>
  497.                         Gold spawns in the height 10-30 range.  The veins are shorter than average,
  498.                         and much rarer overall.  Gold is not easy to find.
  499.                     </Description>  
  500.                     <DrawWireframe>:=false</DrawWireframe>
  501.                     <WireframeColor>0x40443300</WireframeColor>
  502.                     <Setting name='MotherlodeFrequency' avg=':= 0.85 * goldFreq * _default_'/>
  503.                     <Setting name='MotherlodeSize' avg=':= 0.8 * goldSize * _default_' range=':= 0.5 * goldSize * _default_'/>
  504.                     <Setting name='MotherlodeHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 10/64 * dimension.groundLevel' type='normal'/>
  505.                     <Setting name='BranchHeightLimit' avg='10'/>  
  506.                     <Setting name='BranchFrequency' avg=':= 0.85 * _default_'/>
  507.                     <Setting name='BranchLength' avg=':= 0.75 * _default_' range=':= 0.66 * _default_'/>
  508.                     <Setting name='SegmentRadius' avg=':= 0.7 * goldSize * _default_' range=':= 0.5 * goldSize * _default_'/>
  509.                     <Setting name='SegmentAngle' avg='0.6' range='0.40' />
  510.                 </Veins>
  511.                 <Veins name='GoldVeinsForest' inherits='GoldVeins'>
  512.                     <Description> This roughly triples the chance of finding gold in forested biomes. </Description>
  513.                     <Setting name='MotherlodeFrequency' avg=':= 1.3 * _default_'/>
  514.                     <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  515.                     <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  516.                     <BiomeType name='Forest'/>    
  517.                 </Veins>
  518.             </IfCondition>
  519.                
  520.             <IfCondition condition=':= goldDist = "strategicClouds"'>
  521.                 <Cloud name='GoldCloud' block='minecraft:gold_ore' inherits='PresetStrategicCloud'>
  522.                     <Description>  
  523.                         Diffuse gold cloud surrounded by single-block "hint" veins, found in forest biomes.
  524.                     </Description>
  525.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  526.                     <WireframeColor>0x40443300</WireframeColor>
  527.                     <Setting name='DistributionFrequency' avg=':= 4.5 * goldFreq * _default_'/>
  528.                     <Setting name='CloudRadius' avg=':= 0.8 * goldSize * _default_' range=':= 0.8 * goldSize * _default_'/>
  529.                     <Setting name='CloudThickness' avg=':= 0.8 * goldSize * _default_' range=':= goldSize * _default_'/>
  530.                     <Setting name='OreDensity' avg=':= 0.3 * _default_'/>
  531.                     <BiomeType name='Forest'/>    
  532.                     <Veins name='GoldHintVeins' block='minecraft:gold_ore' inherits='PresetHintVeins'>
  533.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  534.                         <WireframeColor>0x40443300</WireframeColor>
  535.                         <Setting name='MotherlodeFrequency' avg=':= 0.3 * _default_' range=':= _default_'/>
  536.                         <Setting name='MotherlodeRangeLimit' avg=':= 0.75 * goldSize * _default_' range=':= 0.65 * goldSize * _default_'/>                    
  537.                     </Veins>            
  538.                 </Cloud>
  539.             </IfCondition>      
  540.        
  541.         </ConfigSection>          
  542.        
  543.         <!--*****************   Redstone   *********************-->
  544.         <ConfigSection>
  545.        
  546.             <IfCondition condition=':= redstoneDist = "vanillaStdGen"'>
  547.                 <StandardGen name='RedstoneStandard' block='minecraft:redstone_ore' inherits='PresetStandardGen'>
  548.                     <Description> Equivalent to vanilla minecraft redstone distribution </Description>
  549.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  550.                     <WireframeColor>0x40550000</WireframeColor>
  551.                     <Setting name='Size' avg=':= 7/8 * redstoneSize * _default_'/>
  552.                     <Setting name='Frequency' avg=':= 0.4 * redstoneFreq * _default_'/>
  553.                     <Setting name='Height' avg=':= 8/64 * dimension.groundLevel' range=':= 8/64 * dimension.groundLevel'/>
  554.                 </StandardGen>
  555.             </IfCondition>
  556.                
  557.             <IfCondition condition=':= redstoneDist = "layeredVeins"'>
  558.                 <Veins name='RedstoneVeins' block='minecraft:redstone_ore' inherits='PresetVerticalVeins'>
  559.                     <Description>
  560.                         Isolated veins (no motherlodes) that run vertically.  These veins are fairly common, but a challenge to mine because you have to tunnel straight down.
  561.                     </Description>  
  562.                     <DrawWireframe>:=false</DrawWireframe>
  563.                     <WireframeColor>0x40550000</WireframeColor>
  564.                     <Setting name='MotherlodeFrequency' avg=':= 1.2 * redstoneFreq * _default_'/>
  565.                     <Setting name='SegmentRadius' avg=':= redstoneSize * _default_' range=':= redstoneSize * _default_'/>
  566.                 </Veins>
  567.                 <Veins name='RedstoneVeinsDesert' inherits='RedstoneVeins'>
  568.                     <Description> This roughly triples the chance of finding redstone in deserts. </Description>
  569.                     <Setting name='MotherlodeFrequency' avg=':= 1.25 * _default_'/>
  570.                     <ReplacesOre block='stone'/>
  571.                     <Replaces block='minecraft:sandstone'/>
  572.                     <BiomeType name='Sandy'/>    
  573.                 </Veins>
  574.             </IfCondition>
  575.                
  576.             <IfCondition condition=':= redstoneDist = "strategicClouds"'>
  577.                 <Cloud name='RedstoneCloud' block='minecraft:redstone_ore' inherits='PresetStrategicCloud'>
  578.                     <Description>
  579.                         Diffuse redstone cloud surrounded by single-block "hint" veins, found in deserts.
  580.                     </Description>
  581.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  582.                     <WireframeColor>0x40550000</WireframeColor>
  583.                     <Setting name='DistributionFrequency' avg=':= 4.5 * redstoneFreq * _default_'/>
  584.                     <Setting name='CloudRadius' avg=':= 0.65 * redstoneSize * _default_' range=':= 0.5 * redstoneSize * _default_'/>
  585.                     <Setting name='CloudThickness' avg=':= 0.7 * redstoneSize * _default_' range=':= 0.7 * redstoneSize * _default_'/>
  586.                     <BiomeType name='Sandy'/>    
  587.                     <Veins name='RedstoneHintVeins' block='minecraft:redstone_ore' inherits='PresetHintVeins'>
  588.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  589.                         <WireframeColor>0x40550000</WireframeColor>
  590.                         <Setting name='MotherlodeFrequency' avg=':= 0.7 * _default_' range=':= _default_'/>
  591.                         <Setting name='MotherlodeRangeLimit' avg=':= 0.65 * redstoneSize * _default_' range=':= 0.65 * redstoneSize * _default_'/>                    
  592.                         <ReplacesOre block='stone'/>
  593.                         <Replaces block='minecraft:sandstone'/>            
  594.                     </Veins>        
  595.                 </Cloud>
  596.             </IfCondition>  
  597.        
  598.         </ConfigSection>          
  599.        
  600.         <!--*****************   Diamond   **********************-->
  601.         <ConfigSection>
  602.            
  603.             <IfCondition condition=':= diamondDist = "vanillaStdGen"'>
  604.                 <StandardGen name='DiamondStandard' block='minecraft:diamond_ore' inherits='PresetStandardGen'>
  605.                     <Description> Equivalent to vanilla minecraft diamond distribution </Description>
  606.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  607.                     <WireframeColor>0x40336699</WireframeColor>
  608.                     <Setting name='Size' avg=':= 7/8 * diamondSize * _default_'/>
  609.                     <Setting name='Frequency' avg=':= 1/20 * diamondFreq * _default_'/>
  610.                     <Setting name='Height' avg=':= 8/64 * dimension.groundLevel' range=':= 8/64 * dimension.groundLevel'/>
  611.                 </StandardGen>
  612.             </IfCondition>
  613.                
  614.             <IfCondition condition=':= diamondDist = "layeredVeins"'>
  615.                 <Veins name="DiamondVeins" block='minecraft:diamond_ore' inherits='PresetPipeVeins' seed='0xF186'>
  616.                     <Description> Short sparsely filled tubes starting at bedrock. </Description>
  617.                     <DrawWireframe>:=false</DrawWireframe>
  618.                     <WireframeColor>0x40336699</WireframeColor>
  619.                     <Setting name='MotherlodeFrequency' avg=':= 0.55 * diamondFreq * _default_'/>
  620.                     <Setting name='MotherlodeHeight' avg=':= 3/64 * dimension.groundLevel' range='0'/>
  621.                     <Setting name='MotherlodeSize' avg=':= diamondSize * _default_' range=':= diamondSize * _default_'/>
  622.                     <Setting name='SegmentRadius' avg=':= diamondSize * _default_' range=':= diamondSize * _default_'/>
  623.                     <Setting name='OreDensity' avg=':= 1.0 * _default_'/>
  624.                 </Veins>
  625.                 <Veins name="DiamondVeinsLava" block='minecraft:lava' inherits='DiamondVeins' seed='0xF186'>
  626.                     <Description> Fills center of each tube with lava, forming "kimberlite pipes" </Description>
  627.                     <Setting name='MotherlodeSize' avg=':= 0.5 * _default_'/>
  628.                     <Setting name='SegmentRadius' avg=':= 0.5 * _default_'/>
  629.                     <Setting name='OreDensity' avg='1' range='0'/>
  630.                     <ReplacesOre block='stone'/>
  631.                     <Replaces block='minecraft:dirt'/>
  632.                     <Replaces block='minecraft:gravel'/>
  633.                     <Replaces block='minecraft:diamond_ore'/>
  634.                 </Veins>
  635.             </IfCondition>
  636.                
  637.             <IfCondition condition=':= diamondDist = "strategicClouds"'>
  638.                 <Cloud name='DiamondCloud' block='minecraft:diamond_ore' inherits='PresetStrategicCloud'>
  639.                     <Description>  Diffuse diamond cloud with no internal density noise. </Description>
  640.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  641.                     <WireframeColor>0x40336699</WireframeColor>
  642.                     <Setting name='DistributionFrequency' avg=':= 10 * diamondFreq * _default_'/>
  643.                     <Setting name='CloudRadius' avg=':= 0.5 * diamondSize * _default_' range=':= 0.5 * diamondSize * _default_'/>
  644.                     <Setting name='CloudThickness' avg=':= 0.2 * diamondSize * _default_' range=':= 0.17 * diamondSize * _default_'/>
  645.                     <Setting name='CloudHeight' avg=':= 14/64 * dimension.groundLevel' range=':= 5/64 * dimension.groundLevel'/>
  646.                     <Setting name='OreRadiusMult' avg='1' range='0.2'/>
  647.                     <Setting name='OreDensity' avg=':= 0.4 * _default_'/>                
  648.                     <Setting name='OreVolumeNoiseCutoff' avg='0'/>  
  649.                 </Cloud>
  650.             </IfCondition>
  651.        
  652.         </ConfigSection>          
  653.        
  654.         <!--***************   Lapis Lazuli   *******************-->
  655.         <ConfigSection>
  656.        
  657.             <IfCondition condition=':= lapisDist = "vanillaStdGen"'>
  658.                 <StandardGen name='LapisLazuliStandard' block='minecraft:lapis_ore' inherits='PresetStandardGen'>
  659.                     <Description> Equivalent to vanilla minecraft lapis lazuli distribution </Description>
  660.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  661.                     <WireframeColor>0x40000055</WireframeColor>
  662.                     <Setting name='Size' avg=':= 6/8 * lapisSize * _default_'/>
  663.                     <Setting name='Frequency' avg=':= 0.05 * lapisFreq * _default_'/>
  664.                     <Setting name='Height' avg=':= 16/64 * dimension.groundLevel' range=':= 16/64 * dimension.groundLevel' type='normal'/>
  665.                 </StandardGen>
  666.             </IfCondition>
  667.                
  668.             <IfCondition condition=':= lapisDist = "layeredVeins"'>
  669.                 <Veins name='LapisLazuliVeins' block='minecraft:lapis_ore' inherits='PresetVerticalVeins'>        
  670.                     <Description>
  671.                         Lapis Lazuli spawns in isolated veins that run vertically upward, much like redstone.  However,
  672.                         lapis veins are too deep to break the suface except occassionally under oceans.
  673.                     </Description>
  674.                     <DrawWireframe>:=false</DrawWireframe>
  675.                     <WireframeColor>0x40000055</WireframeColor>
  676.                     <Setting name='MotherlodeFrequency' avg=':= 0.4 * lapisFreq * _default_'/>
  677.                     <Setting name='MotherlodeHeight' avg=':= 8/64 * dimension.groundLevel' range='4'/>
  678.                     <Setting name='BranchLength' avg=':= 36/64 * dimension.groundLevel' range='12' type='normal'/>
  679.                     <Setting name='BranchInclination' avg=':= -_default_' range=':=_default_'/>    
  680.                     <Setting name='SegmentRadius' avg=':= lapisSize * _default_' range=':= lapisSize * _default_'/>          
  681.                 </Veins>
  682.                 <Veins name='LapisLazuliVeinsOcean' inherits='LapisLazuliVeins'>
  683.                     <Description> This roughly triples the chance of finding lapis lazuli under oceans. </Description>
  684.                     <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  685.                     <ReplacesOre block='stone'/>
  686.                     <Replaces block='minecraft:dirt'/>
  687.                     <Replaces block='minecraft:sand'/>
  688.                     <BiomeType name='Ocean'/>
  689.                 </Veins>
  690.             </IfCondition>
  691.                
  692.             <IfCondition condition=':= lapisDist = "strategicClouds"'>
  693.                 <Cloud name='LapisLazuliCloud' block='minecraft:lapis_ore' inherits='PresetStrategicCloud'>
  694.                     <Description>  Diffuse lapis lazuli cloud surrounded by single-block "hint" veins, found under oceans </Description>
  695.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  696.                     <WireframeColor>0x40000055</WireframeColor>
  697.                     <Setting name='DistributionFrequency' avg=':= 2.5 * lapisFreq * _default_'/>
  698.                     <Setting name='CloudRadius' avg=':= 0.65 * lapisSize * _default_' range=':= 0.5 * lapisSize * _default_'/>
  699.                     <Setting name='CloudThickness' avg=':= 0.7 * lapisSize * _default_' range=':= 0.7 * lapisSize * _default_'/>
  700.                     <BiomeType name='Ocean'/>
  701.                     <Veins name='LapisLazuliHintVeins' block='minecraft:lapis_ore' inherits='PresetHintVeins'>
  702.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  703.                         <WireframeColor>0x40000055</WireframeColor>
  704.                         <Setting name='MotherlodeFrequency' avg=':= 0.7 * _default_' range=':= _default_'/>
  705.                         <Setting name='MotherlodeRangeLimit' avg=':= 0.65 * lapisSize * _default_' range=':= 0.65 * lapisSize * _default_'/>                  
  706.                     </Veins>                    
  707.                 </Cloud>
  708.             </IfCondition>
  709.        
  710.         </ConfigSection>          
  711.        
  712.         <!--*****************   Emerald   **********************-->
  713.         <ConfigSection>
  714.  
  715.             <IfCondition condition=':= emeraldDist = "vanillaStdGen"'>
  716.                 <StandardGen name='EmeraldStandard' block='minecraft:emerald_ore' inherits='PresetStandardGen'>
  717.                     <Description> Equivalent to vanilla minecraft diamond distribution </Description>
  718.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  719.                     <WireframeColor>0x40339966</WireframeColor>
  720.                     <Setting name='Size' avg=':= 2/8 * emeraldSize * _default_'/>
  721.                     <Setting name='Frequency' avg=':= 6/20 * emeraldFreq * _default_'
  722.                                              range=':= 2 * emeraldFreq'/>
  723.                     <Setting name='Height' avg=':= 18/64 * dimension.groundLevel' range=':= 14/64 * dimension.groundLevel'/>
  724.                     <BiomeType name='Mountain'/>
  725.                     <Biome name='Green\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  726.                 </StandardGen>  
  727.             </IfCondition>        
  728.                
  729.             <IfCondition condition=':= emeraldDist = "layeredVeins"'>
  730.                 <Veins name="EmeraldVeins" block='minecraft:emerald_ore' inherits='PresetPipeVeins' seed='0x3966'>
  731.                     <Description> Short sparsely filled tubes.  5x more common in Extreme Hills. </Description>
  732.                     <DrawWireframe>:=false</DrawWireframe>
  733.                     <WireframeColor>0x40339966</WireframeColor>
  734.                     <Setting name='MotherlodeFrequency' avg=':= 0.9 * emeraldFreq * _default_'/>
  735.                     <Setting name='MotherlodeHeight' avg=':= 10/64 * dimension.groundLevel' range=':= 4/64 * dimension.groundLevel'/>
  736.                     <Setting name='MotherlodeSize' avg=':= 0.85 * emeraldSize * _default_' range=':= 0.7 * emeraldSize * _default_'/>
  737.                     <Setting name='BranchInclination' avg='0.55' range='0.7' type='normal'/>
  738.                     <Setting name='SegmentRadius' avg=':= 0.85 * emeraldSize * _default_' range=':= 0.7 * emeraldSize * _default_'/>
  739.                     <Setting name='OreDensity' avg=':= 1.2 * _default_'/>
  740.                     <Biome name='.*' weight='0.20'/>
  741.                     <BiomeType name='Mountain'/>
  742.                     <Biome name='Green\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  743.                 </Veins>
  744.                 <Veins name="EmeraldVeinsSilverfish" block='minecraft:monster_egg' inherits='EmeraldVeins' seed='0x3966'>
  745.                     <Description>
  746.                         Fill center of tubes with silverfish spawners.
  747.                         Credit: based on novel examples by AnonymousViking from the MC forums.
  748.                     </Description>
  749.                     <Setting name='MotherlodeSize' avg='0.51' range='0.1'/>
  750.                     <Setting name='SegmentRadius' avg='0.51' range='0.1'/>
  751.                     <Setting name='OreDensity' avg='1' range='0'/>
  752.                     <ReplacesOre block='stone'/>
  753.                     <Replaces block='minecraft:emerald_ore'/>
  754.                 </Veins>
  755.             </IfCondition>
  756.                
  757.             <IfCondition condition=':= emeraldDist = "strategicClouds"'>
  758.                 <Cloud name='EmeraldCloud' block='minecraft:emerald_ore' inherits='PresetStrategicCloud'>
  759.                     <Description>  
  760.                         Diffuse emerald cloud with no internal density noise, found in extreme hills.
  761.                     </Description>
  762.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  763.                     <WireframeColor>0x40339966</WireframeColor>                
  764.                     <Setting name='DistributionFrequency' avg=':= 45 * emeraldFreq * _default_'/>
  765.                     <Setting name='CloudRadius' avg=':= 0.4 * emeraldSize * _default_' range=':= 0.4 * emeraldSize * _default_'/>
  766.                     <Setting name='CloudThickness' avg=':= 0.2 * emeraldSize * _default_' range=':= 0.17 * emeraldSize * _default_'/>
  767.                     <Setting name='CloudHeight' avg=':= 10/64 * dimension.groundLevel' range=':= 5/64 * dimension.groundLevel'/>
  768.                     <Setting name='OreRadiusMult' avg='1' range='0.2'/>
  769.                     <Setting name='OreDensity' avg=':= 0.4 * _default_'/>
  770.                     <Setting name='OreVolumeNoiseCutoff' avg='0'/>  
  771.                     <BiomeType name='Mountain'/>
  772.                     <Biome name='Green\s*Hills'/> <Comment> ExtraBiomesXL </Comment>
  773.                 </Cloud>
  774.             </IfCondition>
  775.            
  776.         </ConfigSection>
  777.        
  778.     </IfCondition>
  779.    
  780. </ConfigSection>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement