2024-01-07 16:07:17 +03:00
|
|
|
local S = minetest.get_translator("plant_blocks")
|
|
|
|
|
|
|
|
--plant_blocks:brush
|
|
|
|
minetest.register_craftitem("plant_blocks:brush", {
|
|
|
|
description = S("Brush"),
|
|
|
|
inventory_image = "brush.png"
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:brush',
|
|
|
|
recipe = {
|
|
|
|
{'basic_materials:plastic_sheet','', ''},
|
|
|
|
{'basic_materials:steel_strip', '', ''},
|
|
|
|
{'default:stick', '', ''},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:ruler
|
|
|
|
minetest.register_craftitem("plant_blocks:ruler", {
|
|
|
|
description = S("Ruler"),
|
|
|
|
inventory_image = "ruler.png"
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:ruler',
|
|
|
|
recipe = {
|
|
|
|
{'default:stick','default:sword_steel', ''},
|
|
|
|
},
|
|
|
|
replacements = {{"default:sword_steel", "default:sword_steel"}}
|
|
|
|
})
|
|
|
|
|
2024-01-11 15:02:17 +03:00
|
|
|
--plant_blocks:scissors
|
|
|
|
minetest.register_craftitem("plant_blocks:scissors", {
|
|
|
|
description = S("Scissors"),
|
|
|
|
inventory_image = "scissors.png"
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:scissors',
|
|
|
|
recipe = {
|
|
|
|
{'basic_materials:steel_strip', '', ''},
|
|
|
|
{'basic_materials:plastic_sheet','', ''},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:triangular_stencil Треугольный трафарет
|
|
|
|
minetest.register_craftitem("plant_blocks:triangular_stencil", {
|
|
|
|
description = S("Triangular_stencil"),
|
|
|
|
inventory_image = "triangular_stencil.png"
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:triangular_stencil',
|
|
|
|
recipe = {
|
|
|
|
{'basic_materials:plastic_sheet','plant_blocks:scissors','plant_blocks:ruler'}
|
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"plant_blocks:scissors", "plant_blocks:scissors"},
|
|
|
|
{"plant_blocks:ruler", "plant_blocks:ruler"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--[[*******************************************************************]]
|
|
|
|
|
2024-01-07 16:07:17 +03:00
|
|
|
--plant_blocks:industrial_floor
|
|
|
|
minetest.register_node("plant_blocks:floor", {
|
|
|
|
description = S("Industrial floor"),
|
|
|
|
tiles = {
|
|
|
|
"floor_up.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky=3, stone=1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:floor',
|
|
|
|
recipe = {
|
|
|
|
{'basic_materials:cement_block','plant_blocks:brush', 'dye:grey'},
|
|
|
|
},
|
|
|
|
replacements = {{"plant_blocks:brush", "plant_blocks:brush"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:yellow_black_floor
|
|
|
|
minetest.register_node("plant_blocks:yellow_black_floor", {
|
|
|
|
description = S("Industrial black and yellow floor"),
|
|
|
|
tiles = {
|
|
|
|
"yellow_black_up.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky=3, stone=1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:yellow_black_floor',
|
|
|
|
recipe = {
|
|
|
|
{'dye:black','dye:yellow', ''},
|
|
|
|
{'basic_materials:cement_block', 'plant_blocks:brush', ''},
|
|
|
|
{'', '', ''},
|
|
|
|
},
|
|
|
|
replacements = {{"plant_blocks:brush", "plant_blocks:brush"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:yellow_black_line_floor
|
|
|
|
minetest.register_node("plant_blocks:yellow_black_line_floor", {
|
|
|
|
description = S("Industrial with black and yellow line floor"),
|
|
|
|
paramtype2 = "facedir",
|
2024-01-11 15:02:17 +03:00
|
|
|
--place_param2 = 0,
|
2024-01-07 16:07:17 +03:00
|
|
|
tiles = {
|
|
|
|
"floor_up.png^[combine:32x32:0,0=yellow_black_line_up.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky=3, stone=1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:yellow_black_line_floor',
|
|
|
|
recipe = {
|
|
|
|
{'dye:black','dye:yellow', 'plant_blocks:ruler'},
|
|
|
|
{'plant_blocks:floor', 'plant_blocks:brush', ''},
|
|
|
|
{'', '', ''},
|
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"plant_blocks:brush", "plant_blocks:brush"},
|
|
|
|
{"plant_blocks:ruler", "plant_blocks:ruler"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:yellow_black_line_corner_floor
|
|
|
|
minetest.register_node("plant_blocks:yellow_black_line_corner_floor", {
|
|
|
|
description = S("Industrial floor with black and yellow corner line"),
|
|
|
|
paramtype2 = "facedir",
|
2024-01-11 15:02:17 +03:00
|
|
|
--place_param2 = 0,
|
2024-01-07 16:07:17 +03:00
|
|
|
tiles = {
|
|
|
|
"floor_up.png^yellow_black_line_corner_up.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky=3, stone=1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:yellow_black_line_corner_floor',
|
|
|
|
recipe = {
|
|
|
|
{'dye:black','dye:yellow', 'plant_blocks:ruler'},
|
|
|
|
{'plant_blocks:floor', 'plant_blocks:brush', 'plant_blocks:ruler'},
|
|
|
|
{'', '', ''},
|
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"plant_blocks:brush", "plant_blocks:brush"},
|
|
|
|
{"plant_blocks:ruler", "plant_blocks:ruler"},
|
|
|
|
{"plant_blocks:ruler", "plant_blocks:ruler"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:industrial_forklift_sign_floor
|
|
|
|
minetest.register_node("plant_blocks:forklift_floor_sign", {
|
|
|
|
description = S("Industrial forklift floor sign"),
|
|
|
|
paramtype2 = "facedir",
|
2024-01-11 15:02:17 +03:00
|
|
|
--place_param2 = 0,
|
2024-01-07 16:07:17 +03:00
|
|
|
tiles = {
|
|
|
|
"floor_up.png^forklift_sign_up.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky=3, stone=1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:forklift_floor_sign',
|
|
|
|
recipe = {
|
2024-01-11 15:02:17 +03:00
|
|
|
{'dye:black','plant_blocks:triangular_stencil', 'dye:yellow'},
|
|
|
|
{'', 'plant_blocks:floor', ''},
|
|
|
|
{'plant_blocks:brush', '', ''},
|
2024-01-07 16:07:17 +03:00
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"plant_blocks:brush", "plant_blocks:brush"},
|
2024-01-11 15:02:17 +03:00
|
|
|
{"plant_blocks:triangular_stencil", "plant_blocks:triangular_stencil"},
|
2024-01-07 16:07:17 +03:00
|
|
|
}
|
|
|
|
})
|
2024-01-11 15:02:17 +03:00
|
|
|
|
|
|
|
--plant_blocks:wall_sign_attention_forklift_operating Настенный знак внимание работает автопогрузчик
|
|
|
|
minetest.register_node("plant_blocks:wall_sign_attention_forklift_operating", {
|
|
|
|
description = S("Wall sign attention to forklift operating"),
|
|
|
|
drawtype = "mesh",
|
|
|
|
-- Holds the texture for each "material"
|
|
|
|
tiles = {
|
|
|
|
"sign_attention_to_forklift_operating.png"
|
|
|
|
},
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
--place_param2 = 0,
|
|
|
|
-- Path to the mesh
|
|
|
|
mesh = "triangular_sign.obj",
|
|
|
|
paramtype = "light",
|
|
|
|
bounding_boxes = {{0.4375, -0.5, -0.5, 0.5, 0.5, 0.5}},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "wallmounted",
|
|
|
|
|
|
|
|
-- Ceiling
|
|
|
|
wall_top = {
|
|
|
|
{-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
|
|
|
|
-- Floor
|
|
|
|
wall_bottom = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5},
|
|
|
|
},
|
|
|
|
|
|
|
|
-- Wall
|
|
|
|
wall_side = {
|
|
|
|
{-0.5, -0.3125, -0.4375, -0.4375, 0.3125, 0.4375}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
collision_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {crumbly=3},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:wall_sign_attention_forklift_operating',
|
|
|
|
recipe = {
|
|
|
|
{'dye:black','plant_blocks:triangular_stencil', 'dye:yellow'},
|
|
|
|
{'plant_blocks:brush', 'basic_materials:plastic_sheet', 'plant_blocks:scissors'},
|
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"plant_blocks:brush", "plant_blocks:brush"},
|
|
|
|
{"plant_blocks:triangular_stencil", "plant_blocks:triangular_stencil"},
|
|
|
|
{"plant_blocks:scissors", "plant_blocks:scissors"},
|
|
|
|
}
|
2024-01-17 15:00:48 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:yellow_line_floor
|
|
|
|
minetest.register_node("plant_blocks:yellow_line_floor", {
|
|
|
|
description = S("Industrial with yellow line floor"),
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
--place_param2 = 0,
|
|
|
|
tiles = {
|
|
|
|
"floor_up.png^[combine:32x32:0,0=yellow_line_up.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky=3, stone=1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:yellow_line_floor',
|
|
|
|
recipe = {
|
|
|
|
{'','dye:yellow', 'plant_blocks:ruler'},
|
|
|
|
{'plant_blocks:floor', 'plant_blocks:brush', ''},
|
|
|
|
{'', '', ''},
|
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"plant_blocks:brush", "plant_blocks:brush"},
|
|
|
|
{"plant_blocks:ruler", "plant_blocks:ruler"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:yellow_line_corner_floor
|
|
|
|
minetest.register_node("plant_blocks:yellow_line_corner_floor", {
|
|
|
|
description = S("Industrial floor with yellow corner line"),
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
--place_param2 = 0,
|
|
|
|
tiles = {
|
|
|
|
"floor_up.png^yellow_line_corner_up.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
"basic_materials_cement_block.png",
|
|
|
|
},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {cracky=3, stone=1},
|
|
|
|
sounds = default.node_sound_stone_defaults(),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:yellow_line_corner_floor',
|
|
|
|
recipe = {
|
|
|
|
{'','dye:yellow', 'plant_blocks:ruler'},
|
|
|
|
{'plant_blocks:floor', 'plant_blocks:brush', 'plant_blocks:ruler'},
|
|
|
|
{'', '', ''},
|
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"plant_blocks:brush", "plant_blocks:brush"},
|
|
|
|
{"plant_blocks:ruler", "plant_blocks:ruler"},
|
|
|
|
{"plant_blocks:ruler", "plant_blocks:ruler"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:e07
|
|
|
|
minetest.register_node("plant_blocks:e07", {
|
|
|
|
description = S("Direction to the emergency exit down right"),
|
|
|
|
inventory_image = "plant_blocks_e07.png",
|
|
|
|
tiles = {
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"[combine:64x60:0,0=plant_blocks_e07.png"
|
|
|
|
},
|
|
|
|
drawtype = "nodebox",
|
|
|
|
--drawtype = "signlike",
|
|
|
|
--paramtype = "fencelike",
|
|
|
|
legacy_facedir_simple = false,
|
|
|
|
--paramtype2 = "4dir",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
--paramtype2 = "wallmounted",
|
|
|
|
--paramtype2 = "leveled",
|
|
|
|
--sunlight_propagates = true,
|
|
|
|
--walkable = true,
|
|
|
|
node_box = {
|
|
|
|
--type = "connected",
|
|
|
|
type = "fixed",
|
|
|
|
--type = "wallmounted",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0, 0.46, 0.5, 0.5, 0.5},
|
|
|
|
--{-0.5, -0.3, -0.0625, 0.5, 0.3, 0}, --center
|
|
|
|
},
|
|
|
|
--wall_bottom = {{-0.0625, -0.5, 0, 0.0625, 0.3125, 0.125}},
|
|
|
|
--connect_bottom = {{-0.0625, -0.5, 0, 0.0625, 0.3125, 0.125},},
|
|
|
|
},
|
|
|
|
--[[selection_box = {
|
|
|
|
type = "connected",
|
|
|
|
connect_bottom = {{-0.0625, -0.5, 0, 0.0625, 0.3125, 0.125},},
|
|
|
|
fixed = {}
|
|
|
|
},]]
|
|
|
|
--connects_to = {"group:wood", "group:tree",'group:cracky'},
|
|
|
|
--selection_box = {type = "wallmounted"},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {crumbly=3},
|
|
|
|
--connect_sides={'back'},
|
|
|
|
--on_rotate = false,
|
|
|
|
--on_place = minetest.rotate_node,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:e07',
|
|
|
|
recipe = {
|
|
|
|
{'dye:green','plant_blocks:ruler', ''},
|
|
|
|
{'default:sign_wall_wood', 'plant_blocks:brush', ''},
|
|
|
|
{'', '', ''},
|
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"plant_blocks:brush", "plant_blocks:brush"},
|
|
|
|
{"plant_blocks:ruler", "plant_blocks:ruler"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
--plant_blocks:e05
|
|
|
|
minetest.register_node("plant_blocks:e05", {
|
|
|
|
description = S("Direction to the emergency exit to the right up"),
|
|
|
|
inventory_image = "plant_blocks_e05.png",
|
|
|
|
tiles = {
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"bg_green_sign.png",
|
|
|
|
"[combine:64x60:0,0=plant_blocks_e05.png" --^[transform4
|
|
|
|
},
|
|
|
|
drawtype = "nodebox",
|
|
|
|
legacy_facedir_simple = false,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0, 0.46, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {crumbly=3},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'plant_blocks:e05',
|
|
|
|
recipe = {
|
|
|
|
{'dye:green','plant_blocks:ruler', 'plant_blocks:brush'},
|
|
|
|
{'default:sign_wall_wood', '', ''},
|
|
|
|
{'', '', ''},
|
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"plant_blocks:brush", "plant_blocks:brush"},
|
|
|
|
{"plant_blocks:ruler", "plant_blocks:ruler"},
|
|
|
|
}
|
2024-01-11 15:02:17 +03:00
|
|
|
})
|