2019-03-08 00:00:09 +01:00
local S = minetest.get_translator ( " mcl_flowerpots " )
2017-02-10 21:13:22 +01:00
2017-11-18 04:44:23 +01:00
local flowers = {
2019-03-08 00:00:09 +01:00
{ " dandelion " , " mcl_flowers:dandelion " , S ( " Dandelion Flower Pot " ) } ,
2019-03-15 06:12:03 +01:00
{ " poppy " , " mcl_flowers:poppy " , S ( " Poppy Flower Pot " ) } ,
2019-03-08 00:00:09 +01:00
{ " blue_orchid " , " mcl_flowers:blue_orchid " , S ( " Blue Orchid Flower Pot " ) } ,
{ " allium " , " mcl_flowers:allium " , S ( " Allium Flower Pot " ) } ,
{ " azure_bluet " , " mcl_flowers:azure_bluet " , S ( " Azure Bluet Flower Pot " ) } ,
{ " tulip_red " , " mcl_flowers:tulip_red " , S ( " Red Tulip Flower Pot " ) } ,
{ " tulip_pink " , " mcl_flowers:tulip_pink " , S ( " Pink Tulip Flower Pot " ) } ,
{ " tulip_white " , " mcl_flowers:tulip_white " , S ( " White Tulip Flower Pot " ) } ,
{ " tulip_orange " , " mcl_flowers:tulip_orange " , S ( " Orange Tulip Flower Pot " ) } ,
{ " oxeye_daisy " , " mcl_flowers:oxeye_daisy " , S ( " Oxeye Daisy Flower Pot " ) } ,
{ " mushroom_brown " , " mcl_mushrooms:mushroom_brown " , S ( " Brown Mushroom Flower Pot " ) } ,
{ " mushroom_red " , " mcl_mushrooms:mushroom_red " , S ( " Red Mushroom Flower Pot " ) } ,
{ " sapling " , " mcl_core:sapling " , S ( " Oak Sapling Flower Pot " ) } ,
{ " acaciasapling " , " mcl_core:acaciasapling " , S ( " Acacia Sapling Flower Pot " ) } ,
{ " junglesapling " , " mcl_core:junglesapling " , S ( " Jungle Sapling Flower Pot " ) } ,
{ " darksapling " , " mcl_core:darksapling " , S ( " Dark Oak Sapling Flower Pot " ) } ,
{ " sprucesapling " , " mcl_core:sprucesapling " , S ( " Spruce Sapling Flower Pot " ) } ,
{ " birchsapling " , " mcl_core:birchsapling " , S ( " Birch Sapling Flower Pot " ) } ,
{ " deadbush " , " mcl_core:deadbush " , S ( " Dead Bush Flower Pot " ) } ,
{ " fern " , " mcl_flowers:fern " , S ( " Fern Flower Pot " ) , { " mcl_flowers_fern_inv.png " } } ,
2017-11-18 04:44:23 +01:00
}
local cubes = {
2019-03-15 06:12:03 +01:00
{ " cactus " , " mcl_core:cactus " , S ( " Cactus Flower Pot " ) } ,
2017-11-18 04:44:23 +01:00
}
minetest.register_node ( " mcl_flowerpots:flower_pot " , {
2019-03-08 00:00:09 +01:00
description = S ( " Flower Pot " ) ,
2020-03-12 01:35:11 +01:00
_tt_help = S ( " Can hold a small flower or plant " ) ,
2019-03-09 17:01:36 +01:00
_doc_items_longdesc = S ( " Flower pots are decorative blocks in which flowers and other small plants can be placed. " ) ,
2019-03-15 06:12:03 +01:00
_doc_items_usagehelp = S ( " Just place a plant on the flower pot. Flower pots can hold small flowers (not higher than 1 block), saplings, ferns, dead bushes, mushrooms and cacti. Rightclick a potted plant to retrieve the plant. " ) ,
2017-11-18 04:44:23 +01:00
drawtype = " mesh " ,
mesh = " flowerpot.obj " ,
tiles = {
" mcl_flowerpots_flowerpot.png " ,
} ,
visual_scale = 0.5 ,
wield_image = " mcl_flowerpots_flowerpot_inventory.png " ,
wield_scale = { x = 1.0 , y = 1.0 , z = 1.0 } ,
paramtype = " light " ,
sunlight_propagates = true ,
selection_box = {
type = " fixed " ,
fixed = { - 0.2 , - 0.5 , - 0.2 , 0.2 , - 0.1 , 0.2 }
} ,
collision_box = {
type = " fixed " ,
fixed = { - 0.2 , - 0.5 , - 0.2 , 0.2 , - 0.1 , 0.2 }
} ,
is_ground_content = false ,
inventory_image = " mcl_flowerpots_flowerpot_inventory.png " ,
groups = { dig_immediate = 3 , deco_block = 1 , attached_node = 1 , dig_by_piston = 1 , flower_pot = 1 } ,
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
on_rightclick = function ( pos , node , clicker , itemstack )
2019-02-08 21:59:01 +01:00
local name = clicker : get_player_name ( )
if minetest.is_protected ( pos , name ) then
minetest.record_protection_violation ( pos , name )
return
end
2017-11-18 04:44:23 +01:00
local item = clicker : get_wielded_item ( ) : get_name ( )
for _ , row in ipairs ( flowers ) do
local flower = row [ 1 ]
local flower_node = row [ 2 ]
if item == flower_node then
minetest.swap_node ( pos , { name = " mcl_flowerpots:flower_pot_ " .. flower } )
2020-07-10 16:08:40 +02:00
if not minetest.is_creative_enabled ( clicker : get_player_name ( ) ) then
2017-11-18 04:44:23 +01:00
itemstack : take_item ( )
end
end
end
for _ , row in ipairs ( cubes ) do
local flower = row [ 1 ]
local flower_node = row [ 2 ]
if item == flower_node then
minetest.swap_node ( pos , { name = " mcl_flowerpots:flower_pot_ " .. flower } )
2020-07-10 16:08:40 +02:00
if not minetest.is_creative_enabled ( clicker : get_player_name ( ) ) then
2017-11-18 04:44:23 +01:00
itemstack : take_item ( )
end
end
end
end ,
} )
minetest.register_craft ( {
output = ' mcl_flowerpots:flower_pot ' ,
recipe = {
{ ' mcl_core:brick ' , ' ' , ' mcl_core:brick ' } ,
{ ' ' , ' mcl_core:brick ' , ' ' } ,
{ ' ' , ' ' , ' ' } ,
}
} )
for _ , row in ipairs ( flowers ) do
local flower = row [ 1 ]
local flower_node = row [ 2 ]
local desc = row [ 3 ]
2017-11-18 04:47:16 +01:00
local texture
if row [ 4 ] then
texture = row [ 4 ]
else
texture = minetest.registered_nodes [ flower_node ] [ " tiles " ]
end
2017-11-18 04:44:23 +01:00
minetest.register_node ( " mcl_flowerpots:flower_pot_ " .. flower , {
description = desc ,
_doc_items_create_entry = false ,
drawtype = " mesh " ,
mesh = " flowerpot.obj " ,
tiles = {
" [combine:32x32:0,0=mcl_flowerpots_flowerpot.png:0,0= " .. texture [ 1 ] ,
} ,
visual_scale = 0.5 ,
wield_scale = { x = 1.0 , y = 1.0 , z = 1.0 } ,
paramtype = " light " ,
sunlight_propagates = true ,
selection_box = {
type = " fixed " ,
fixed = { - 0.2 , - 0.5 , - 0.2 , 0.2 , - 0.1 , 0.2 }
} ,
collision_box = {
type = " fixed " ,
fixed = { - 0.2 , - 0.5 , - 0.2 , 0.2 , - 0.1 , 0.2 }
} ,
is_ground_content = false ,
groups = { dig_immediate = 3 , attached_node = 1 , dig_by_piston = 1 , not_in_creative_inventory = 1 , flower_pot = 2 } ,
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
on_rightclick = function ( pos , item , clicker )
2019-02-08 21:59:01 +01:00
local name = clicker : get_player_name ( )
if minetest.is_protected ( pos , name ) then
minetest.record_protection_violation ( pos , name )
return
end
2017-11-18 04:44:23 +01:00
minetest.add_item ( { x = pos.x , y = pos.y + 0.5 , z = pos.z } , flower_node )
minetest.set_node ( pos , { name = " mcl_flowerpots:flower_pot " } )
end ,
drop = {
items = {
{ items = { " mcl_flowerpots:flower_pot " , flower_node } }
}
} ,
} )
-- Add entry alias for the Help
if minetest.get_modpath ( " doc " ) then
doc.add_entry_alias ( " nodes " , " mcl_flowerpots:flower_pot " , " nodes " , " mcl_flowerpots:flower_pot_ " .. flower )
end
end
for _ , row in ipairs ( cubes ) do
local flower = row [ 1 ]
local flower_node = row [ 2 ]
local desc = row [ 3 ]
minetest.register_node ( " mcl_flowerpots:flower_pot_ " .. flower , {
description = desc ,
_doc_items_create_entry = false ,
drawtype = " mesh " ,
mesh = " flowerpot_with_long_cube.obj " ,
tiles = {
" mcl_flowerpots_ " .. flower .. " .png " ,
} ,
visual_scale = 0.5 ,
wield_scale = { x = 1.0 , y = 1.0 , z = 1.0 } ,
paramtype = " light " ,
sunlight_propagates = true ,
selection_box = {
type = " fixed " ,
fixed = { - 0.2 , - 0.5 , - 0.2 , 0.2 , - 0.1 , 0.2 }
} ,
collision_box = {
type = " fixed " ,
fixed = { - 0.2 , - 0.5 , - 0.2 , 0.2 , - 0.1 , 0.2 }
} ,
is_ground_content = false ,
groups = { dig_immediate = 3 , attached_node = 1 , dig_by_piston = 1 , not_in_creative_inventory = 1 , flower_pot = 2 } ,
sounds = mcl_sounds.node_sound_stone_defaults ( ) ,
on_rightclick = function ( pos , item , clicker )
2019-02-08 21:59:01 +01:00
local name = " "
if clicker : is_player ( ) then
name = clicker : get_player_name ( )
end
if minetest.is_protected ( pos , name ) then
minetest.record_protection_violation ( pos , name )
return
end
2017-11-18 04:44:23 +01:00
minetest.add_item ( { x = pos.x , y = pos.y + 0.5 , z = pos.z } , flower_node )
minetest.set_node ( pos , { name = " mcl_flowerpots:flower_pot " } )
end ,
drop = {
items = {
{ items = { " mcl_flowerpots:flower_pot " , flower_node } }
}
} ,
} )
-- Add entry alias for the Help
if minetest.get_modpath ( " doc " ) then
doc.add_entry_alias ( " nodes " , " mcl_flowerpots:flower_pot " , " nodes " , " mcl_flowerpots:flower_pot_ " .. flower )
end
end