farming/cocoa.lua

172 lines
3.8 KiB
Lua
Raw Normal View History

2014-11-09 20:06:28 +01:00
2016-03-10 18:45:55 +01:00
-- place cocoa
2014-11-09 20:06:28 +01:00
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
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
-- check if pointing at jungletree
2015-04-09 10:56:10 +02:00
if under.name ~= "default:jungletree" then
2014-11-09 20:06:28 +01:00
return
end
2016-03-10 18:45:55 +01:00
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-01 12:05:18 +02:00
minetest.sound_play("default_place_node", {gain = 1.0})
2014-11-09 20:06:28 +01:00
if not minetest.setting_getbool("creative_mode") 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",
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
2014-11-09 20:06:28 +01:00
minetest.register_craftitem("farming:cocoa_beans", {
description = "Cocoa Beans",
inventory_image = "farming_cocoa_beans.png",
on_place = function(itemstack, placer, pointed_thing)
return place_cocoa(itemstack, placer, pointed_thing, "farming:cocoa_1")
end,
})
minetest.register_craft( {
output = "dye:brown 2",
recipe = {
{ "farming:cocoa_beans" },
}
})
2016-03-10 18:45:55 +01:00
-- chocolate cookie
2014-11-09 20:06:28 +01:00
minetest.register_craftitem("farming:cookie", {
description = "Cookie",
inventory_image = "farming_cookie.png",
on_use = minetest.item_eat(2),
})
minetest.register_craft( {
output = "farming:cookie 8",
recipe = {
{ "farming:wheat", "farming:cocoa_beans", "farming:wheat" },
}
})
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", {
description = "Bar of Dark Chocolate",
inventory_image = "farming_chocolate_dark.png",
on_use = minetest.item_eat(3),
})
minetest.register_craft( {
output = "farming:chocolate_dark",
recipe = {
{ "farming:cocoa_beans", "farming:cocoa_beans", "farming:cocoa_beans" },
}
})
2016-03-10 18:45:55 +01:00
-- cocoa definition
local crop_def = {
2014-11-09 20:06:28 +01:00
drawtype = "plantlike",
tiles = {"farming_cocoa_1.png"},
paramtype = "light",
walkable = true,
drop = {
items = {
2015-07-05 11:54:18 +02:00
{items = {'farming:cocoa_beans 1'}, rarity = 2},
2014-11-09 20:06:28 +01:00
}
},
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}
},
groups = {
snappy = 3, flammable = 2, plant = 1, growing = 1,
2015-07-17 11:35:13 +02:00
not_in_creative_inventory=1, leafdecay = 1, leafdecay_drop = 1
2015-07-05 11:54:18 +02:00
},
2016-03-10 18:45:55 +01:00
sounds = default.node_sound_leaves_defaults()
}
2014-11-09 20:06:28 +01:00
2016-03-10 18:45:55 +01:00
-- stage 1
minetest.register_node("farming:cocoa_1", table.copy(crop_def))
2014-11-09 20:06:28 +01:00
2016-03-10 18:45:55 +01:00
-- stage2
crop_def.tiles = {"farming_cocoa_2.png"}
crop_def.drop = {
items = {
{items = {'farming:cocoa_beans 1'}, rarity = 1},
}
}
minetest.register_node("farming:cocoa_2", table.copy(crop_def))
-- stage 3 (final)
crop_def.tiles = {"farming_cocoa_3.png"}
crop_def.groups.growing = 0
crop_def.drop = {
items = {
{items = {'farming:cocoa_beans 2'}, rarity = 1},
{items = {'farming:cocoa_beans 1'}, rarity = 2},
}
}
minetest.register_node("farming:cocoa_3", table.copy(crop_def))
2014-11-09 20:06:28 +01:00
2016-03-10 18:45:55 +01:00
-- add random cocoa pods to jungle tree trunks
2014-11-09 20:06:28 +01:00
minetest.register_abm({
nodenames = {"default:jungletree"},
neighbors = {"default:jungleleaves", "moretrees:jungletree_leaves_green"},
2016-03-10 18:45:55 +01:00
interval = 8,
chance = 80,
catch_up = false,
2014-11-09 20:06:28 +01:00
action = function(pos, node)
2016-03-10 18:45:55 +01:00
local dir = math.random(1, 50)
2014-11-09 20:06:28 +01:00
2016-03-10 18:45:55 +01: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
2014-11-09 20:06:28 +01:00
else return
end
2015-07-05 11:54:18 +02:00
2016-03-10 18:45:55 +01:00
local nodename = minetest.get_node(pos).name
if nodename == "air"
2015-07-05 11:54:18 +02:00
and minetest.get_node_light(pos) > 12 then
2016-03-10 18:45:55 +01:00
--print ("Cocoa Pod added at " .. minetest.pos_to_string(pos))
2015-07-05 11:54:18 +02:00
minetest.set_node(pos, {
2016-03-10 18:45:55 +01:00
name = "farming:cocoa_" .. tostring(math.random(1, 3))
2015-07-05 11:54:18 +02:00
})
2014-11-09 20:06:28 +01:00
end
end,
2016-03-10 18:45:55 +01:00
})