lawremi / PerFabricaAdAstra

Through crafting, to the stars
http://pfaa.wikia.com/
Artistic License 2.0
17 stars 7 forks source link

Carbonate Clouds and Veins are configured by default to generate Barium #36

Closed TheGurw closed 9 years ago

TheGurw commented 9 years ago

From https://github.com/lawremi/PerFabricaAdAstra/blob/d54f264bbff4efcc59c51151204331864479d929/src/main/resources/config/CustomOreGen_Geologica.xml#L2996

          <CloudPreset name='PresetCarbonateDeposit'
                       inherits='PresetLimestoneLower'>
            <Setting name='DistributionFrequency' avg='0.003'/>
            <Setting name='CloudThickness' avg='6'/>
            <Setting name='CloudHeight'
                     avg=':= 55/64 * dimension.groundLevel'
                     range=':= 2/64 * dimension.groundLevel'/>
          </CloudPreset>
          <VeinsPreset name='PresetCarbonateSphaleriteGalena'
                       inherits='PresetSphaleriteGalena'
                       drawWireframe='false'
                       wireframeColor='0xFFFF00FF'>
            <Setting name='DistributionFrequency' avg=':= 1.2 * oreFreq'/>
            <Setting name='MotherlodeHeight'
                     avg=':= 55/64 * dimension.groundLevel'
                     range=':= 2/64 * dimension.groundLevel'/>
            <Setting name='ParentRangeLimit' avg='4' range='2'/>
            <Replaces block='PFAAGeologica:mediumStone:0'/>
            <OreBlock block='PFAAGeologica:mediumOreRock:8' weight='0.60'/>
            <OreBlock block='PFAAGeologica:weakOreRock:2' weight='0.20'/>
            <OreBlock block='PFAAGeologica:mediumOreRock:0' weight='0.20'/>
          </VeinsPreset>
          <VeinsPreset name='PresetCarbonateSphaleriteGalenaOceanic'
                       inherits='PresetCarbonateSphaleriteGalena'
                       drawWireframe='false'
                       wireframeColor='0xFFFF00FF'>
            <Setting name='DistributionFrequency' avg=':= 0.005'/>
            <Setting name='MotherlodeHeight'
                     avg=':= 40/64 * dimension.groundLevel'/>
            <BiomeSet inherits='sedocean'/>
            <OreBlock block='PFAAGeologica:mediumOreRock:8' weight='0.60'/>
            <OreBlock block='PFAAGeologica:weakOreRock:2' weight='0.20'/>
            <OreBlock block='PFAAGeologica:mediumOreRock:0' weight='0.20'/>
          </VeinsPreset>

mediumOreRock:0 is Barite, which is very much not a Carbonate-class ore.

Unless of course I'm mistaken on the block ID. I very well could be, but that's what shows up when I go in-game.

lawremi commented 9 years ago

You may be much more of a geologist than me, but just quoting Wikipedia: "Baryte commonly occurs in lead-zinc veins in limestones".

TheGurw commented 9 years ago

Ah, I misunderstood your intent here. Carbonate minerals contain the carbonate ion (Barite does not - I actually made a mistake earlier with my list of carbonate minerals, I was looking at another list at the time and got confused). Not a big deal, just a little confusing.

TheGurw commented 9 years ago

Closing since the generation still works properly, it's just a semantics difference.