cactusblock

my cactusblock mod
master
hammerjelly 2014-08-21 18:12:23 +03:00
parent 35d24090a3
commit a04df6dc5d
3 changed files with 24 additions and 0 deletions

1
depends.txt Normal file
View File

@ -0,0 +1 @@
default

23
init.lua Normal file
View File

@ -0,0 +1,23 @@
minetest.register_node("cactusblock:cactusblock", {
description = "cactus block",
drawtype = "blocklike",
visual_scale = 1.0,
tiles = {"cactusblock_cactusblock.png"},
inventory_image = "cactusblock_cactusblock.png",
paramtype = "light",
sunlight_propagates = true,
walkable = true,
groups = {fleshy=3,dig_immediate=3,flammable=2},
})
minetest.register_craft( {
output = "cactusblock:cactusblock 4",
recipe = {
{ "default:cactus","default:cactus"},
{ "default:cactus","default:cactus"}
}
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB