Skip to content

Commit

Permalink
Tin: Tune mapgen, bugfix, fix texture credits
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
paramat committed Apr 23, 2017
1 parent 4d9fd7a commit c2d1a5e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
18 changes: 10 additions & 8 deletions mods/default/README.txt
Expand Up @@ -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
Expand All @@ -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)
Expand Down Expand Up @@ -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/
Expand Down
1 change: 1 addition & 0 deletions mods/default/license.txt
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions mods/default/mapgen.lua
Expand Up @@ -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,
Expand All @@ -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,
})

Expand All @@ -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,
Expand Down

0 comments on commit c2d1a5e

Please sign in to comment.