diff options
Diffstat (limited to 'nodes.lua')
-rw-r--r-- | nodes.lua | 152 |
1 files changed, 0 insertions, 152 deletions
@@ -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(),
-})
|