forked from VoxeLibre/VoxeLibre
Add diorite, andesite, granite (+polished)
This commit is contained in:
parent
532015b72f
commit
e14189fa99
|
@ -78,6 +78,50 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:granite_smooth 4',
|
||||
recipe = {
|
||||
{'default:granite', 'default:granite'},
|
||||
{'default:granite', 'default:granite'}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:andesite_smooth 4',
|
||||
recipe = {
|
||||
{'default:andesite', 'default:andesite'},
|
||||
{'default:andesite', 'default:andesite'}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:diorite_smooth 4',
|
||||
recipe = {
|
||||
{'default:diorite', 'default:diorite'},
|
||||
{'default:diorite', 'default:diorite'}
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = 'default:granite',
|
||||
recipe = {'default:diorite', 'default:quartz_crystal'},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = 'default:andesite 2',
|
||||
recipe = {'default:diorite', 'default:cobble'},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:diorite 2',
|
||||
recipe = {
|
||||
{'default:cobble', 'default:quartz_crystal'},
|
||||
{'default:quartz_crystal', 'default:cobble'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:stick 4',
|
||||
recipe = {
|
||||
|
|
|
@ -202,6 +202,57 @@ minetest.register_node("default:stonebrickmossy", {
|
|||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:granite", {
|
||||
description = "Granite",
|
||||
tiles = {"default_granite.png"},
|
||||
is_ground_content = true,
|
||||
stack_max = 64,
|
||||
groups = {cracky=3, stone=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:granite_smooth", {
|
||||
description = "Polished Granite",
|
||||
tiles = {"default_granite_smooth.png"},
|
||||
stack_max = 64,
|
||||
groups = {cracky=3, stone=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:andesite", {
|
||||
description = "Andesite",
|
||||
tiles = {"default_andesite.png"},
|
||||
is_ground_content = true,
|
||||
stack_max = 64,
|
||||
groups = {cracky=3, stone=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:andesite_smooth", {
|
||||
description = "Polished Andesite",
|
||||
tiles = {"default_andesite_smooth.png"},
|
||||
stack_max = 64,
|
||||
groups = {cracky=3, stone=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:diorite", {
|
||||
description = "Diorite",
|
||||
tiles = {"default_diorite.png"},
|
||||
is_ground_content = true,
|
||||
stack_max = 64,
|
||||
groups = {cracky=3, stone=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:diorite_smooth", {
|
||||
description = "Polished Diorite",
|
||||
tiles = {"default_diorite_smooth.png"},
|
||||
stack_max = 64,
|
||||
groups = {cracky=3, stone=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:dirt_with_grass", {
|
||||
description = "Grass Block",
|
||||
tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 5.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
Loading…
Reference in New Issue