2015-01-11 11:16:16 +01:00
|
|
|
local CcHard=3
|
|
|
|
local CcStrong=3
|
|
|
|
local CcMed=3
|
|
|
|
local CcSoft=3
|
|
|
|
|
|
|
|
--
|
|
|
|
-- nonvein vein
|
|
|
|
--
|
|
|
|
|
|
|
|
-- Claystone Sed soft in mudstone
|
2015-01-12 21:45:09 +01:00
|
|
|
rocks.register_vein("clay",{
|
|
|
|
spread = {x=10, y=10, z=10},
|
|
|
|
treshold=0.75,
|
|
|
|
seed = 9,
|
|
|
|
hmin=-8, hmax=nil,
|
|
|
|
layers={ "mudstone" },
|
|
|
|
})
|
2015-02-08 16:58:57 +01:00
|
|
|
rocks.register_ore( "clay", "default:clay", {treshold=0, chance=1 } )
|
|
|
|
rocks.register_ore( "clay", "default:torch", {treshold=0, chance=0.3 } )
|
2015-01-12 21:45:09 +01:00
|
|
|
|
2015-01-11 11:16:16 +01:00
|
|
|
-- Breccia Mixture soft in mudstone
|
|
|
|
-- Conglomerate Sed soft in mudstone
|
|
|
|
-- Skarn MM/contact med in mudstone in mountains
|
|
|
|
-- Hornfels MM/contact vhard in mudstone in mountains
|
|
|
|
-- Marble MM/contact hard in mudstone in mountains
|
|
|
|
-- Limestone Sed med in Rhyolite, Andesite in mountains
|
2015-02-08 16:58:57 +01:00
|
|
|
rocks.register_vein("limestone",{
|
|
|
|
spread = {x=10, y=10, z=10},
|
|
|
|
treshold=0.75,
|
|
|
|
seed = 10,
|
|
|
|
hmin=nil, hmax=nil,
|
|
|
|
layers={ "mudstone" },
|
|
|
|
})
|
2015-01-11 11:16:16 +01:00
|
|
|
-- Dolomite Sed med in Rhyolite, Andesite in mountains
|
|
|
|
-- Quartzite MM/contact vhard sandstone
|
|
|
|
|
|
|
|
|