From 7bda846ea7f8c3ad127b167e6c7a797bfd46f73f Mon Sep 17 00:00:00 2001 From: Christian Danscheid Date: Sat, 10 Aug 2013 19:23:52 +0200 Subject: Initial commit --- asphalt/init.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 asphalt/init.lua (limited to 'asphalt/init.lua') diff --git a/asphalt/init.lua b/asphalt/init.lua new file mode 100644 index 0000000..8c1c1a3 --- /dev/null +++ b/asphalt/init.lua @@ -0,0 +1,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 +}) \ No newline at end of file -- cgit v1.2.3