2014-11-09 20:06:28 +01:00
|
|
|
|
2024-08-11 16:38:55 +02:00
|
|
|
local S = minetest.get_translator("farming")
|
2016-05-30 13:30:00 +02:00
|
|
|
|
2016-03-10 18:45:55 +01:00
|
|
|
-- place cocoa
|
2017-12-27 11:17:11 +01:00
|
|
|
local function place_cocoa(itemstack, placer, pointed_thing, plantname)
|
2016-03-10 18:45:55 +01:00
|
|
|
|
2014-11-09 20:06:28 +01:00
|
|
|
local pt = pointed_thing
|
|
|
|
|
|
|
|
-- check if pointing at a node
|
2024-08-11 16:38:55 +02:00
|
|
|
if not pt or pt.type ~= "node" then return end
|
2016-12-16 14:41:55 +01:00
|
|
|
|
2014-11-09 20:06:28 +01:00
|
|
|
local under = minetest.get_node(pt.under)
|
2016-12-16 14:41:55 +01:00
|
|
|
|
2016-03-10 18:45:55 +01:00
|
|
|
-- return if any of the nodes are not registered
|
2024-08-11 16:38:55 +02:00
|
|
|
if not minetest.registered_nodes[under.name] then return end
|
2014-11-09 20:06:28 +01:00
|
|
|
|
2016-12-16 14:41:55 +01:00
|
|
|
-- am I right-clicking on something that has a custom on_place set?
|
|
|
|
-- thanks to Krock for helping with this issue :)
|
|
|
|
local def = minetest.registered_nodes[under.name]
|
2024-08-11 16:38:55 +02:00
|
|
|
|
2019-10-02 20:13:55 +02:00
|
|
|
if placer and itemstack and def and def.on_rightclick then
|
2021-11-16 21:22:43 +01:00
|
|
|
return def.on_rightclick(pt.under, under, placer, itemstack, pt)
|
2016-12-16 14:41:55 +01:00
|
|
|
end
|
|
|
|
|
2014-11-09 20:06:28 +01:00
|
|
|
-- check if pointing at jungletree
|
2023-08-31 08:53:19 +02:00
|
|
|
if (under.name ~= "default:jungletree" and under.name ~= "mcl_core:jungletree")
|
2016-04-26 15:36:44 +02:00
|
|
|
or minetest.get_node(pt.above).name ~= "air" then
|
2014-11-09 20:06:28 +01:00
|
|
|
return
|
|
|
|
end
|
2016-03-10 18:45:55 +01:00
|
|
|
|
2018-06-19 19:36:00 +02:00
|
|
|
-- is player planting crop?
|
2018-06-19 19:42:13 +02:00
|
|
|
local name = placer and placer:get_player_name() or ""
|
2018-06-19 19:36:00 +02:00
|
|
|
|
2018-05-31 19:13:05 +02:00
|
|
|
-- check for protection
|
2024-08-11 16:38:55 +02:00
|
|
|
if minetest.is_protected(pt.above, name) then return end
|
2018-05-31 19:13:05 +02:00
|
|
|
|
2014-11-09 20:06:28 +01:00
|
|
|
-- add the node and remove 1 item from the itemstack
|
2015-09-16 15:52:10 +02:00
|
|
|
minetest.set_node(pt.above, {name = plantname})
|
2016-03-10 18:45:55 +01:00
|
|
|
|
2024-08-11 16:38:55 +02:00
|
|
|
minetest.sound_play("default_place_node", {pos = pt.above, gain = 1.0}, true)
|
2016-04-01 12:05:18 +02:00
|
|
|
|
2018-06-19 19:36:00 +02:00
|
|
|
if placer and not farming.is_creative(placer:get_player_name()) then
|
2016-03-10 18:45:55 +01:00
|
|
|
|
2014-11-09 20:06:28 +01:00
|
|
|
itemstack:take_item()
|
2016-03-10 18:45:55 +01:00
|
|
|
|
2015-08-29 10:27:01 +02:00
|
|
|
-- check for refill
|
|
|
|
if itemstack:get_count() == 0 then
|
2016-03-10 18:45:55 +01:00
|
|
|
|
2024-08-11 16:38:55 +02:00
|
|
|
minetest.after(0.20, farming.refill_plant, placer,
|
|
|
|
"farming:cocoa_beans_raw", placer:get_wield_index())
|
2016-03-10 18:45:55 +01:00
|
|
|
end
|
2014-11-09 20:06:28 +01:00
|
|
|
end
|
2016-03-10 18:45:55 +01:00
|
|
|
|
2014-11-09 20:06:28 +01:00
|
|
|
return itemstack
|
|
|
|
end
|
|
|
|
|
2024-08-11 16:38:55 +02:00
|
|
|
-- item/seed
|
|
|
|
|
2021-12-04 15:06:18 +01:00
|
|
|
minetest.register_craftitem("farming:cocoa_beans_raw", {
|
|
|
|
description = S("Raw Cocoa Beans"),
|
|
|
|
inventory_image = "farming_cocoa_beans.png^[brighten",
|
2023-09-01 11:04:33 +02:00
|
|
|
groups = {compostability = 48, seed = 1, flammable = 2},
|
2024-08-11 16:38:55 +02:00
|
|
|
|
2014-11-09 20:06:28 +01:00
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
return place_cocoa(itemstack, placer, pointed_thing, "farming:cocoa_1")
|
2020-07-02 15:31:12 +02:00
|
|
|
end
|
2014-11-09 20:06:28 +01:00
|
|
|
})
|
|
|
|
|
2024-08-11 16:38:55 +02:00
|
|
|
-- crop definition
|
2019-06-19 12:37:39 +02:00
|
|
|
|
2020-07-02 15:31:12 +02:00
|
|
|
local def = {
|
2014-11-09 20:06:28 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"farming_cocoa_1.png"},
|
|
|
|
paramtype = "light",
|
2018-08-13 22:03:11 +02:00
|
|
|
walkable = false,
|
2015-07-05 11:54:18 +02:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.5, 0.3}
|
|
|
|
},
|
2021-07-18 15:39:26 +02:00
|
|
|
drop = {},
|
2015-07-05 11:54:18 +02:00
|
|
|
groups = {
|
2023-08-31 08:53:19 +02:00
|
|
|
handy = 1, snappy = 3, flammable = 2, plant = 1, growing = 1,
|
2020-07-02 15:31:12 +02:00
|
|
|
not_in_creative_inventory = 1, leafdecay = 1, leafdecay_drop = 1
|
2015-07-05 11:54:18 +02:00
|
|
|
},
|
2024-06-25 18:29:31 +02:00
|
|
|
_mcl_hardness = farming.mcl_hardness,
|
2024-02-29 18:06:28 +01:00
|
|
|
is_ground_content = false,
|
2024-08-11 09:47:26 +02:00
|
|
|
sounds = farming.node_sound_leaves_defaults(),
|
2024-06-20 12:21:41 +02:00
|
|
|
|
2024-08-11 16:38:55 +02:00
|
|
|
-- custom function that returns True when conditions are met
|
2018-06-17 10:55:26 +02:00
|
|
|
growth_check = function(pos, node_name)
|
2021-11-08 09:05:12 +01:00
|
|
|
|
2023-08-31 08:53:19 +02:00
|
|
|
if minetest.find_node_near(pos, 1,
|
|
|
|
{"default:jungletree", "mcl_core:jungletree"}) then
|
2023-09-06 09:11:07 +02:00
|
|
|
return true -- place next growth stage
|
2018-06-17 10:55:26 +02:00
|
|
|
end
|
2021-11-08 09:05:12 +01:00
|
|
|
|
2023-09-06 09:11:07 +02:00
|
|
|
return false -- condition not met, skip growth stage until next check
|
2020-07-02 15:31:12 +02:00
|
|
|
end
|
2016-03-10 18:45:55 +01:00
|
|
|
}
|
2014-11-09 20:06:28 +01:00
|
|
|
|
2016-03-10 18:45:55 +01:00
|
|
|
-- stage 1
|
2024-08-11 16:38:55 +02:00
|
|
|
|
2020-07-02 15:31:12 +02:00
|
|
|
minetest.register_node("farming:cocoa_1", table.copy(def))
|
2014-11-09 20:06:28 +01:00
|
|
|
|
2018-03-22 16:57:36 +01:00
|
|
|
-- stage 2
|
2024-08-11 16:38:55 +02:00
|
|
|
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_cocoa_2.png"}
|
|
|
|
minetest.register_node("farming:cocoa_2", table.copy(def))
|
2018-03-22 16:57:36 +01:00
|
|
|
|
|
|
|
-- stage3
|
2024-08-11 16:38:55 +02:00
|
|
|
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_cocoa_3.png"}
|
|
|
|
def.drop = {
|
2016-03-10 18:45:55 +01:00
|
|
|
items = {
|
2021-12-04 15:06:18 +01:00
|
|
|
{items = {"farming:cocoa_beans_raw 1"}, rarity = 1}
|
2016-03-10 18:45:55 +01:00
|
|
|
}
|
|
|
|
}
|
2020-07-02 15:31:12 +02:00
|
|
|
minetest.register_node("farming:cocoa_3", table.copy(def))
|
2016-03-10 18:45:55 +01:00
|
|
|
|
2018-03-22 16:57:36 +01:00
|
|
|
-- stage 4 (final)
|
2024-08-11 16:38:55 +02:00
|
|
|
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_cocoa_4.png"}
|
|
|
|
def.groups.growing = nil
|
|
|
|
def.growth_check = nil
|
|
|
|
def.drop = {
|
2016-03-10 18:45:55 +01:00
|
|
|
items = {
|
2021-12-04 15:06:18 +01:00
|
|
|
{items = {"farming:cocoa_beans_raw 2"}, rarity = 1},
|
|
|
|
{items = {"farming:cocoa_beans_raw 1"}, rarity = 2},
|
|
|
|
{items = {"farming:cocoa_beans_raw 1"}, rarity = 4}
|
2016-03-10 18:45:55 +01:00
|
|
|
}
|
|
|
|
}
|
2020-07-02 15:31:12 +02:00
|
|
|
minetest.register_node("farming:cocoa_4", table.copy(def))
|
2014-11-09 20:06:28 +01:00
|
|
|
|
2018-09-29 17:53:18 +02:00
|
|
|
-- add to registered_plants
|
2024-08-11 16:38:55 +02:00
|
|
|
|
2018-09-29 17:53:18 +02:00
|
|
|
farming.registered_plants["farming:cocoa_beans"] = {
|
2022-02-23 09:27:30 +01:00
|
|
|
trellis = "default:jungletree",
|
2018-09-29 17:53:18 +02:00
|
|
|
crop = "farming:cocoa",
|
2021-12-04 15:06:18 +01:00
|
|
|
seed = "farming:cocoa_beans_raw",
|
2020-12-09 11:22:41 +01:00
|
|
|
minlight = farming.min_light,
|
|
|
|
maxlight = farming.max_light,
|
2018-09-29 17:53:18 +02:00
|
|
|
steps = 4
|
|
|
|
}
|
|
|
|
|
2024-06-09 08:33:19 +02:00
|
|
|
-- register async mapgen script
|
2024-08-11 16:38:55 +02:00
|
|
|
|
2024-06-09 08:33:19 +02:00
|
|
|
if minetest.register_mapgen_script then
|
|
|
|
minetest.register_mapgen_script(farming.path .. "/crops/cocoa_mapgen.lua")
|
|
|
|
else
|
|
|
|
dofile(farming.path .. "/crops/cocoa_mapgen.lua")
|
|
|
|
end
|