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/depends.txt | 2 ++ asphalt/init.lua | 15 +++++++++++++++ asphalt/textures/streets_asphalt.png | Bin 0 -> 7120 bytes 3 files changed, 17 insertions(+) create mode 100644 asphalt/depends.txt create mode 100644 asphalt/init.lua create mode 100644 asphalt/textures/streets_asphalt.png (limited to 'asphalt') diff --git a/asphalt/depends.txt b/asphalt/depends.txt new file mode 100644 index 0000000..48ef5e1 --- /dev/null +++ b/asphalt/depends.txt @@ -0,0 +1,2 @@ +default +streetsmod \ No newline at end of file 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 diff --git a/asphalt/textures/streets_asphalt.png b/asphalt/textures/streets_asphalt.png new file mode 100644 index 0000000..3740905 Binary files /dev/null and b/asphalt/textures/streets_asphalt.png differ -- cgit v1.2.3