Tiles streets

master
Jat 2012-12-03 05:03:54 +01:00
parent 48a1158d2b
commit 50ea2673b4
1 changed files with 9 additions and 9 deletions

View File

@ -2,14 +2,14 @@
-- Asphalt block
minetest.register_node("streets:asphalt", {
description = "Asphalt",
tile_images = {"streets_asphalt.png"},
tiles = {"streets_asphalt.png"},
drawtype = "normal",
groups = {cracky=1},
})
-- Asphalt with side line
minetest.register_node("streets:asphalt_side", {
description = "Asphalt with side line",
tile_images = {"streets_asphalt_side.png", "streets_asphalt.png"},
tiles = {"streets_asphalt_side.png", "streets_asphalt.png"},
drawtype = "normal",
paramtype = "light",
paramtype2 = "facedir",
@ -18,7 +18,7 @@
-- Asphalt with middle dashed line
minetest.register_node("streets:asphalt_middle_dashed", {
description = "Asphalt with middle dashed line",
tile_images = {"streets_asphalt_middle_dashed.png", "streets_asphalt.png"},
tiles = {"streets_asphalt_middle_dashed.png", "streets_asphalt.png"},
drawtype = "normal",
paramtype = "light",
paramtype2 = "facedir",
@ -27,7 +27,7 @@
-- Asphalt with middle solid line
minetest.register_node("streets:asphalt_middle", {
description = "Asphalt with middle solid line",
tile_images = {"streets_asphalt_middle_solid.png", "streets_asphalt.png"},
tiles = {"streets_asphalt_middle_solid.png", "streets_asphalt.png"},
drawtype = "normal",
paramtype = "light",
paramtype2 = "facedir",
@ -36,7 +36,7 @@
-- Asphalt with solid line for outer edge
minetest.register_node("streets:asphalt_outer_edge", {
description = "Asphalt with solid line for outer edge",
tile_images = {"streets_asphalt_outer_edge.png", "streets_asphalt.png"},
tiles = {"streets_asphalt_outer_edge.png", "streets_asphalt.png"},
drawtype = "normal",
paramtype = "light",
paramtype2 = "facedir",
@ -45,7 +45,7 @@
-- Asphalt with manhole
minetest.register_node("streets:manhole", {
description = "Asphalt block with manhole",
tile_images = {"streets_manhole.png", "streets_asphalt.png"},
tiles = {"streets_manhole.png", "streets_asphalt.png"},
drawtype = "normal",
paramtype = "light",
groups = {cracky=1},
@ -53,7 +53,7 @@
-- Concrete
minetest.register_node("streets:concrete", {
description = "Concrete Block",
tile_images = {"streets_concrete.png"},
tiles = {"streets_concrete.png"},
drawtype = "normal",
paramtype = "light",
groups = {cracky=2},
@ -61,7 +61,7 @@
-- Concrete seperating wall
minetest.register_node("streets:seperating_wall", {
description = "Seperating wall",
tile_images = {"streets_concrete.png"},
tiles = {"streets_concrete.png"},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
@ -74,7 +74,7 @@
-- Steel frame
minetest.register_node("streets:steel_support", {
description = "Steel frame",
tile_images = {"streets_support.png"},
tiles = {"streets_support.png"},
drawtype = "glasslike",
paramtype = "light",
groups = {cracky=3},