farming/crops/cocoa.lua

256 lines
6.3 KiB
Lua
Raw Permalink Normal View History

2014-11-09 20:06:28 +01:00
2023-08-14 09:22:28 +02:00
local S = farming.translate
2023-09-01 11:04:33 +02:00
local a = farming.recipe_items
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
2016-03-10 18:45:55 +01:00
if not pt or pt.type ~= "node" then
2014-11-09 20:06:28 +01:00
return
end
2014-11-09 20:06:28 +01:00
local under = minetest.get_node(pt.under)
2016-03-10 18:45:55 +01:00
-- return if any of the nodes are not registered
2014-11-09 20:06:28 +01:00
if not minetest.registered_nodes[under.name] then
return
end
-- 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]
if placer and itemstack and def and def.on_rightclick then
return def.on_rightclick(pt.under, under, placer, itemstack, pt)
end
2014-11-09 20:06:28 +01:00
-- check if pointing at jungletree
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
2018-06-19 19:36:00 +02:00
if minetest.is_protected(pt.above, name) then
2018-05-31 19:13:05 +02:00
return
end
2014-11-09 20:06:28 +01:00
-- add the node and remove 1 item from the itemstack
minetest.set_node(pt.above, {name = plantname})
2016-03-10 18:45:55 +01:00
2016-04-02 14:42:14 +02:00
minetest.sound_play("default_place_node", {pos = pt.above, gain = 1.0})
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
-- check for refill
if itemstack:get_count() == 0 then
2016-03-10 18:45:55 +01: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
2016-03-10 18:45:55 +01:00
-- cocoa beans
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},
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
})
minetest.register_craftitem("farming:cocoa_beans", {
description = S("Cocoa Beans"),
inventory_image = "farming_cocoa_beans.png",
2023-09-01 11:04:33 +02:00
groups = {compostability = 65, food_cocoa = 1, flammable = 2}
})
minetest.register_craft({
type = "cooking",
cooktime = 5,
output = "farming:cocoa_beans",
recipe = "farming:cocoa_beans_raw"
})
2014-11-09 20:06:28 +01:00
minetest.register_craft( {
2023-09-01 11:04:33 +02:00
output = a.dye_brown,
2021-05-04 10:06:08 +02:00
recipe = {{"farming:cocoa_beans"}}
2014-11-09 20:06:28 +01:00
})
2016-03-10 18:45:55 +01:00
-- chocolate cookie
2014-11-09 20:06:28 +01:00
minetest.register_craftitem("farming:cookie", {
2016-05-30 13:30:00 +02:00
description = S("Cookie"),
2014-11-09 20:06:28 +01:00
inventory_image = "farming_cookie.png",
2020-07-02 15:31:12 +02:00
on_use = minetest.item_eat(2)
2014-11-09 20:06:28 +01:00
})
minetest.register_craft( {
output = "farming:cookie 8",
recipe = {
2020-07-02 15:31:12 +02:00
{"group:food_wheat", "group:food_cocoa", "group:food_wheat" }
2014-11-09 20:06:28 +01:00
}
})
2016-03-10 18:45:55 +01:00
-- bar of dark chocolate (thanks to Ice Pandora for her deviantart.com chocolate tutorial)
2014-11-09 20:06:28 +01:00
minetest.register_craftitem("farming:chocolate_dark", {
2016-05-30 13:30:00 +02:00
description = S("Bar of Dark Chocolate"),
2014-11-09 20:06:28 +01:00
inventory_image = "farming_chocolate_dark.png",
2020-07-02 15:31:12 +02:00
on_use = minetest.item_eat(3)
2014-11-09 20:06:28 +01:00
})
minetest.register_craft( {
output = "farming:chocolate_dark",
recipe = {
2020-07-02 15:31:12 +02:00
{"group:food_cocoa", "group:food_cocoa", "group:food_cocoa"}
2014-11-09 20:06:28 +01:00
}
})
2019-06-19 12:37:39 +02:00
-- chocolate block
minetest.register_node("farming:chocolate_block", {
description = S("Chocolate Block"),
tiles = {"farming_chocolate_block.png"},
is_ground_content = false,
groups = {cracky = 2, oddly_breakable_by_hand = 2},
sounds = farming.sounds.node_sound_stone_defaults()
2019-06-19 12:37:39 +02:00
})
minetest.register_craft({
2019-06-25 21:27:28 +02:00
output = "farming:chocolate_block",
2019-06-19 12:37:39 +02:00
recipe = {
{"farming:chocolate_dark", "farming:chocolate_dark", "farming:chocolate_dark"},
{"farming:chocolate_dark", "farming:chocolate_dark", "farming:chocolate_dark"},
2020-07-02 15:31:12 +02:00
{"farming:chocolate_dark", "farming:chocolate_dark", "farming:chocolate_dark"}
2019-06-19 12:37:39 +02:00
}
})
minetest.register_craft({
output = "farming:chocolate_dark 9",
2021-05-04 10:06:08 +02:00
recipe = {{"farming:chocolate_block"}}
2019-06-19 12:37:39 +02:00
})
2016-03-10 18:45:55 +01:00
-- cocoa definition
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 = {
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
},
is_ground_content = false,
sounds = farming.sounds.node_sound_leaves_defaults(),
growth_check = function(pos, node_name)
2021-11-08 09:05:12 +01:00
if minetest.find_node_near(pos, 1,
{"default:jungletree", "mcl_core:jungletree"}) then
return true -- place next growth stage
end
2021-11-08 09:05:12 +01: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
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
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
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 = {
{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)
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 = {
{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
-- add to registered_plants
farming.registered_plants["farming:cocoa_beans"] = {
trellis = "default:jungletree",
crop = "farming:cocoa",
seed = "farming:cocoa_beans_raw",
minlight = farming.min_light,
maxlight = farming.max_light,
steps = 4
}
-- localize math.random for speed
local random = math.random
-- add random cocoa pods to jungle tree's
minetest.register_on_generated(function(minp, maxp)
if maxp.y < 0 then
return
end
local pos, dir
local cocoa = minetest.find_nodes_in_area(minp, maxp,
{"default:jungletree", "mcl_core:jungletree"})
for n = 1, #cocoa do
pos = cocoa[n]
2015-07-05 11:54:18 +02:00
if minetest.find_node_near(pos, 1,
{"default:jungleleaves", "moretrees:jungletree_leaves_green",
"mcl_core:jungleleaves"}) then
2016-03-10 18:45:55 +01:00
dir = random(80)
2016-03-10 18:45:55 +01:00
2020-07-02 15:31:12 +02:00
if dir == 1 then pos.x = pos.x + 1
elseif dir == 2 then pos.x = pos.x - 1
elseif dir == 3 then pos.z = pos.z + 1
elseif dir == 4 then pos.z = pos.z -1
end
if dir < 5
and minetest.get_node(pos).name == "air"
and minetest.get_node_light(pos) > 12 then
2020-07-02 15:31:12 +02:00
--print ("Cocoa Pod added at " .. minetest.pos_to_string(pos))
minetest.swap_node(pos, {
name = "farming:cocoa_" .. tostring(random(4))
})
end
2014-11-09 20:06:28 +01:00
end
end
end)