summaryrefslogtreecommitdiff
path: root/asphalt/init.lua
blob: 8c1c1a32f78606586c5401812dfb72e07949cba0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--[[
	Streets Mod: All kinds of asphalt
]]
minetest.register_node(":streets:asphalt",{
	description	= "Asphalt",
	tiles	= {"streets_asphalt.png"},
	groups	= {cracky=3}
})

minetest.register_craft({
	type = "cooking",
	output	= "streets:asphalt",
	recipe 	= "default:gravel",
	cooktime = 2
})