From 3b8356eada29c0425607ed0af5f4da85e118771b Mon Sep 17 00:00:00 2001 From: paramat Date: Sun, 31 Jul 2016 06:38:46 +0100 Subject: Simplify and stuff --- nodes.lua | 152 -------------------------------------------------------------- 1 file changed, 152 deletions(-) (limited to 'nodes.lua') diff --git a/nodes.lua b/nodes.lua index c93cbb0..4111a9d 100644 --- a/nodes.lua +++ b/nodes.lua @@ -6,14 +6,6 @@ minetest.register_node("pathv7:junglewood", { sounds = default.node_sound_wood_defaults(), }) -minetest.register_node("pathv7:path", { - description = "Dirt path", - tiles = {"pathv7_path.png"}, - is_ground_content = false, - groups = {crumbly = 2}, - sounds = default.node_sound_dirt_defaults(), -}) - minetest.register_node("pathv7:bridgewood", { description = "Bridge wood", tiles = {"pathv7_bridgewood.png"}, @@ -157,147 +149,3 @@ minetest.register_node("pathv7:stairsw", { }, sounds = default.node_sound_wood_defaults(), }) - -minetest.register_node("pathv7:pstairn", { - description = "Dirt stair N", - tiles = {"pathv7_path.png"}, - drawtype = "nodebox", - paramtype = "light", - is_ground_content = false, - groups = {crumbly = 2}, - drop = "default:dirt", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {-0.5, 0, 0, 0.5, 0.5, 0.5}, - }, - }, - sounds = default.node_sound_dirt_defaults(), -}) - -minetest.register_node("pathv7:pstairs", { - description = "Dirt stair S", - tiles = {"pathv7_path.png"}, - drawtype = "nodebox", - paramtype = "light", - is_ground_content = false, - groups = {crumbly = 2}, - drop = "default:dirt", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {-0.5, 0, -0.5, 0.5, 0.5, 0}, - }, - }, - sounds = default.node_sound_wood_defaults(), -}) - -minetest.register_node("pathv7:pstaire", { - description = "Dirt stair E", - tiles = {"pathv7_path.png"}, - drawtype = "nodebox", - paramtype = "light", - is_ground_content = false, - groups = {crumbly = 2}, - drop = "default:dirt", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {0, 0, -0.5, 0.5, 0.5, 0.5}, - }, - }, - sounds = default.node_sound_dirt_defaults(), -}) - -minetest.register_node("pathv7:pstairw", { - description = "Dirt stair W", - tiles = {"pathv7_path.png"}, - drawtype = "nodebox", - paramtype = "light", - is_ground_content = false, - groups = {crumbly = 2}, - drop = "default:dirt", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {-0.5, 0, -0.5, 0, 0.5, 0.5}, - }, - }, - sounds = default.node_sound_dirt_defaults(), -}) - -minetest.register_node("pathv7:pstairne", { - description = "Dirt stair NE", - tiles = {"pathv7_path.png"}, - drawtype = "nodebox", - paramtype = "light", - is_ground_content = false, - groups = {crumbly = 2}, - drop = "default:dirt", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {0, 0, 0, 0.5, 0.5, 0.5}, - }, - }, - sounds = default.node_sound_dirt_defaults(), -}) - -minetest.register_node("pathv7:pstairnw", { - description = "Dirt stair NW", - tiles = {"pathv7_path.png"}, - drawtype = "nodebox", - paramtype = "light", - is_ground_content = false, - groups = {crumbly = 2}, - drop = "default:dirt", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {-0.5, 0, 0, 0, 0.5, 0.5}, - }, - }, - sounds = default.node_sound_dirt_defaults(), -}) - -minetest.register_node("pathv7:pstairse", { - description = "Dirt stair SE", - tiles = {"pathv7_path.png"}, - drawtype = "nodebox", - paramtype = "light", - is_ground_content = false, - groups = {crumbly = 2}, - drop = "default:dirt", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {0, 0, -0.5, 0.5, 0.5, 0}, - }, - }, - sounds = default.node_sound_dirt_defaults(), -}) - -minetest.register_node("pathv7:pstairsw", { - description = "Dirt stair SW", - tiles = {"pathv7_path.png"}, - drawtype = "nodebox", - paramtype = "light", - is_ground_content = false, - groups = {crumbly = 2}, - drop = "default:dirt", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, 0, 0.5}, - {-0.5, 0, -0.5, 0, 0.5, 0}, - }, - }, - sounds = default.node_sound_dirt_defaults(), -}) -- cgit v1.2.3