Advertisement
Pyromancer3D

Forestry.xml

Jan 13th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 25.54 KB | None | 0 0
  1. <!--*************************  CustomOreGen Forestry Ores Module *********************************
  2. *
  3. *   This file contains Presets, Options, and Distributions for the 3 Forestry ores:
  4. *       Copper, Tin, and Apatite.
  5. *
  6. ***********************************************************************************************-->
  7. <IfModInstalled name="Forestry">
  8.  
  9.     <!--***************************   Options + Symbols   ***********************************
  10.    *
  11.    *   Below are options and symbols for each ore, similar to those for the standard ores.
  12.    *
  13.    *************************************************************************************-->
  14.     <ConfigSection>        
  15.    
  16.         <OptionDisplayGroup name='groupForestry' displayName='Forestry' displayState='shown'>
  17.             <Description>
  18.                 Distribution options for the Forestry ores.
  19.             </Description>
  20.         </OptionDisplayGroup>
  21.        
  22.         <!--*******************   Copper   *********************-->
  23.         <ConfigSection>
  24.            
  25.             <OptionChoice name='forestryCopperDist' displayState='shown' displayGroup='groupForestry'>
  26.                 <Description> Controls how Forestry Copper is generated </Description>
  27.                 <DisplayName>Forestry Copper Type</DisplayName>
  28.                 <Default>:= if(blockExists("Forestry:resources:1"),"disabled","layeredVeins")</Default>
  29.                 <Choice value='layeredVeins' displayValue='Veins'>
  30.                     <Description>
  31.                         Groups of long narrow veins found about one third of the way down to bedrock.  Especially common in jungles.  
  32.                     </Description>
  33.                 </Choice>
  34.                 <Choice value='strategicClouds' displayValue='Clouds'>
  35.                     <Description>
  36.                         Rare, sparsely populated clouds of ore extending over several chunks.  Found only in jungles.
  37.                     </Description>
  38.                 </Choice>
  39.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  40.                     <Description>
  41.                         Small evenly scattered clusters of ore.  This is the default Forestry copper generation.
  42.                     </Description>
  43.                 </Choice>
  44.                 <Choice value='none' displayValue='None' description='No copper is generated at all.'/>
  45.                 <Choice value='disabled' displayValue='Disabled' description='No copper is generated, and no copper symbols are available in Mystcraft ages.'/>
  46.             </OptionChoice>
  47.            
  48.             <OptionNumeric name='forestryCopperFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupForestry'>
  49.                 <Description> Frequency multiplier for Forestry Copper distributions </Description>
  50.                 <DisplayName>Forestry Copper Freq.</DisplayName>
  51.             </OptionNumeric>
  52.            
  53.             <OptionNumeric name='forestryCopperSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupForestry'>
  54.                 <Description> Size multiplier for Forestry Copper distributions </Description>
  55.                 <DisplayName>Forestry Copper Size</DisplayName>
  56.             </OptionNumeric>
  57.            
  58.             <IfCondition condition=':= forestryCopperDist != "disabled"'>
  59.                 <MystcraftSymbol name='forestryCopperClusters' displayName='Copper Clusters'/>
  60.                 <MystcraftSymbol name='forestryCopperVeins' displayName='Copper Veins'/>
  61.                 <MystcraftSymbol name='forestryCopperClouds' displayName='Copper Clouds'>
  62.                     <Instability>:= 50 * (age.forestryCopperClusters + age.forestryCopperVeins + age.forestryCopperClouds - 1)^3</Instability>
  63.                 </MystcraftSymbol>
  64.             </IfCondition>
  65.        
  66.         </ConfigSection>          
  67.        
  68.         <!--********************   Tin   ***********************-->
  69.         <ConfigSection>
  70.            
  71.             <OptionChoice name='forestryTinDist' displayState='shown' displayGroup='groupForestry'>
  72.                 <Description> Controls how Forestry Tin is generated </Description>
  73.                 <DisplayName>Forestry Tin Type</DisplayName>
  74.                 <Default>:= if(blockExists("Forestry:resources:2"),"disabled","layeredVeins")</Default>
  75.                 <Choice value='layeredVeins' displayValue='Veins'>
  76.                     <Description>
  77.                         Groups of long narrow veins found about halfway down to bedrock.  More frequent in flat grassy plains.  
  78.                     </Description>
  79.                 </Choice>
  80.                 <Choice value='strategicClouds' displayValue='Clouds'>
  81.                     <Description>
  82.                         Rare, sparsely populated clouds of ore extending over several chunks.  Found only in flat grassy plains.
  83.                     </Description>
  84.                 </Choice>
  85.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  86.                     <Description>
  87.                         Small evenly scattered clusters of ore.  This is the default Forestry tin generation.
  88.                     </Description>
  89.                 </Choice>
  90.                 <Choice value='none' displayValue='None' description='No tin is generated at all.'/>
  91.                 <Choice value='disabled' displayValue='Disabled' description='No tin is generated, and no tin symbols are available in Mystcraft ages.'/>
  92.             </OptionChoice>
  93.            
  94.             <OptionNumeric name='forestryTinFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupForestry'>
  95.                 <Description> Frequency multiplier for Forestry Tin distributions </Description>
  96.                 <DisplayName>Forestry Tin Freq.</DisplayName>
  97.             </OptionNumeric>
  98.            
  99.             <OptionNumeric name='forestryTinSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupForestry'>
  100.                 <Description> Size multiplier for Forestry Tin distributions </Description>
  101.                 <DisplayName>Forestry Tin Size</DisplayName>
  102.             </OptionNumeric>  
  103.            
  104.             <IfCondition condition=':= forestryTinDist != "disabled"'>
  105.                 <MystcraftSymbol name='forestryTinClusters' displayName='Tin Clusters'/>
  106.                 <MystcraftSymbol name='forestryTinVeins' displayName='Tin Veins'/>
  107.                 <MystcraftSymbol name='forestryTinClouds' displayName='Tin Clouds'>
  108.                     <Instability>:= 50 * (age.forestryTinClusters + age.forestryTinVeins + age.forestryTinClouds - 1)^3</Instability>
  109.                 </MystcraftSymbol>
  110.             </IfCondition>
  111.  
  112.         </ConfigSection>          
  113.        
  114.         <!--******************   Apatite   *********************-->
  115.         <ConfigSection>
  116.        
  117.             <OptionChoice name='forestryApatiteDist' displayState='shown' displayGroup='groupForestry'>
  118.                 <Description> Controls how Forestry Apatite is generated </Description>
  119.                 <DisplayName>Forestry Apatite Type</DisplayName>
  120.                 <Default>:= if(blockExists("Forestry:resources:0"),"layeredVeins","disabled")</Default>
  121.                 <Choice value='layeredVeins' displayValue='Veins'>
  122.                     <Description>
  123.                         Short hollow tubes extending downward from just below the surface with ore around the edges.  More common in temperate forests.
  124.                     </Description>
  125.                 </Choice>
  126.                 <Choice value='strategicClouds' displayValue='Clouds'>
  127.                     <Description>
  128.                         Rare, sparsely populated clouds of ore extending over several chunks.  Found only in temperate forests.
  129.                     </Description>
  130.                 </Choice>
  131.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  132.                     <Description>
  133.                         Small clusters of ore scattered in hills and about three quarters of the way down to bedrock.  This is the default Forestry resources generation.
  134.                     </Description>
  135.                 </Choice>
  136.                 <Choice value='none' displayValue='None' description='No resources is generated at all.'/>
  137.                 <Choice value='disabled' displayValue='Disabled' description='No resources is generated, and no resources symbols are available in Mystcraft ages.'/>
  138.             </OptionChoice>
  139.            
  140.             <OptionNumeric name='forestryApatiteFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupForestry'>
  141.                 <Description> Frequency multiplier for Forestry Apatite distributions </Description>
  142.                 <DisplayName>Forestry Apatite Freq.</DisplayName>
  143.             </OptionNumeric>
  144.            
  145.             <OptionNumeric name='forestryApatiteSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupForestry'>
  146.                 <Description> Size multiplier for Forestry Apatite distributions </Description>
  147.                 <DisplayName>Forestry Apatite Size</DisplayName>
  148.             </OptionNumeric>
  149.            
  150.             <IfCondition condition=':= forestryApatiteDist != "disabled"'>
  151.                 <MystcraftSymbol name='forestryApatiteClusters' displayName='Apatite Clusters'/>
  152.                 <MystcraftSymbol name='forestryApatiteVeins' displayName='Apatite Veins'/>
  153.                 <MystcraftSymbol name='forestryApatiteClouds' displayName='Apatite Clouds'>
  154.                     <Instability>:= 50 * (age.forestryApatiteClusters + age.forestryApatiteVeins + age.forestryApatiteClouds - 1)^3</Instability>
  155.                 </MystcraftSymbol>
  156.             </IfCondition>
  157.            
  158.         </ConfigSection>          
  159.        
  160.      </ConfigSection>    
  161.    
  162.     <!--*****************************   Distributions   *************************************
  163.    *  
  164.    *   Below are the actual distributions for the overworld and mystcraft ages.
  165.    *
  166.    *************************************************************************************-->
  167.     <IfCondition condition=':= ?COGActive'>
  168.        
  169.         <Substitute name='ForestrySubstitute' block='minecraft:stone'>
  170.             <Description>
  171.                 Replace Forestry-generated ore clusters with stone.  
  172.             </Description>
  173.             <Comment>  
  174.                 The global option deferredPopulationRange must be large enough to catch all ore clusters (>= 32).
  175.             </Comment>
  176.             <Replaces block='Forestry:resources:1'/>
  177.             <Replaces block='Forestry:resources:2'/>
  178.             <Replaces block='Forestry:resources:0'/>
  179.         </Substitute>
  180.        
  181.         <!--*******************   Copper   *********************-->            
  182.         <ConfigSection>
  183.        
  184.             <IfCondition condition=':= if(age, age.forestryCopperClusters > 0, forestryCopperDist = "vanillaStdGen")'>
  185.                 <StandardGen name='ForestryCopperStandard' block='Forestry:resources:1' inherits='PresetStandardGen'>
  186.                     <Description> Equivalent to regular Forestry copper distribution </Description>
  187.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  188.                     <WireframeColor>0x40773300</WireframeColor>
  189.                     <Setting name='Size' avg=':= 0.75 * forestryCopperSize * _default_'/>
  190.                     <Setting name='Frequency' avg=':= 1.0 * forestryCopperFreq * if(age,age.forestryCopperClusters,1) * _default_'/>
  191.                     <Setting name='Height' avg=':= 38/64 * dimension.groundLevel' range=':= 38/64 * dimension.groundLevel'/>
  192.                 </StandardGen>
  193.             </IfCondition>  
  194.            
  195.             <IfCondition condition=':= if(age, age.forestryCopperVeins > 0, forestryCopperDist = "layeredVeins")'>            
  196.                 <Veins name='ForestryCopperVeins' block='Forestry:resources:1' inherits='PresetLayeredVeins'>
  197.                     <Description>  Average veins in the 30-50 range. </Description>
  198.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  199.                     <WireframeColor>0x40773300</WireframeColor>
  200.                     <Setting name='MotherlodeFrequency' avg=':= 0.75 * forestryCopperFreq * if(age,age.forestryCopperVeins,1) * _default_'/>
  201.                     <Setting name='MotherlodeSize' avg=':= forestryCopperSize * _default_' range=':= forestryCopperSize * _default_'/>
  202.                     <Setting name='MotherlodeHeight' avg=':= 40/64 * dimension.groundLevel' range=':= 12/64 * dimension.groundLevel' type='normal'/>
  203.                     <Setting name='BranchFrequency' avg=':= 0.7 * _default_' range=':= 0.7 * _default_'/>
  204.                     <Setting name='BranchHeightLimit' avg='10'/>
  205.                     <Setting name='SegmentRadius' avg=':= forestryCopperSize * _default_' range=':= forestryCopperSize * _default_'/>
  206.                 </Veins>                
  207.                 <Veins name='ForestryCopperVeinsJungle' inherits='ForestryCopperVeins'>
  208.                     <Description> This roughly triples the chance of finding Copper in jungle biomes. </Description>
  209.                     <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  210.                     <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  211.                     <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  212.                     <BiomeType name='Jungle'/>
  213.                     <Biome name='Extreme\s*Jungle'/> <Comment> ExtraBiomesXL </Comment>
  214.                     <Biome name='Mini\s*Jungle'/> <Comment> ExtraBiomesXL </Comment>  
  215.                 </Veins>  
  216.             </IfCondition>    
  217.            
  218.             <IfCondition condition=':= if(age, age.forestryCopperClouds > 0, forestryCopperDist = "strategicClouds")'>
  219.                 <Cloud name='ForestryCopperCloud' block='Forestry:resources:1' inherits='PresetStrategicCloud'>
  220.                     <Description>  
  221.                         Diffuse copper cloud surrounded by single-block "hint" veins, found in jungle biomes.
  222.                     </Description>
  223.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  224.                     <WireframeColor>0x40773300</WireframeColor>
  225.                     <Setting name='DistributionFrequency' avg=':= 2.5 * forestryCopperFreq * if(age,age.forestryCopperClouds,1) * _default_'/>
  226.                     <Setting name='CloudRadius' avg=':= 0.85 * forestryCopperSize * _default_' range=':= forestryCopperSize * _default_'/>
  227.                     <Setting name='CloudThickness' avg=':= 0.9 * forestryCopperSize * _default_' range=':= forestryCopperSize * _default_'/>
  228.                     <Setting name='OreVolumeNoiseCutoff' avg=':= 1.1 * _default_'/>
  229.                     <BiomeType name='Jungle'/>
  230.                     <Biome name='Extreme\s*Jungle'/> <Comment> ExtraBiomesXL </Comment>
  231.                     <Biome name='Mini\s*Jungle'/> <Comment> ExtraBiomesXL </Comment>  
  232.                     <Veins name='ForestryCopperHintVeins' block='Forestry:resources:1' inherits='PresetHintVeins'>
  233.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  234.                         <WireframeColor>0x40773300</WireframeColor>
  235.                         <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  236.                         <Setting name='MotherlodeRangeLimit' avg=':= forestryCopperSize * _default_' range=':= forestryCopperSize * _default_'/>              
  237.                     </Veins>
  238.                 </Cloud>
  239.             </IfCondition>  
  240.            
  241.         </ConfigSection>
  242.        
  243.         <!--********************   Tin   ***********************-->            
  244.         <ConfigSection>
  245.        
  246.             <IfCondition condition=':= if(age, age.forestryTinClusters > 0, forestryTinDist = "vanillaStdGen")'>            
  247.                 <StandardGen name='ForestryTinStandard' block='Forestry:resources:2' inherits='PresetStandardGen'>
  248.                     <Description> Equivalent to regular Forestry tin distribution </Description>
  249.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  250.                     <WireframeColor>0x40FFFFFF</WireframeColor>
  251.                     <Setting name='Size' avg=':= 0.75 * forestryTinSize * _default_'/>
  252.                     <Setting name='Frequency' avg=':= 0.9 * forestryTinFreq * if(age,age.forestryTinClusters,1) * _default_'/>
  253.                     <Setting name='Height' avg=':= 38/64 * dimension.groundLevel' range=':= 38/64 * dimension.groundLevel'/>
  254.                 </StandardGen>
  255.             </IfCondition>  
  256.            
  257.             <IfCondition condition=':= if(age, age.forestryTinVeins > 0, forestryTinDist = "layeredVeins")'>    
  258.                 <Veins name='ForestryTinVeins' block='Forestry:resources:2' inherits='PresetLayeredVeins'>
  259.                     <Description>
  260.                         Average veins in the 20-40 range.
  261.                     </Description>
  262.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  263.                     <WireframeColor>0x40FFFFFF</WireframeColor>
  264.                     <Setting name='MotherlodeFrequency' avg=':= 0.70 * forestryTinFreq * if(age,age.forestryTinVeins,1) * _default_'/>
  265.                     <Setting name='MotherlodeSize' avg=':= forestryTinSize * _default_' range=':= forestryTinSize * _default_'/>
  266.                     <Setting name='MotherlodeHeight' avg=':= 30/64 * dimension.groundLevel' range=':= 11/64 * dimension.groundLevel' type='normal'/>
  267.                     <Setting name='BranchFrequency' avg=':= 0.7 * _default_' range=':= 0.7 * _default_'/>
  268.                     <Setting name='BranchHeightLimit' avg='10'/>
  269.                     <Setting name='BranchLength' avg=':= 0.75 * _default_'/>
  270.                     <Setting name='SegmentRadius' avg=':= forestryTinSize * _default_' range=':= forestryTinSize * _default_'/>
  271.                 </Veins>
  272.                 <Veins name='ForestryTinVeinsPlains' inherits='ForestryTinVeins'>
  273.                     <Description> This roughly triples the chance of finding tin in plains biomes. </Description>
  274.                     <Setting name='MotherlodeFrequency' avg=':= 2 * _default_'/>
  275.                     <Setting name='MotherlodeHeight' avg=':=_default_' range=':= 2 * _default_'/>
  276.                     <Setting name='BranchHeightLimit' avg=':= 2 * _default_'/>  
  277.                     <BiomeType name='Plains'/>
  278.                     <Biome name='Meadow'/> <Comment> ExtraBiomesXL </Comment>
  279.                     <Biome name='Savanna'/> <Comment> ExtraBiomesXL </Comment>
  280.                     <Biome name='Shrubland'/> <Comment> ExtraBiomesXL </Comment>
  281.                 </Veins>
  282.             </IfCondition>    
  283.            
  284.             <IfCondition condition=':= if(age, age.forestryTinClouds > 0, forestryTinDist = "strategicClouds")'>
  285.                 <Cloud name='ForestryTinCloud' block='Forestry:resources:2' inherits='PresetStrategicCloud'>
  286.                     <Description>  
  287.                         Diffuse tin cloud surrounded by single-block "hint" veins, found in plains biomes.
  288.                     </Description>
  289.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  290.                     <WireframeColor>0x40FFFFFF</WireframeColor>
  291.                     <Setting name='DistributionFrequency' avg=':= 2.5 * forestryTinFreq * if(age,age.forestryTinClouds,1) * _default_'/>
  292.                     <Setting name='CloudRadius' avg=':= 0.85 * forestryTinSize * _default_' range=':= forestryTinSize * _default_'/>
  293.                     <Setting name='CloudThickness' avg=':= 0.9 * forestryTinSize * _default_' range=':= forestryTinSize * _default_'/>
  294.                     <Setting name='OreVolumeNoiseCutoff' avg=':= 1.1 * _default_'/>
  295.                     <BiomeType name='Plains'/>
  296.                     <Biome name='Meadow'/> <Comment> ExtraBiomesXL </Comment>
  297.                     <Biome name='Savanna'/> <Comment> ExtraBiomesXL </Comment>
  298.                     <Biome name='Shrubland'/> <Comment> ExtraBiomesXL </Comment>
  299.                     <Veins name='ForestryTinHintVeins' block='Forestry:resources:2' inherits='PresetHintVeins'>
  300.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  301.                         <WireframeColor>0x40FFFFFF</WireframeColor>
  302.                         <Setting name='MotherlodeFrequency' avg=':= _default_' range=':= _default_'/>  
  303.                         <Setting name='MotherlodeRangeLimit' avg=':= 0.9 * forestryTinSize * _default_' range=':= 0.9 * forestryTinSize * _default_'/>              
  304.                     </Veins>
  305.                 </Cloud>
  306.             </IfCondition>  
  307.            
  308.         </ConfigSection>
  309.        
  310.         <!--******************   Apatite   *********************-->            
  311.         <ConfigSection>
  312.        
  313.             <IfCondition condition=':= if(age, age.forestryApatiteClusters > 0, forestryApatiteDist = "vanillaStdGen")'>
  314.                 <StandardGen name='ForestryApatiteStandard' block='Forestry:resources:0' inherits='PresetStandardGen'>
  315.                     <Description> Equivalent to regular Forestry resources distribution </Description>
  316.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  317.                     <WireframeColor>0x40300060</WireframeColor>
  318.                     <Setting name='Size' avg=':= 1.0 * forestryApatiteSize * _default_'/>
  319.                     <Setting name='Frequency' avg=':= 0.3 * forestryApatiteFreq * if(age,age.forestryApatiteClusters,1) * _default_'/>
  320.                     <Setting name='Height' avg=':= 54/64 * dimension.groundLevel' range=':= 38/64 * dimension.groundLevel'/>
  321.                 </StandardGen>
  322.             </IfCondition>  
  323.            
  324.             <IfCondition condition=':= if(age, age.forestryApatiteVeins > 0, forestryApatiteDist = "layeredVeins")'>    
  325.                 <Veins name='ForestryApatiteVeins' block='Forestry:resources:0' inherits='PresetPipeVeins' seed='0x4A18'>    
  326.                     <Description>
  327.                         Short sparsely filled tubes starting at the surface and extending downwards.
  328.                         Roughly 3x more common in forests.
  329.                     </Description>
  330.                     <DrawWireframe>false</DrawWireframe>
  331.                     <WireframeColor>0x40300060</WireframeColor>                    
  332.                     <Setting name='MotherlodeFrequency' avg=':= 0.8 * forestryApatiteFreq * if(age,age.forestryApatiteVeins,1) * _default_'/>
  333.                     <Setting name='MotherlodeSize' avg=':= forestryApatiteSize * _default_' range=':= forestryApatiteSize * _default_'/>
  334.                     <Setting name='MotherlodeHeight' avg=':= 60/64 * dimension.groundLevel' range=':= 4/64 * dimension.groundLevel'/>
  335.                     <Setting name='BranchLength' avg=':= 1.2 * _default_'/>
  336.                     <Setting name='BranchInclination' avg=':= -_default_'/>
  337.                     <Setting name='SegmentRadius' avg=':= forestryApatiteSize * _default_' range=':= forestryApatiteSize * _default_'/>
  338.                     <Setting name='OreDensity' avg=':= 3 * _default_'/>                    
  339.                     <Biome name='.*' weight='.3'/>  
  340.                     <BiomeType name='Forest'/>
  341.                 </Veins>
  342.                 <Veins name='ForestryApatiteVeinsAir' block='minecraft:air' inherits='ForestryApatiteVeins' seed='0x4A18'>
  343.                     <Description> Fills center of each tube with air </Description>
  344.                     <Setting name='MotherlodeSize' avg=':= 0.35 * _default_'/>
  345.                     <Setting name='SegmentRadius' avg=':= 0.35 * _default_'/>
  346.                     <Setting name='OreDensity' avg='1' range='0'/>
  347.                     <ReplacesOre block='stone'/>
  348.                     <Replaces block='Forestry:resources:0'/>
  349.                 </Veins>
  350.             </IfCondition>    
  351.            
  352.             <IfCondition condition=':= if(age, age.forestryApatiteClouds > 0, forestryApatiteDist = "strategicClouds")'>
  353.                 <Cloud name='ForestryApatiteCloud' block='Forestry:resources:0' inherits='PresetStrategicCloud'>
  354.                     <Description>  
  355.                         Diffuse resources cloud surrounded by single-block "hint" veins, found in forests.
  356.                     </Description>
  357.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  358.                     <WireframeColor>0x40300060</WireframeColor>
  359.                     <Setting name='DistributionFrequency' avg=':= 4 * forestryApatiteFreq * if(age,age.forestryApatiteClouds,1) * _default_'/>
  360.                     <Setting name='CloudRadius' avg=':= 0.7 * forestryApatiteSize * _default_' range=':= 0.5 * forestryApatiteSize * _default_'/>
  361.                     <Setting name='CloudThickness' avg=':= 0.7 * forestryApatiteSize * _default_' range=':= 0.7 * forestryApatiteSize * _default_'/>  
  362.                     <Setting name='OreDensity' avg=':= 0.8 * _default_'/>
  363.                     <BiomeType name='Forest'/>    
  364.                     <Veins name='ForestryApatiteHintVeins' block='Forestry:resources:0' inherits='PresetHintVeins'>
  365.                         <DrawWireframe>:=drawWireframes</DrawWireframe>
  366.                         <WireframeColor>0x40300060</WireframeColor>
  367.                         <Setting name='MotherlodeFrequency' avg=':= 0.7 * _default_' range=':= _default_'/>  
  368.                         <Setting name='MotherlodeRangeLimit' avg=':= 0.6 * forestryApatiteSize * _default_' range=':= 0.6 * forestryApatiteSize * _default_'/>              
  369.                     </Veins>
  370.                 </Cloud>
  371.             </IfCondition>  
  372.            
  373.         </ConfigSection>
  374.        
  375.     </IfCondition>
  376.    
  377. </IfModInstalled>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement