ethereal/onion.lua

115 lines
3.2 KiB
Lua
Raw Normal View History

2014-11-09 11:17:41 -08:00
-- Wild Onion Plant
minetest.register_craftitem("ethereal:wild_onion_plant", {
description = "Wild Onion",
groups = {not_in_creative_inventory=1},
inventory_image = "wild_onion.png",
on_use = minetest.item_eat(2),
on_place = function(itemstack, placer, pointed_thing)
return farming.place_seed(itemstack, placer, pointed_thing, "ethereal:wild_onion_1")
end
})
-- Define Onion growth stages
2015-05-29 02:25:35 -07:00
local onion_def = {
2014-11-09 11:17:41 -08:00
drawtype = "plantlike",
tiles = {"ethereal_wild_onion_1.png"},
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
drop = {
items = {
2015-07-04 04:22:39 -07:00
{items = {"ethereal:wild_onion_plant"}, rarity = 1},
2015-05-30 04:31:05 -07:00
}
2014-11-09 11:17:41 -08:00
},
2015-07-04 04:22:39 -07:00
selection_box = {
type = "fixed",
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5}
},
groups = {
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
onion = 1, growing = 1, not_in_creative_inventory = 1
},
2014-11-09 11:17:41 -08:00
sounds = default.node_sound_leaves_defaults(),
2015-05-29 02:25:35 -07:00
}
minetest.register_node("ethereal:onion_1", table.copy(onion_def))
2014-11-09 11:17:41 -08:00
2015-05-29 02:25:35 -07:00
onion_def.tiles[1] = "ethereal_wild_onion_2.png"
onion_def.groups.onion = 2
minetest.register_node("ethereal:onion_2", table.copy(onion_def))
2014-11-09 11:17:41 -08:00
2015-05-29 02:25:35 -07:00
onion_def.tiles[1] = "ethereal_wild_onion_3.png"
onion_def.groups.onion = 3
onion_def.drop.items[2] = {
2015-07-04 04:22:39 -07:00
items = {"ethereal:wild_onion_plant 2"}, rarity = 3
2015-05-29 02:25:35 -07:00
}
minetest.register_node("ethereal:onion_3", table.copy(onion_def))
2014-11-09 11:17:41 -08:00
2015-05-29 02:25:35 -07:00
onion_def.tiles[1] = "ethereal_wild_onion_4.png"
onion_def.groups.onion = 4
onion_def.drop.items[2] = {
2015-07-04 04:22:39 -07:00
items = {"ethereal:wild_onion_plant 3"}, rarity = 3
2015-05-29 02:25:35 -07:00
}
minetest.register_node("ethereal:onion_4", table.copy(onion_def))
2014-11-09 11:17:41 -08:00
2015-05-29 02:25:35 -07:00
onion_def.tiles[1] = "ethereal_wild_onion_5.png"
onion_def.groups.onion = 5
onion_def.groups.growing = nil
onion_def.drop.items = {
2015-07-04 04:22:39 -07:00
{items = {"ethereal:wild_onion_plant 2"}, rarity = 1},
{items = {"ethereal:wild_onion_plant 3"}, rarity = 2},
2015-05-29 02:25:35 -07:00
}
minetest.register_node("ethereal:onion_5", table.copy(onion_def))
2014-11-09 11:17:41 -08:00
-- Abm for growing Wild Onion
if farming.mod ~= "redo" then
minetest.register_abm({
nodenames = {"group:onion"},
neighbors = {"farming:soil_wet"},
interval = 50,
chance = 3,
2015-11-07 12:50:50 -08:00
catch_up = false,
2014-11-09 11:17:41 -08:00
action = function(pos, node)
2015-05-30 04:31:05 -07:00
2014-11-09 11:17:41 -08:00
-- return if already full grown
2015-05-29 02:25:35 -07:00
if minetest.get_item_group(node.name, "growing") < 1 then
2014-11-09 11:17:41 -08:00
return
end
-- check if on wet soil
2015-07-04 04:22:39 -07:00
pos.y = pos.y - 1
2015-05-29 02:25:35 -07:00
if minetest.get_item_group(minetest.get_node(pos).name, "soil") < 3 then
2014-11-09 11:17:41 -08:00
return
end
2015-07-04 04:22:39 -07:00
pos.y = pos.y + 1
2014-11-09 11:17:41 -08:00
-- check light
2015-05-29 02:25:35 -07:00
local light = minetest.get_node_light(pos)
if not light
or light < 13 then
2014-11-09 11:17:41 -08:00
return
end
-- grow
2015-07-04 04:22:39 -07:00
node.name = "ethereal:onion_"..minetest.get_item_group(node.name, "onion") + 1
2015-05-29 02:25:35 -07:00
minetest.set_node(pos, node)
2014-11-09 11:17:41 -08:00
end
})
end
2015-05-29 02:25:35 -07:00
-- Legacy
minetest.register_alias("ethereal:wild_onion_craftingitem", "ethereal:wild_onion_plant")
2015-07-04 04:22:39 -07:00
for i = 1, 5 do
2015-05-29 02:25:35 -07:00
minetest.register_alias("ethereal:wild_onion_"..i, "ethereal:onion_"..i)
end
2014-11-09 11:17:41 -08:00
-- Temporary compatibility lines for Xanadu server
minetest.register_alias("ethereal:onion_7", "ethereal:onion_4")
minetest.register_alias("ethereal:onion_8", "ethereal:onion_5")
minetest.register_alias("ethereal:wild_onion_7", "ethereal:onion_4")
2015-07-04 04:22:39 -07:00
minetest.register_alias("ethereal:wild_onion_8", "ethereal:onion_5")