Skip to content

Commit c2d1a5e

Browse files
committedApr 23, 2017
Tin: Tune mapgen, bugfix, fix texture credits
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.
1 parent 4d9fd7a commit c2d1a5e

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed
 

Diff for: ‎mods/default/README.txt

+10-8
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,6 @@ Calinou (CC BY-SA 3.0):
5353
default_papyrus.png
5454
default_mineral_copper.png
5555
default_glass_detail.png
56-
default_mineral_tin.png
57-
default_tin_block.png
58-
default_tin_ingot.png
59-
default_tin_lump.png
6056

6157
MirceaKitsune (CC BY-SA 3.0):
6258
character.x
@@ -82,10 +78,6 @@ Splizard (CC BY-SA 3.0):
8278

8379
Zeg9 (CC BY-SA 3.0):
8480
default_coal_block.png
85-
default_steel_block.png
86-
default_copper_block.png
87-
default_bronze_block.png
88-
default_gold_block.png
8981

9082
paramat (CC BY-SA 3.0):
9183
wieldhand.png -- Copied from character.png by Jordach (CC BY-SA 3.0)
@@ -216,6 +208,16 @@ kaeza (CC-BY-SA 3.0):
216208
default_desert_sandstone_brick.png
217209
default_desert_sandstone_block.png
218210

211+
kilbith (CC BY-SA 3.0):
212+
default_steel_block.png
213+
default_copper_block.png
214+
default_bronze_block.png
215+
default_gold_block.png
216+
default_tin_block.png
217+
default_mineral_tin.png
218+
default_tin_ingot.png
219+
default_tin_lump.png
220+
219221
Glass breaking sounds (CC BY 3.0):
220222
1: http://www.freesound.org/people/cmusounddesign/sounds/71947/
221223
2: http://www.freesound.org/people/Tomlija/sounds/97669/

Diff for: ‎mods/default/license.txt

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Copyright (C) 2010-2016:
4343
Mito551
4444
GreenXenith
4545
kaeza
46+
kilbith
4647

4748
You are free to:
4849
Share — copy and redistribute the material in any medium or format.

Diff for: ‎mods/default/mapgen.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ function default.register_ores()
364364
ore = "default:stone_with_tin",
365365
wherein = "default:stone",
366366
clust_scarcity = 10 * 10 * 10,
367-
clust_num_ores = 9,
367+
clust_num_ores = 5,
368368
clust_size = 3,
369369
y_min = 1025,
370370
y_max = 31000,
@@ -375,9 +375,9 @@ function default.register_ores()
375375
ore = "default:stone_with_tin",
376376
wherein = "default:stone",
377377
clust_scarcity = 13 * 13 * 13,
378-
clust_num_ores = 7,
378+
clust_num_ores = 4,
379379
clust_size = 3,
380-
y_min = -31000,
380+
y_min = -127,
381381
y_max = -32,
382382
})
383383

@@ -386,7 +386,7 @@ function default.register_ores()
386386
ore = "default:stone_with_tin",
387387
wherein = "default:stone",
388388
clust_scarcity = 10 * 10 * 10,
389-
clust_num_ores = 9,
389+
clust_num_ores = 5,
390390
clust_size = 3,
391391
y_min = -31000,
392392
y_max = -128,

0 commit comments

Comments
 (0)
Please sign in to comment.