Advertisement
Pyromancer3D

Railcraft.xml

Jan 13th, 2015
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 22.20 KB | None | 0 0
  1. <!--************************  CustomOreGen Railcraft Ores Module **********************************
  2. *
  3. *   This file contains Presets, Options, and Distributions for the normal Railcraft ores,  
  4. *   and Saltpeter; as well as Abyssal Stone Geodes and the Diamond, Lapis and Emerald that spawns
  5. *   within them.
  6. *
  7. ***********************************************************************************************-->
  8. <IfModInstalled name="Railcraft">
  9.  
  10.     <!--***************************   Options + Symbols   ***********************************
  11.    *
  12.    *   Below are options and symbols for each ore, similar to those for the standard ores.
  13.    *
  14.    *************************************************************************************-->
  15.     <ConfigSection>            
  16.    
  17.         <OptionDisplayGroup name='groupRailcraft' displayName='Railcraft' displayState='shown'>
  18.             <Description>
  19.                 Distribution options for the Railcraft ores.
  20.             </Description>
  21.         </OptionDisplayGroup>  
  22.        
  23.         <!--*******************   Abyssal Geodes   *********************-->
  24.         <ConfigSection>
  25.            
  26.             <OptionChoice name='AbyssalGeodesDist' displayState='shown' displayGroup='groupRailcraft'>
  27.                 <Description> Controls how Railcraft Abyssal Geodes is generated </Description>
  28.                 <DisplayName>Abyssal Geodes Type</DisplayName>
  29.                 <Default>:=
  30.                 if(blockExists("Railcraft:tile.railcraft.ore") &amp; blockExists("Railcraft:tile.railcraft.cube"),"strategicClouds","disabled")</Default>
  31.                 <Choice value='strategicClouds' displayValue='Clouds'>
  32.                     <Description>
  33.                         Large Geodes of Abyssal Stone containing
  34.                         Diamonds, Emeralds, and Lapis Lazuli.
  35.                     </Description>
  36.                 </Choice>
  37.                 <Choice value='none' displayValue='None' description='No Abyssal Geodes is generated at all.'/>
  38.                 <Choice value='disabled' displayValue='Disabled' description='No Abyssal Geodes is generated, and no Abyssal Geodes symbols are available in Mystcraft ages.'/>
  39.             </OptionChoice>
  40.            
  41.             <OptionNumeric name='AbyssalGeodesFreq' default='2'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupRailcraft'>
  42.                 <Description> Frequency multiplier for Railcraft Abyssal Geodes distributions </Description>
  43.                 <DisplayName>Abyssal Geodes Freq.</DisplayName>
  44.             </OptionNumeric>
  45.            
  46.             <OptionNumeric name='AbyssalGeodesSize' default='2'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupRailcraft'>
  47.                 <Description> Size multiplier for Railcraft Abyssal Geodes distributions </Description>
  48.                 <DisplayName>Abyssal Geodes Size</DisplayName>
  49.             </OptionNumeric>
  50.            
  51.             <IfCondition condition=':= AbyssalGeodesDist != "disabled"'>
  52.                 <MystcraftSymbol name='AbyssalGeodesGeode' displayName='Abyssal Geodes'>
  53.                     <Instability>:= 50 * (age.AbyssalGeodesGeode - 1)^1</Instability>
  54.                 </MystcraftSymbol>
  55.             </IfCondition>
  56.        
  57.         </ConfigSection>
  58.        
  59.         <!--********************   Sulfur   **********************-->
  60.         <ConfigSection>
  61.            
  62.             <OptionChoice name='RCSulfurDist' displayState='shown' displayGroup='groupRailcraft'>
  63.                 <Description> Controls how Railcraft Sulfur are generated </Description>
  64.                 <DisplayName>RC Sulfur Type</DisplayName>
  65.                 <Default>:= if(blockExists("Railcraft:tile.railcraft.ore:0"),"layeredVeins","disabled")</Default>
  66.                 <Choice value='layeredVeins' displayValue='Veins'>
  67.                     <Description>
  68.                         Short lava-filled tubes extending upward from bedrock with ore around the edges.  Found everywhere.
  69.                     </Description>
  70.                 </Choice>
  71.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  72.                     <Description>
  73.                         Small clusters of ore scattered around Lava Pools.  This is an approximation of Vanilla Sulfur ore gen.
  74.                     </Description>
  75.                 </Choice>
  76.                 <Choice value='none' displayValue='None' description='No Sulfur are generated at all.'/>
  77.                 <Choice value='disabled' displayValue='Disabled' description='No Sulfur are generated, and no Sulfur symbols are available in Mystcraft ages.'/>
  78.             </OptionChoice>
  79.            
  80.             <OptionNumeric name='RCSulfurFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupRailcraft'>
  81.                 <Description> Frequency multiplier for Railcraft Sulfur distributions </Description>
  82.                 <DisplayName>RC Sulfur Freq.</DisplayName>
  83.             </OptionNumeric>
  84.            
  85.             <OptionNumeric name='RCSulfurSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupRailcraft'>
  86.                 <Description> Size multiplier for Railcraft Sulfur distributions </Description>
  87.                 <DisplayName>RC Sulfur Size</DisplayName>
  88.             </OptionNumeric>
  89.            
  90.             <IfCondition condition=':= RCSulfurDist != "disabled"'>
  91.                 <MystcraftSymbol name='RCSulfurClusters' displayName='RC Sulfur Clusters'/>        
  92.                 <MystcraftSymbol name='RCSulfurVeins' displayName='RC Sulfur Veins'>
  93.                     <Instability>:= 50 * (age.RCSulfurClusters + age.RCSulfurVeins - 1)^2</Instability>
  94.                 </MystcraftSymbol>
  95.             </IfCondition>
  96.        
  97.         </ConfigSection>
  98.        
  99.         <!--******************   Saltpeter   ********************-->
  100.         <ConfigSection>
  101.            
  102.             <OptionChoice name='RCSaltpeterDist' displayState='shown' displayGroup='groupRailcraft'>
  103.                 <Description> Controls how Railcraft Saltpeter is generated </Description>
  104.                 <DisplayName>RC Saltpeter Type</DisplayName>
  105.                 <!--<Default>:= if(blockExists("Railcraft:tile.railcraft.ore:1"),"strategicClouds","disabled")</Default>-->
  106.                 <Default>:= if(blockExists("Railcraft:tile.railcraft.ore:1"),"default","disabled")</Default>
  107.                 <Choice value='layeredVeins' displayValue='Veins'>
  108.                     <Description>
  109.                         Sparsely filled veins near the surface of deserts. Only replaces sand and sandstone. Will not respawn like vanilla RC.
  110.                     </Description>
  111.                 </Choice>
  112.                 <Choice value='strategicClouds' displayValue='Clouds'>
  113.                     <Description>
  114.                         Uncommon, sparsely populated clouds of ore covering roughly one chunk. Found only in sandy areas, will not respawn like vanilla RC.
  115.                     </Description>
  116.                 </Choice>
  117.                 <Choice value='vanillaStdGen' displayValue='Clusters'>
  118.                     <Description>
  119.                         Small clusters of ore scattered on the surface in sand. Found only in sandy areas. Will not respawn like vanilla RC.
  120.                     </Description>
  121.                 </Choice>
  122.                 <Choice value='none' displayValue='None' description='No Saltpeter is generated at all.'/>
  123.                 <Choice value='disabled' displayValue='Disabled' description='No Saltpeter is generated, and no Saltpeter symbols are available in Mystcraft ages.'/>
  124.                 <Choice value='default' displayValue='Default' description='Custom Ore Gen does not replace RC generated saltpeter, and saltpeter respawns as normal. Not available in Mystcraft ages.'/>
  125.             </OptionChoice>
  126.            
  127.             <OptionNumeric name='RCSaltpeterFreq' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupRailcraft'>
  128.                 <Description> Frequency multiplier for Railcraft Saltpeter distributions </Description>
  129.                 <DisplayName>RC Saltpeter Freq.</DisplayName>
  130.             </OptionNumeric>
  131.            
  132.             <OptionNumeric name='RCSaltpeterSize' default='1'  min='0' max='5' displayState=':= if(?advOptions,"shown","hidden")' displayGroup='groupRailcraft'>
  133.                 <Description> Size multiplier for Railcraft Saltpeter distributions </Description>
  134.                 <DisplayName>RC Saltpeter Size</DisplayName>
  135.             </OptionNumeric>
  136.            
  137.             <IfCondition condition=':= RCSaltpeterDist != "disabled"'>
  138.                 <MystcraftSymbol name='RCSaltpeterClusters' displayName='RC Saltpeter Clusters'/>
  139.                 <MystcraftSymbol name='RCSaltpeterVeins' displayName='RC Saltpeter Veins'/>
  140.                 <MystcraftSymbol name='RCSaltpeterClouds' displayName='RC Saltpeter Clouds'>
  141.                     <Instability>:= 50 * (age.RCSaltpeterClusters + age.RCSaltpeterVeins + age.RCSaltpeterClouds - 1)^3</Instability>
  142.                 </MystcraftSymbol>
  143.             </IfCondition>
  144.        
  145.         </ConfigSection>
  146.        
  147.      </ConfigSection>    
  148.    
  149.     <!--*****************************   Distributions   *************************************
  150.    *  
  151.    *   Below are the actual distributions for the overworld and mystcraft ages.
  152.    *
  153.    *************************************************************************************-->
  154.     <IfCondition condition=':= ?COGActive'>
  155.        
  156.         <Substitute name='RailcraftSubstitute' block='minecraft:stone'>
  157.             <Description>
  158.                 Replace Railcraft-generated Sulfur, Saltpeter,
  159.                 Dark Ores, and Abyssal Stone with vanilla stone.  
  160.             </Description>
  161.             <Comment>  
  162.                 The global option deferredPopulationRange must be large enough to catch all ore clusters (>= 32).
  163.             </Comment>
  164.         <Replaces block='Railcraft:tile.railcraft.cube:6'/>
  165.             <Replaces block='Railcraft:tile.railcraft.ore:0'/>
  166.             <IfCondition condition=':= RCSaltpeterDist != "default"'>
  167.               <Replaces block='Railcraft:tile.railcraft.ore:1'/>
  168.             </IfCondition>
  169.             <Replaces block='Railcraft:tile.railcraft.ore:2'/>
  170.         <Replaces block='Railcraft:tile.railcraft.ore:3'/>
  171.         <Replaces block='Railcraft:tile.railcraft.ore:4'/>
  172.         <Replaces block='Railcraft:tile.railcraft.ore:7'/>
  173.         <Replaces block='Railcraft:tile.railcraft.ore:8'/>
  174.         <Replaces block='Railcraft:tile.railcraft.ore:9'/>
  175.         <Replaces block='Railcraft:tile.railcraft.ore:10'/>
  176.         <Replaces block='Railcraft:tile.railcraft.ore:11'/>
  177.         </Substitute>
  178.    
  179.         <!--*******************   Abyssal Geodes   *********************-->            
  180.         <ConfigSection>
  181.  
  182.           <VeinsPreset name='PresetAbyssalVeins' inherits = 'PresetLayeredVeins'>
  183.             <Setting name='ParentRangeLimit' avg='10' range='4'
  184.                     type='normal'/>
  185.             <Setting name='MotherlodeFrequency' avg=':= 80 * _default_'/>
  186.             <Setting name='MotherlodeSize' avg=':= _default_'
  187.                     range=':= _default_'/>
  188.             <Setting name='MotherlodeHeight'
  189.                     avg=':=20/64 * dimension.groundLevel'
  190.                     range=':= 6/64 * dimension.groundLevel'
  191.                     type='normal'/>
  192.             <Setting name='BranchHeightLimit' avg='10.5'/>
  193.             <Setting name='SegmentRadius' avg=':= _default_'
  194.                     range=':= _default_'/>
  195.             <Replaces block='Railcraft:tile.railcraft.cube:6'/>
  196.           </VeinsPreset>
  197.          
  198.             <IfCondition condition=':= if(age, age.AbyssalGeodesGeode > 0, AbyssalGeodesDist = "strategicClouds")'>
  199.               <Cloud name='AbyssalGeode' block='Railcraft:tile.railcraft.cube:6'
  200.                     inherits='PresetStrategicCloud'>
  201.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  202.                 <WireframeColor>0x401fffe1</WireframeColor>
  203.         <Setting name='DistributionFrequency'
  204.                         avg=':= 1 * AbyssalGeodesFreq * _default_'/>
  205.         <Setting name='CloudRadius'
  206.                         avg=':= 20 * AbyssalGeodesSize * oreSize'
  207.                         range=':= 5 * AbyssalGeodesSize * oreSize'/>
  208.         <Setting name='CloudThickness'
  209.                         avg=':= 7 * AbyssalGeodesSize * oreSize'
  210.                         range=':= 2 * AbyssalGeodesSize * oreSize'/>
  211.         <Setting name='CloudSizeNoise' avg='0.2'/>
  212.         <Setting name='CloudHeight' avg=':= 20/64 * dimension.groundLevel' range=':= 4/64 * dimension.groundLevel' type='normal'/>
  213.         <Setting name='CloudInclination' avg='0' range='0.35'/>
  214.         <Setting name='OreRadiusMult' avg='1' range='0.1'/>
  215.         <Setting name='OreDensity' avg='1.0'/>
  216.                 <Setting name='OreVolumeNoiseCutoff' avg='0'/>
  217.         <BiomeType name='ocean'/>
  218.                
  219.                 <Veins name='DarkDiamondVeins' block='Railcraft:tile.railcraft.ore:2'
  220.                       inherits='PresetAbyssalVeins'>
  221.                   <Description>  
  222.                     Dark diamond veins in abyssal geodes.
  223.                   </Description>
  224.                   <DrawWireframe>:=drawWireframes</DrawWireframe>
  225.                   <WireframeColor>0x400f000f</WireframeColor>
  226.                 </Veins>
  227.  
  228.                 <Veins name='DarkLapisVeins' block='Railcraft:tile.railcraft.ore:4'
  229.                       inherits='PresetAbyssalVeins'>
  230.                   <Description>  
  231.                     Dark lapis veins in abyssal geodes.
  232.                   </Description>
  233.                   <DrawWireframe>:=drawWireframes</DrawWireframe>
  234.                   <WireframeColor>0x400f000f</WireframeColor>
  235.                 </Veins>
  236.  
  237.                 <Veins name='DarkEmeraldVeins' block='Railcraft:tile.railcraft.ore:3'
  238.                       inherits='PresetAbyssalVeins'>
  239.                   <Description>  
  240.                     Dark emerald veins in abyssal geodes.
  241.                   </Description>
  242.                   <DrawWireframe>:=drawWireframes</DrawWireframe>
  243.                   <WireframeColor>0x400f000f</WireframeColor>
  244.                 </Veins>
  245.               </Cloud>              
  246.             </IfCondition>  
  247.            
  248.         <!--********************   Sulfur   **********************-->          
  249.         <ConfigSection>
  250.        
  251.             <IfCondition condition=':= if(age, age.RCSulfurClusters > 0, RCSulfurDist = "vanillaStdGen")'>
  252.                 <StandardGen name='RCSulfurStandard' block='Railcraft:tile.railcraft.ore:0' inherits='PresetStandardGen'>
  253.                     <Description> Rare clusters of sulfur near lava </Description>
  254.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  255.                     <WireframeColor>0x40edff21</WireframeColor>
  256.                     <Setting name='Frequency' avg=':= 0.025 * RCSulfurFreq * if(age,age.RCSulfurClusters,1) * _default_'/>
  257.                     <Setting name='Height' avg=':= 8/64 * dimension.groundLevel' range='0'/>
  258.                     <Setting name='Size' avg=':= RCSulfurSize * _default_' range=':= RCSulfurSize * _default_'/>
  259.                     <Biome name='.*'/>
  260.                 </StandardGen>
  261.             </IfCondition>  
  262.            
  263.             <IfCondition condition=':= if(age, age.RCSulfurVeins > 0, RCSulfurDist = "layeredVeins")'>  
  264.                 <Veins name='RCSulfurVeins' block='Railcraft:tile.railcraft.ore:0'
  265.                       inherits='PresetPipeVeins' seed='0xFF0300'>
  266.                     <Description> Short sparsely filled tubes starting at bedrock.  3x more common in Extreme Hills. </Description>
  267.                     <DrawWireframe>:=false</DrawWireframe>
  268.                     <WireframeColor>0x40FF2020</WireframeColor>
  269.                     <Setting name='MotherlodeFrequency' avg=':= RCSulfurFreq * if(age,age.RCSulfurVeins,1) * _default_'/>
  270.                     <Setting name='MotherlodeSize' avg=':= RCSulfurSize * _default_' range=':= RCSulfurSize * _default_'/>
  271.                     <Setting name='SegmentRadius'
  272.                             avg=':= RCSulfurSize * _default_'
  273.                             range=':= RCSulfurSize * _default_'/>
  274.                     <Setting name='MotherlodeHeight'
  275.                             avg=':= 3/64 * dimension.groundLevel' range='0'/>
  276.                     <Biome name='.*' weight='0.35'/>
  277.                     <BiomeType name='Mountain'/>
  278.                 </Veins>
  279.                 <Veins name='RCSulfurVeinsLava' block='minecraft:lava'
  280.                       inherits='RCSulfurVeins' seed='0xFF0300'>
  281.                   <Description> Fills center of each tube with lava
  282.                   </Description>
  283.                   <Setting name='MotherlodeSize' avg=':= 0.5 * _default_'/>
  284.                   <Setting name='SegmentRadius' avg=':= 0.5 * _default_'/>
  285.                   <Setting name='OreDensity' avg='0.9' range='0'/>
  286.                   <ReplacesOre block='stone'/>
  287.                   <Replaces block='minecraft:dirt'/>
  288.                   <Replaces block='minecraft:gravel'/>
  289.                   <Replaces block='Railcraft:tile.railcraft.ore:0'/>
  290.                 </Veins>
  291.             </IfCondition>    
  292.            
  293.         </ConfigSection>
  294.        
  295.         <!--******************   Saltpeter   ********************-->          
  296.         <ConfigSection>
  297.        
  298.             <IfCondition condition=':= if(age, age.RCSaltpeterClusters > 0, RCSaltpeterDist = "vanillaStdGen")'>
  299.                 <StandardGen name='RCSaltpeterStandard' block='Railcraft:tile.railcraft.ore:1' inherits='PresetStandardGen'>
  300.                     <Description> Small clusters of saltpeter </Description>
  301.                     <DrawWireframe>:=drawWireframes</DrawWireframe>
  302.                     <WireframeColor>0x40FFFFCC</WireframeColor>
  303.                     <Setting name='Size' avg=':= 7/8 * RCSaltpeterSize * _default_'/>
  304.                     <Setting name='Frequency' avg=':= 0.1 * RCSaltpeterFreq * if(age,age.RCSaltpeterClusters,1) * _default_'/>
  305.                     <Setting name='Height' avg=':=64/64 * dimension.groundLevel' range=':=5/64 * dimension.groundLevel'/>
  306.             <Replaces block='minecraft:sand'/>
  307.                     <Replaces block='minecraft:sandstone'/>
  308.             <BiomeType name='Sandy'/>
  309.                 </StandardGen>
  310.             </IfCondition>  
  311.            
  312.             <IfCondition condition=':= if(age, age.RCSaltpeterVeins > 0, RCSaltpeterDist = "layeredVeins")'>  
  313.               <Veins name='RCSaltpeterVeins' block='Railcraft:tile.railcraft.ore:1' inherits='PresetPipeVeins'>
  314.                 <Description>
  315.                   Swathes of Saltpeter.  Found only in deserts.
  316.                 </Description>
  317.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  318.                 <WireframeColor>0x40FFFFCC</WireframeColor>
  319.         <Setting name='MotherlodeFrequency' avg=':= 0.03 * oreFreq'/>            
  320.         <Setting name='MotherlodeSize' avg=':= 2.3 * oreSize' range=':= 0.5 * oreSize'/>
  321.         <Setting name='MotherlodeHeight' avg=':= 64/64 * dimension.groundLevel' range=':= 5/64 * dimension.groundLevel' type='uniform'/>
  322.         <Setting name='BranchFrequency' avg='1' range='0'/>
  323.         <Setting name='BranchInclination' avg='0' range='0.75'/>
  324.         <Setting name='BranchLength' avg='180' range='90'/>
  325.         <Setting name='BranchHeightLimit' avg='1000'/>
  326.         <Setting name='SegmentForkFrequency' avg='0' range='0'/>
  327.         <Setting name='SegmentForkLengthMult' avg='0' range='0'/>
  328.         <Setting name='SegmentLength' avg='20' range='8'/>
  329.         <Setting name='SegmentAngle' avg='0.35' range='0.35'/>
  330.         <Setting name='SegmentRadius' avg=':= 2.0 * oreSize' range=':= 1.0 * oreSize'/>
  331.         <Setting name='OreDensity' avg='0.04' range='0'/>
  332.         <Setting name='OreRadiusMult' avg='1.0' range='0.1'/>
  333.         <Replaces block='minecraft:sand'/>
  334.                 <Replaces block='minecraft:sandstone'/>
  335.         <BiomeType name='Sandy'/>
  336.               </Veins>
  337.             </IfCondition>    
  338.            
  339.             <IfCondition condition=':= if(age, age.RCSaltpeterClouds > 0, RCSaltpeterDist = "strategicClouds")'>
  340.                 <Cloud name='RCSaltpeterCloud' block='Railcraft:tile.railcraft.ore:1' inherits='PresetStrategicCloud'  seed='0xFEEDDEAD'>
  341.                 <Description>  
  342.                   Diffuse cloud with no internal density noise, found in deserts, will respawn as normal.
  343.                 </Description>
  344.                 <DrawWireframe>:=drawWireframes</DrawWireframe>
  345.                 <WireframeColor>0x40FFFFCC</WireframeColor>                
  346.                 <Setting name='DistributionFrequency' avg=':= 35 * RCSaltpeterFreq * if(age,age.RCSaltpeterClouds,1) * _default_'/>
  347.                 <Setting name='CloudRadius' avg=':= 0.4 * RCSaltpeterSize * _default_' range=':= 0.4 * RCSaltpeterSize * _default_'/>
  348.                 <Setting name='CloudThickness' avg=':= 0.2 * RCSaltpeterSize * _default_' range=':= 0.17 * RCSaltpeterSize * _default_'/>
  349.                 <Setting name='CloudHeight' avg=':= 64/64 * dimension.groundLevel' range=':= 5/64 * dimension.groundLevel'/>
  350.                 <Setting name='OreRadiusMult' avg='1' range='0.2'/>
  351.                 <Setting name='OreDensity' avg=':= 0.8 * _default_'/>
  352.                 <Setting name='OreVolumeNoiseCutoff' avg='0'/>  
  353.         <Replaces block='minecraft:sand'/>
  354.                 <Replaces block='minecraft:sandstone'/>
  355.         <BiomeType name='Sandy'/>
  356.                 </Cloud>
  357. <!-- Spawns in at level 1, in bedrock, causes stack overflow in worldgen -->
  358. <!--
  359.     <Cloud name='RCSaltpeterSpawner' block='railcraft.worldlogic' inherits='PresetStrategicCloud' seed='0xFEEDDEAD'>
  360.                  <Description>
  361.                    Spawn some Saltpeter Ore Spawner Blocks per cloud, found in below deserts, in bedrock. Currently crashes Minecraft with StackOverflow.
  362.                  </Description>
  363.                  <DrawWireframe>:=drawWireframes</DrawWireframe>
  364.                  <WireframeColor>0x40FFFFCC</WireframeColor>
  365.                  <Setting name='DistributionFrequency' avg=':= 35 * RCSaltpeterFreq * if(age,age.RCSaltpeterClouds,1) * _default_'/>
  366.                  <Setting name='CloudRadius' avg='1' range='0'/>
  367.                  <Setting name='CloudThickness' avg='1' range='0'/>
  368.                  <Setting name='CloudHeight' avg='1' range='0'/>
  369.                  <Setting name='OreRadiusMult' avg='1' range='0'/>
  370.                  <Setting name='OreDensity' avg='1'/>
  371.                  <Setting name='OreVolumeNoiseCutoff' avg='0'/>
  372.                  <Replaces block='minecraft:bedrock'/>
  373.                  <BiomeType name='Sandy'/>
  374.                </Cloud>
  375. -->
  376.             </IfCondition>  
  377.            
  378.         </ConfigSection>
  379.  
  380.            
  381.         </ConfigSection>
  382.        
  383.     </IfCondition>
  384.    
  385. </IfModInstalled>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement