tile_images --> tiles

master
Vanessa Ezekowitz 2015-10-23 13:45:23 -04:00 committed by Auke Kok
parent ca4aa21097
commit a6bea5aabc
1 changed files with 8 additions and 8 deletions

View File

@ -78,7 +78,7 @@ end
minetest.register_node("steel:plate_soft", { minetest.register_node("steel:plate_soft", {
description = "Soft steel plate", description = "Soft steel plate",
tile_images = {"steelplatesoft.png"}, tiles = {"steelplatesoft.png"},
is_ground_content = true, is_ground_content = true,
groups = {cracky=2}, groups = {cracky=2},
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
@ -86,7 +86,7 @@ minetest.register_node("steel:plate_soft", {
minetest.register_node("steel:plate_hard", { minetest.register_node("steel:plate_hard", {
description = "Hardened steel plate", description = "Hardened steel plate",
tile_images = {"steelplatehard.png"}, tiles = {"steelplatehard.png"},
is_ground_content = true, is_ground_content = true,
groups = {cracky=1}, groups = {cracky=1},
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
@ -94,7 +94,7 @@ minetest.register_node("steel:plate_hard", {
minetest.register_node("steel:plate_rusted", { minetest.register_node("steel:plate_rusted", {
description = "Rusted steel plate", description = "Rusted steel plate",
tile_images = {"steel_rusted.png"}, tiles = {"steel_rusted.png"},
is_ground_content = true, is_ground_content = true,
groups = {cracky=1,choppy=1}, groups = {cracky=1,choppy=1},
sounds = default.node_sound_stone_defaults(), sounds = default.node_sound_stone_defaults(),
@ -109,7 +109,7 @@ else
minetest.register_node("steel:strut", { minetest.register_node("steel:strut", {
drawtype = "glasslike", drawtype = "glasslike",
description = "Strut", description = "Strut",
tile_images = {"strut.png"}, tiles = {"strut.png"},
is_ground_content = true, is_ground_content = true,
paramtype= "light", paramtype= "light",
groups = {choppy=1,cracky=1}, groups = {choppy=1,cracky=1},
@ -140,7 +140,7 @@ minetest.register_node("steel:strut_mount", {
minetest.register_node("steel:grate_soft", { minetest.register_node("steel:grate_soft", {
description = "Soft Steel Grate", description = "Soft Steel Grate",
drawtype = "fencelike", drawtype = "fencelike",
tile_images = {"worldgratesoft.png"}, tiles = {"worldgratesoft.png"},
inventory_image = "gratesoft.png", inventory_image = "gratesoft.png",
wield_image = "gratesoft.png", wield_image = "gratesoft.png",
paramtype = "light", paramtype = "light",
@ -156,7 +156,7 @@ minetest.register_node("steel:grate_soft", {
minetest.register_node("steel:grate_hard", { minetest.register_node("steel:grate_hard", {
description = "Hardened Steel Grate", description = "Hardened Steel Grate",
drawtype = "fencelike", drawtype = "fencelike",
tile_images = {"worldgratehard.png"}, tiles = {"worldgratehard.png"},
inventory_image = "gratehard.png", inventory_image = "gratehard.png",
wield_image = "gratehard.png", wield_image = "gratehard.png",
paramtype = "light", paramtype = "light",
@ -172,7 +172,7 @@ minetest.register_node("steel:grate_hard", {
minetest.register_node("steel:roofing", { minetest.register_node("steel:roofing", {
description = "Corrugated steel roofing", description = "Corrugated steel roofing",
drawtype = "raillike", drawtype = "raillike",
tile_images = {"corrugated_steel.png"}, tiles = {"corrugated_steel.png"},
inventory_image = "corrugated_steel.png", inventory_image = "corrugated_steel.png",
wield_image = "corrugated_steel.png", wield_image = "corrugated_steel.png",
paramtype = "light", paramtype = "light",
@ -193,7 +193,7 @@ minetest.register_node("steel:roofing", {
minetest.register_node("steel:roofing_wall", { minetest.register_node("steel:roofing_wall", {
description = "Corrugated steel wall", description = "Corrugated steel wall",
drawtype = "nodebox", drawtype = "nodebox",
tile_images = {"corrugated_steel.png"}, tiles = {"corrugated_steel.png"},
inventory_image = "corrugated_steel.png", inventory_image = "corrugated_steel.png",
wield_image = "corrugated_steel.png", wield_image = "corrugated_steel.png",
paramtype = "light", paramtype = "light",