2015-04-10 21:21:51 +02:00
|
|
|
--
|
|
|
|
-- Skarn deposit
|
|
|
|
--
|
|
|
|
|
2015-04-19 12:59:13 +02:00
|
|
|
local CommonRarity=40 --too high... should be like 76
|
2015-04-10 21:21:51 +02:00
|
|
|
local CommonRadius=10
|
2015-04-23 14:35:05 +02:00
|
|
|
local CommonWherein={ "rocks:granite", "rocks:limestone", "default:stone" }
|
2015-04-10 21:21:51 +02:00
|
|
|
|
|
|
|
minetest.register_node( "rocks:skarn", {
|
|
|
|
description = S("Skarn"),
|
|
|
|
tiles = { "rocks_Skarn.png" },
|
|
|
|
groups = {cracky=3, stone=1},
|
|
|
|
is_ground_content = true, sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
2015-04-19 12:59:13 +02:00
|
|
|
-- skarn deposit
|
|
|
|
rocks.register_vein("rocks:skarn",{
|
|
|
|
wherein=CommonWherein,
|
2015-04-19 18:57:03 +02:00
|
|
|
miny=-320, maxy=300,
|
2015-04-19 12:59:13 +02:00
|
|
|
radius={ average=CommonRadius, amplitude=0.16, frequency=8 },
|
|
|
|
density=80, rarity=CommonRarity,
|
|
|
|
})
|
|
|
|
|
2015-04-12 12:48:16 +02:00
|
|
|
-- Todo:
|
|
|
|
-- There is also a chance of isolated lapis crystals, Gold
|
|
|
|
-- Molybdenite with Cu
|
|
|
|
-- wollastonite with Fe
|
|
|
|
-- enrichments: scheelite and wollastonite
|
2015-04-10 21:21:51 +02:00
|
|
|
|
|
|
|
-- ~ Tomas Brod
|