Added floor with track lines, optimized display of signs in inventory
This commit is contained in:
parent
f75b48ce5a
commit
e874d4ee71
14
craft.lua
14
craft.lua
@ -188,3 +188,17 @@ minetest.register_craft({
|
||||
{'basic_materials:steel_strip','basic_materials:steel_strip', 'dye:yellow'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'plant_blocks:fl_arr_with_black_yellow_line',
|
||||
recipe = {
|
||||
{'plant_blocks:yellow_black_line_floor'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'plant_blocks:fl_arr_black_yellow_line_corner',
|
||||
recipe = {
|
||||
{'plant_blocks:yellow_black_line_corner_floor'},
|
||||
}
|
||||
})
|
2
init.lua
2
init.lua
@ -1,5 +1,5 @@
|
||||
plant_blocks = {}
|
||||
plant_blocks.version = '0.1'
|
||||
plant_blocks.version = '0.2'
|
||||
|
||||
dofile(minetest.get_modpath("plant_blocks") .. "/nodes.lua")
|
||||
dofile(minetest.get_modpath("plant_blocks") .. "/craft.lua")
|
||||
|
@ -16,3 +16,5 @@ Direction to the emergency exit to the right up=Направление к эва
|
||||
Direction to the emergency exit left up=Направление к эвакуационному выходу налево вверх
|
||||
Direction to the emergency exit left down=Направление к эвакуационному выходу налево вниз
|
||||
Industrial hood=Промышленная вытяжка
|
||||
Industrial floor arrow with black and yellow line=Стрелка промышленного пола с черно-желтой линией
|
||||
Industrial floor arrow with black and yellow corner line=Стрелка промышленного пола с черно-желтой угловой линией
|
40
nodes.lua
40
nodes.lua
@ -199,7 +199,7 @@ minetest.register_node("plant_blocks:yellow_line_corner_floor", {
|
||||
--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",
|
||||
inventory_image = "[combine:66x52:0,10=plant_blocks_e05.png",
|
||||
tiles = {
|
||||
"bg_green_sign.png",
|
||||
"bg_green_sign.png",
|
||||
@ -224,7 +224,7 @@ minetest.register_node("plant_blocks:e05", {
|
||||
--plant_blocks:e06
|
||||
minetest.register_node("plant_blocks:e06", {
|
||||
description = S("Direction to the emergency exit left up"),
|
||||
inventory_image = "plant_blocks_e05.png^[transform4",
|
||||
inventory_image = "[combine:66x52:0,10=plant_blocks_e05.png^[transform4",
|
||||
tiles = {
|
||||
"bg_green_sign.png",
|
||||
"bg_green_sign.png",
|
||||
@ -249,7 +249,7 @@ minetest.register_node("plant_blocks:e06", {
|
||||
--plant_blocks:e07
|
||||
minetest.register_node("plant_blocks:e07", {
|
||||
description = S("Direction to the emergency exit down right"),
|
||||
inventory_image = "plant_blocks_e07.png",
|
||||
inventory_image = "[combine:66x52:0,10=plant_blocks_e07.png",
|
||||
tiles = {
|
||||
"bg_green_sign.png",
|
||||
"bg_green_sign.png",
|
||||
@ -296,7 +296,7 @@ minetest.register_node("plant_blocks:e07", {
|
||||
--plant_blocks:e06
|
||||
minetest.register_node("plant_blocks:e08", {
|
||||
description = S("Direction to the emergency exit left down"),
|
||||
inventory_image = "plant_blocks_e07.png^[transform4",
|
||||
inventory_image = "[combine:66x52:0,10=plant_blocks_e07.png^[transform4",
|
||||
tiles = {
|
||||
"bg_green_sign.png",
|
||||
"bg_green_sign.png",
|
||||
@ -344,3 +344,35 @@ minetest.register_node("plant_blocks:hood", {
|
||||
groups = {cracky = 1, level = 2, concrete=1},
|
||||
sounds = default.node_sound_metal_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("plant_blocks:fl_arr_with_black_yellow_line", {
|
||||
description = S("Industrial floor arrow with black and yellow line"),
|
||||
tiles = {
|
||||
"floor_up.png^[combine:32x32:0,0=plant_blocks_arrow_black_and_yellow_line.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",
|
||||
},
|
||||
paramtype2 = "facedir",
|
||||
is_ground_content = false,
|
||||
groups = {cracky=3, stone=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("plant_blocks:fl_arr_black_yellow_line_corner", {
|
||||
description = S("Industrial floor arrow with black and yellow corner line"),
|
||||
paramtype2 = "facedir",
|
||||
tiles = {
|
||||
"floor_up.png^plant_blocks_arrow_black_and_yellow_line_corner.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(),
|
||||
})
|
BIN
textures/plant_blocks_arrow_black_and_yellow_line.png
Normal file
BIN
textures/plant_blocks_arrow_black_and_yellow_line.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 676 B |
BIN
textures/plant_blocks_arrow_black_and_yellow_line_corner.png
Normal file
BIN
textures/plant_blocks_arrow_black_and_yellow_line_corner.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 759 B |
Loading…
Reference in New Issue
Block a user