summaryrefslogtreecommitdiff
path: root/asphalt
diff options
context:
space:
mode:
authorChristian Danscheid <Christian_D_97@gmx.de>2013-08-10 19:23:52 +0200
committerChristian Danscheid <Christian_D_97@gmx.de>2013-08-10 19:23:52 +0200
commit7bda846ea7f8c3ad127b167e6c7a797bfd46f73f (patch)
tree37c4d4cc80cb2b11452d24df057e485c54687eb4 /asphalt
downloadroads-7bda846ea7f8c3ad127b167e6c7a797bfd46f73f.tar
roads-7bda846ea7f8c3ad127b167e6c7a797bfd46f73f.tar.gz
roads-7bda846ea7f8c3ad127b167e6c7a797bfd46f73f.tar.bz2
roads-7bda846ea7f8c3ad127b167e6c7a797bfd46f73f.tar.xz
roads-7bda846ea7f8c3ad127b167e6c7a797bfd46f73f.zip
Initial commit
Diffstat (limited to 'asphalt')
-rw-r--r--asphalt/depends.txt2
-rw-r--r--asphalt/init.lua15
-rw-r--r--asphalt/textures/streets_asphalt.pngbin0 -> 7120 bytes
3 files changed, 17 insertions, 0 deletions
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
--- /dev/null
+++ b/asphalt/textures/streets_asphalt.png
Binary files differ