2017-12-23 16:33:05 +00:00
|
|
|
minetest.register_node("ctf_map:ignore", {
|
2018-06-08 22:35:28 +00:00
|
|
|
description = "Artificial Ignore", -- this may need to be given a more appropriate name
|
2017-12-23 16:33:05 +00:00
|
|
|
drawtype = "airlike",
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = true,
|
|
|
|
pointable = false,
|
|
|
|
diggable = false,
|
|
|
|
buildable_to = false,
|
|
|
|
air_equivalent = true,
|
|
|
|
drop = "",
|
|
|
|
groups = {not_in_creative_inventory=1}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("ctf_map:ind_glass", {
|
2018-06-08 22:35:28 +00:00
|
|
|
description = "Indestructible Glass",
|
2017-12-23 16:33:05 +00:00
|
|
|
drawtype = "glasslike_framed_optional",
|
|
|
|
tiles = {"default_glass.png", "default_glass_detail.png"},
|
|
|
|
inventory_image = minetest.inventorycube("default_glass.png"),
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = true,
|
|
|
|
buildable_to = false,
|
|
|
|
pointable = false,
|
|
|
|
groups = {immortal = 1},
|
|
|
|
sounds = default.node_sound_glass_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("ctf_map:ind_stone", {
|
2018-06-08 22:35:28 +00:00
|
|
|
description = "Indestructible Stone",
|
2017-12-23 16:33:05 +00:00
|
|
|
groups = {immortal = 1},
|
|
|
|
tiles = {"default_stone.png"},
|
|
|
|
is_ground_content = false
|
|
|
|
})
|
|
|
|
|
2018-06-08 22:35:28 +00:00
|
|
|
minetest.register_node("ctf_map:ind_dirt", {
|
|
|
|
description = "Indestructible Dirt",
|
|
|
|
groups = {immortal = 1},
|
|
|
|
tiles = {"default_dirt.png"},
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_dirt_defaults({
|
|
|
|
footstep = {name = "default_grass_footstep", gain = 0.25}
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("ctf_map:ind_dirt_with_grass", {
|
|
|
|
description = "Indestructible Dirt with Grass",
|
|
|
|
groups = {immortal = 1},
|
|
|
|
tiles = {"default_grass.png", "default_dirt.png",
|
|
|
|
{name = "default_dirt.png^default_grass_side.png",
|
|
|
|
tileable_vertical = false}},
|
|
|
|
is_ground_content = false,
|
|
|
|
sounds = default.node_sound_dirt_defaults({
|
|
|
|
footstep = {name = "default_grass_footstep", gain = 0.25},
|
|
|
|
}),
|
|
|
|
})
|
|
|
|
|
2017-12-28 12:22:19 +00:00
|
|
|
minetest.register_node("ctf_map:ind_stone_red", {
|
2018-06-08 22:35:28 +00:00
|
|
|
description = "Indestructible Red Stone",
|
2017-12-28 12:22:19 +00:00
|
|
|
groups = {immortal = 1},
|
|
|
|
tiles = {"ctf_map_stone_red.png"},
|
|
|
|
is_ground_content = false
|
|
|
|
})
|
|
|
|
|
2017-12-23 16:33:05 +00:00
|
|
|
minetest.register_node("ctf_map:ind_glass_red", {
|
2018-06-08 22:35:28 +00:00
|
|
|
description = "Indestructible Red Glass",
|
2017-12-23 16:33:05 +00:00
|
|
|
drawtype = "glasslike",
|
2017-12-28 12:22:19 +00:00
|
|
|
tiles = {"ctf_map_glass_red.png"},
|
2017-12-23 16:33:05 +00:00
|
|
|
inventory_image = minetest.inventorycube("default_glass.png"),
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
is_ground_content = false,
|
|
|
|
walkable = true,
|
|
|
|
buildable_to = false,
|
|
|
|
use_texture_alpha = false,
|
|
|
|
alpha = 0,
|
|
|
|
pointable = false,
|
|
|
|
groups = {immortal = 1},
|
|
|
|
sounds = default.node_sound_glass_defaults()
|
|
|
|
})
|