Create textures + register new stones

master
migdyn 2019-02-02 15:45:14 +00:00
parent 68a8d9e78f
commit 07d056c87e
6 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1 @@
Hello, this a new mod for adsurv! Probably won't work with MTG! It's a mod that adds more kinds of stones and some odd ores like limestone, chalk, silstone, and shale

View File

@ -0,0 +1,23 @@
minetest.register_node("minerals:limestone", {
description = "Limestone",
tiles = {"minerals_limestone.png"},
groups = {cracky = 3},
})
minetest.register_node("minerals:obsidian", {
description = "Obsidian",
tiles = {"minerals_obsidian.png"},
groups = {cracky = 2},
})
minetest.register_node("minerals:concrete_solid", {
description = "Solid Concrete",
tiles = {"minerals_concrete_solid.png"},
groups = {cracky = 1},
})
minetest.register_node("minerals:chalk", {
description = "Chalk",
tiles = {"minerals_chalk.png"},
groups = {cracky = 3},
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 484 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 B