x_farming/potato.lua

56 lines
1.3 KiB
Lua

local minlight = 13
local maxlight = default.LIGHT_MAX
-- POTATO
farming.register_plant("x_farming:potato", {
description = "Planting Potato",
paramtype2 = "meshoptions",
inventory_image = "x_farming_potato_seed.png",
steps = 8,
minlight = minlight,
maxlight = maxlight,
fertility = {"grassland"},
groups = {flammable = 4},
place_param2 = 3,
on_use = minetest.item_eat(2),
})
-- needed
minetest.override_item("x_farming:potato", {
description = "Potato" .. "\n" .. minetest.colorize(x_farming.colors.brown, "Hunger: 2"),
on_use = minetest.item_eat(2),
})
-- add poisonous potato to drops
minetest.override_item("x_farming:potato_8", {
drop = {
items = {
{items = {"x_farming:potato"}, rarity = 1},
{items = {"x_farming:potato"}, rarity = 2},
{items = {"x_farming:poisonouspotato"}, rarity = 5},
{items = {"x_farming:seed_potato"}, rarity = 1},
{items = {"x_farming:seed_potato"}, rarity = 2},
}
}
})
minetest.register_decoration({
name = "x_farming:potato_8",
deco_type = "simple",
place_on = {"default:silver_sand"},
sidelen = 16,
noise_params = {
offset = -0.1,
scale = 0.1,
spread = {x = 50, y = 50, z = 50},
seed = 4242,
octaves = 3,
persist = 0.7
},
biomes = {"cold_desert"},
y_max = 31000,
y_min = 1,
decoration = "x_farming:potato_8",
param2 = 3,
})