From b8dfc5dedd99cef6db3ade8f682a051f882cda12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Brada?= Date: Sun, 12 Apr 2015 12:48:16 +0200 Subject: [PATCH] Make skarns spawn in lime too. + some notes --- skarn.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/skarn.lua b/skarn.lua index 79b537e..fd28cc1 100644 --- a/skarn.lua +++ b/skarn.lua @@ -4,7 +4,7 @@ local CommonRarity=0.02 --too high... should be like 0.013 local CommonRadius=10 -local CommonWherein={ "rocks:granite" } +local CommonWherein={ "rocks:granite", "rocks:limestone" } minetest.register_node( "rocks:skarn", { description = S("Skarn"), @@ -15,8 +15,11 @@ minetest.register_node( "rocks:skarn", { -- ores have to be redefined for skarn background - -- There is also a chance of isolated lapis crystals - -- enrichments: scheelite and wollastonite -> in each vein + -- Todo: + -- There is also a chance of isolated lapis crystals, Gold + -- Molybdenite with Cu + -- wollastonite with Fe + -- enrichments: scheelite and wollastonite -- Chalcopyrite minetest.register_node( "rocks:skarn_chalcopyrite", { @@ -44,6 +47,7 @@ rocks.register_vein("rocks:skarn",{ -- { ore="rocks:hornfels", percent=10 }, { ore="rocks:skarn_chalcopyrite", percent=30 }, { ore="rocks:skarn_malachyte", percent=15 }, + -- { ore="rocks:skarn_molybdenite", percent=5 }, } })