master
Victor Hackeridze 2012-04-04 16:14:56 +06:00
parent 821103f325
commit 8c54e53260
3 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1 @@
default

View File

@ -0,0 +1,24 @@
minetest.register_craft({
output = 'node "moarcraft_rtmmp:stone_brick" 4',
recipe = {
{'node "default:stone"','node "default:stone"'},
{'node "default:stone"','node "default:stone"'},
}
})
minetest.register_node("moarcraft_rtmmp:stone_brick", {
tile_images = {"default_stone.png^moarcraft_rtmmp_stone_brick.png"},
inventory_image = minetest.inventorycube("default_stone.png^moarcraft_rtmmp_stone_brick.png"),
paramtype = "mineral",
is_ground_content = true,
often_contains_mineral = true, -- Texture atlas hint
groups = {cracky=2},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_craft({
output = 'default:steel_ingot 9',
recipe = {
{ 'default:steel_block'},
}
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B