Tin: Tune mapgen, bugfix, fix texture credits
authorparamat <mat.gregory@virginmedia.com>
Sun, 23 Apr 2017 03:09:46 +0000 (04:09 +0100)
committerparamat <mat.gregory@virginmedia.com>
Sun, 23 Apr 2017 22:05:31 +0000 (23:05 +0100)
Previously i had matched ore density to moreores, but this density was
too high and out of balance with MTGame, reduce density to be similar
to copper ore.
The 2 levels of underground ore were overlapping, fix.
Textures are actually by kilbith, update credits.

Also credit kilbith for bronze, copper, gold and steel blocks, credits
had not been updated at the time.

mods/default/README.txt
mods/default/license.txt
mods/default/mapgen.lua

index 3c104a00f48cb93168f17aa5f8bffb54974c175a..8d1357c83a057beedbb5d8557138b22a1cc37d6e 100644 (file)
@@ -53,10 +53,6 @@ Calinou (CC BY-SA 3.0):
   default_papyrus.png
   default_mineral_copper.png
   default_glass_detail.png
-  default_mineral_tin.png
-  default_tin_block.png
-  default_tin_ingot.png
-  default_tin_lump.png
 
 MirceaKitsune (CC BY-SA 3.0):
   character.x
@@ -82,10 +78,6 @@ Splizard (CC BY-SA 3.0):
 
 Zeg9 (CC BY-SA 3.0):
   default_coal_block.png
-  default_steel_block.png
-  default_copper_block.png
-  default_bronze_block.png
-  default_gold_block.png
 
 paramat (CC BY-SA 3.0):
   wieldhand.png -- Copied from character.png by Jordach (CC BY-SA 3.0)
@@ -216,6 +208,16 @@ kaeza (CC-BY-SA 3.0):
   default_desert_sandstone_brick.png
   default_desert_sandstone_block.png
 
+kilbith (CC BY-SA 3.0):
+  default_steel_block.png
+  default_copper_block.png
+  default_bronze_block.png
+  default_gold_block.png
+  default_tin_block.png
+  default_mineral_tin.png
+  default_tin_ingot.png
+  default_tin_lump.png
+
 Glass breaking sounds (CC BY 3.0):
   1: http://www.freesound.org/people/cmusounddesign/sounds/71947/
   2: http://www.freesound.org/people/Tomlija/sounds/97669/
index 09e4225f0a6a9c027fba42fd84d969fcdac98841..72af728458cbfde5c79802543b26024d1ab1d4b5 100644 (file)
@@ -43,6 +43,7 @@ Copyright (C) 2010-2016:
   Mito551
   GreenXenith
   kaeza
+  kilbith
 
 You are free to:
 Share — copy and redistribute the material in any medium or format.
index fff889fadb5d34c322f3f832a91a3d7fe8889974..1305226a9eac321f6c95b9a75a7f2cf71e82f134 100644 (file)
@@ -364,7 +364,7 @@ function default.register_ores()
                ore            = "default:stone_with_tin",
                wherein        = "default:stone",
                clust_scarcity = 10 * 10 * 10,
-               clust_num_ores = 9,
+               clust_num_ores = 5,
                clust_size     = 3,
                y_min          = 1025,
                y_max          = 31000,
@@ -375,9 +375,9 @@ function default.register_ores()
                ore            = "default:stone_with_tin",
                wherein        = "default:stone",
                clust_scarcity = 13 * 13 * 13,
-               clust_num_ores = 7,
+               clust_num_ores = 4,
                clust_size     = 3,
-               y_min          = -31000,
+               y_min          = -127,
                y_max          = -32,
        })
 
@@ -386,7 +386,7 @@ function default.register_ores()
                ore            = "default:stone_with_tin",
                wherein        = "default:stone",
                clust_scarcity = 10 * 10 * 10,
-               clust_num_ores = 9,
+               clust_num_ores = 5,
                clust_size     = 3,
                y_min          = -31000,
                y_max          = -128,