Add files via upload

master
zander999 2016-09-28 16:00:48 +10:00 committed by GitHub
parent 2698c86512
commit 2e5301ec4a
3 changed files with 39 additions and 0 deletions

39
init.lua Normal file
View File

@ -0,0 +1,39 @@
minetest.register_node("stone:stone", {
description = "small bit of stone",
tiles = {
"default_stone.png",
"default_stone.png",
"default_furnace_bottom.png",
"default_furnace_bottom.png",
"default_furnace_bottom.png",
"default_furnace_bottom.png"
},
drawtype = "nodebox",
paramtype = "light",
groups = {oddly_breakable_by_hand=1},
node_box = {
type = "fixed",
fixed = {
{-0.1875, -0.5, -0.1875, 0.125, -0.1875, 0.125},
}
}
})
minetest.register_craft({
output = "stone:stone 20",
recipe = {
{"", "default:stone",""},
{"default:stone", "default:stone", "default:stone"},
{"", "default:stone", ""},
}
})
minetest.register_craft({
output = "default:stone",
recipe = {
{"stone:stone", "stone:stone","stone:stone"},
{"stone:stone", "stone:stone", "stone:stone"},
{"stone:stone", "stone:stone", "stone:stone"},
}
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 479 B

BIN
textures/default_stone.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 405 B