2017-03-13 22:36:34 +01:00
-- Seeds
minetest.register_craftitem ( " mcl_farming:melon_seeds " , {
description = " Melon Seeds " ,
_doc_items_longdesc = " Grows into a melon. Chickens like melon seeds. " ,
_doc_items_usagehelp = " Place the melon seeds on farmland (which can be created with a hoe) to plant a melon stem. Melons grow in sunlight and grow faster on hydrated farmland. Rightclick an animal to feed it melon seeds. " ,
stack_max = 64 ,
groups = { craftitem = 1 } ,
inventory_image = " farming_melon_seed.png " ,
on_place = function ( itemstack , placer , pointed_thing )
return mcl_farming : place_seed ( itemstack , placer , pointed_thing , " mcl_farming:melontige_1 " )
end ,
} )
-- Melon template (will be fed into mcl_farming.register_gourd
local melon_base_def = {
2015-06-29 19:55:56 +02:00
description = " Melon " ,
2017-03-14 05:46:57 +01:00
_doc_items_longdesc = " A melon is a block which can be grown from melon stems, which in turn are grown from melon seeds. It can be harvested for melon slices. " ,
2015-06-29 19:55:56 +02:00
stack_max = 64 ,
tiles = { " farming_melon_top.png " , " farming_melon_top.png " , " farming_melon_side.png " , " farming_melon_side.png " , " farming_melon_side.png " , " farming_melon_side.png " } ,
2017-03-29 22:58:31 +02:00
groups = { handy = 1 , axey = 1 , building_block = 1 , dig_by_piston = 1 } ,
2015-06-29 19:55:56 +02:00
drop = {
max_items = 1 ,
items = {
2017-01-31 12:35:59 +01:00
{ items = { ' mcl_farming:melon_item 7 ' } , rarity = 14 } ,
{ items = { ' mcl_farming:melon_item 6 ' } , rarity = 10 } ,
{ items = { ' mcl_farming:melon_item 5 ' } , rarity = 5 } ,
{ items = { ' mcl_farming:melon_item 4 ' } , rarity = 2 } ,
{ items = { ' mcl_farming:melon_item 3 ' } } ,
2015-06-29 19:55:56 +02:00
}
} ,
2017-02-19 21:27:31 +01:00
sounds = mcl_sounds.node_sound_wood_defaults ( ) ,
2017-02-22 16:03:59 +01:00
_mcl_blast_resistance = 5 ,
2017-02-27 01:26:07 +01:00
_mcl_hardness = 1 ,
2017-03-13 22:36:34 +01:00
}
2015-06-29 19:55:56 +02:00
2017-03-13 22:36:34 +01:00
-- Drop proabilities for melon stem
2017-03-14 04:17:35 +01:00
local stem_drop = {
2017-02-22 14:46:21 +01:00
max_items = 1 ,
-- FIXME: The probabilities are slightly off from the original.
-- Update this drop list when the Minetest drop probability system
-- is more powerful.
items = {
-- 1 seed: Approximation to 20/125 chance
-- 20/125 = 0.16
-- Approximation: 1/6 = ca. 0.166666666666667
{ items = { " mcl_farming:melon_seeds 1 " } , rarity = 6 } ,
-- 2 seeds: Approximation to 4/125 chance
-- 4/125 = 0.032
-- Approximation: 1/31 = ca. 0.032258064516129
{ items = { " mcl_farming:melon_seeds 2 " } , rarity = 31 } ,
-- 3 seeds: 1/125 chance
{ items = { " mcl_farming:melon_seeds 3 " } , rarity = 125 } ,
} ,
}
2017-03-13 22:36:34 +01:00
-- Growing unconnected stems
2017-03-14 05:46:57 +01:00
2017-03-14 02:37:42 +01:00
for s = 1 , 7 do
local h = s / 8
2017-03-14 05:46:57 +01:00
local doc = s == 1
local longdesc , entry_name
if doc then
entry_name = " Premature Melon Stem "
longdesc = " Melon stems grow on farmland in 8 stages. On hydrated farmland, the growth is a bit quicker. Mature melon stems are able to grow melons. "
end
2017-03-14 02:37:42 +01:00
minetest.register_node ( " mcl_farming:melontige_ " .. s , {
2017-03-14 05:46:57 +01:00
description = string.format ( " Premature Melon Stem (Stage %d) " , s ) ,
_doc_items_create_entry = doc ,
_doc_items_entry_name = entry_name ,
_doc_items_longdesc = longdesc ,
2017-03-14 02:37:42 +01:00
paramtype = " light " ,
walkable = false ,
drawtype = " plantlike " ,
sunlight_propagates = true ,
2017-03-14 04:17:35 +01:00
drop = stem_drop ,
2017-03-14 03:26:48 +01:00
tiles = { " mcl_farming_melontige_ " .. s .. " .png " } ,
2017-03-14 02:37:42 +01:00
selection_box = {
type = " fixed " ,
fixed = {
{ - 0.15 , - 0.5 , - 0.15 , 0.15 , - 0.5 + h , 0.15 }
} ,
2015-06-29 19:55:56 +02:00
} ,
2017-03-14 02:37:42 +01:00
groups = { dig_immediate = 3 , not_in_creative_inventory = 1 , attached_node = 1 , dig_by_water = 1 } ,
sounds = mcl_sounds.node_sound_leaves_defaults ( ) ,
_mcl_blast_resistance = 0 ,
} )
end
2015-06-29 19:55:56 +02:00
2017-03-13 22:36:34 +01:00
-- Full melon stem, able to spawn melons
2017-03-14 04:17:35 +01:00
local stem_def = {
2017-03-13 22:36:34 +01:00
description = " Mature Melon Stem " ,
2017-03-14 05:46:57 +01:00
_doc_items_create_entry = true ,
_doc_items_longdesc = " A mature melon stem attempts to grow a melon at one of its four adjacent blocks. A melon can only grow on top of farmland, dirt, or a grass block. When a melon is next to a melon stem, the melon stem immediately bends and connects to the melon. While connected, a melon stem can't grow another melon. As soon all melons around the stem have been removed, it loses the connection and is ready to grow another melon. " ,
2017-03-14 03:26:48 +01:00
tiles = { " mcl_farming_melontige_8.png " } ,
2017-03-14 04:17:35 +01:00
}
2015-06-29 19:55:56 +02:00
2017-03-13 22:36:34 +01:00
-- Register stem growth
2017-03-30 04:54:27 +02:00
mcl_farming : add_plant ( " mcl_farming:melontige_unconnect " , { " mcl_farming:melontige_1 " , " mcl_farming:melontige_2 " , " mcl_farming:melontige_3 " , " mcl_farming:melontige_4 " , " mcl_farming:melontige_5 " , " mcl_farming:melontige_6 " , " mcl_farming:melontige_7 " } , 30 , 5 )
2015-06-29 19:55:56 +02:00
2017-03-13 22:36:34 +01:00
-- Register actual melon, connected stems and stem-to-melon growth
2017-03-14 21:57:23 +01:00
mcl_farming : add_gourd ( " mcl_farming:melontige_unconnect " , " mcl_farming:melontige_linked " , " mcl_farming:melontige_unconnect " , stem_def , stem_drop , " mcl_farming:melon " , melon_base_def , 25 , 15 )
2015-06-29 19:55:56 +02:00
2017-03-13 22:36:34 +01:00
-- Items and crafting
2017-01-31 12:35:59 +01:00
minetest.register_craftitem ( " mcl_farming:melon_item " , {
2017-02-19 21:29:56 +01:00
-- Original name: “Melon”
description = " Melon Slice " ,
2017-03-18 17:18:12 +01:00
_doc_items_longdesc = " This is a food item which can be eaten for 2 hunger points. " ,
2015-06-29 19:55:56 +02:00
stack_max = 64 ,
inventory_image = " farming_melon.png " ,
2017-02-16 17:45:33 +01:00
on_place = minetest.item_eat ( 2 ) ,
on_secondary_use = minetest.item_eat ( 2 ) ,
2017-01-16 14:29:41 +01:00
groups = { food = 2 , eatable = 2 } ,
2015-06-29 19:55:56 +02:00
} )
minetest.register_craft ( {
2017-02-10 17:00:29 +01:00
output = " mcl_farming:melon_seeds " ,
2017-02-07 19:08:28 +01:00
recipe = { { " mcl_farming:melon_item " } }
2015-06-29 19:55:56 +02:00
} )
minetest.register_craft ( {
2017-01-31 12:35:59 +01:00
output = ' mcl_farming:melon ' ,
2015-06-29 19:55:56 +02:00
recipe = {
2017-01-31 12:35:59 +01:00
{ ' mcl_farming:melon_item ' , ' mcl_farming:melon_item ' , ' mcl_farming:melon_item ' } ,
{ ' mcl_farming:melon_item ' , ' mcl_farming:melon_item ' , ' mcl_farming:melon_item ' } ,
{ ' mcl_farming:melon_item ' , ' mcl_farming:melon_item ' , ' mcl_farming:melon_item ' } ,
2015-06-29 19:55:56 +02:00
}
2017-01-04 06:39:52 +01:00
} )
2017-01-07 04:55:58 +01:00
2017-03-21 04:56:16 +01:00
if minetest.get_modpath ( " doc " ) then
for i = 2 , 8 do
doc.add_entry_alias ( " nodes " , " mcl_farming:melontige_1 " , " nodes " , " mcl_farming:melontige_ " .. i )
end
end