2018-03-21 11:51:12 +01:00
|
|
|
|
|
|
|
local S = farming.intllib
|
|
|
|
|
|
|
|
-- Textures for Pea crop and Peas were done by Andrey01
|
|
|
|
|
|
|
|
-- pea pod
|
|
|
|
minetest.register_craftitem("farming:pea_pod", {
|
|
|
|
description = S("Pea Pod"),
|
|
|
|
inventory_image = "farming_pea_pod.png",
|
2021-12-04 15:06:18 +01:00
|
|
|
groups = {seed = 2, food_peas = 1, food_pea_pod = 1, flammable = 2},
|
2018-03-21 11:51:12 +01:00
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
return farming.place_seed(itemstack, placer, pointed_thing, "farming:pea_1")
|
2021-12-04 15:06:18 +01:00
|
|
|
end,
|
2018-03-21 11:51:12 +01:00
|
|
|
on_use = minetest.item_eat(1)
|
|
|
|
})
|
|
|
|
|
2021-12-04 15:06:18 +01:00
|
|
|
-- replacement for separate peas item that was removed
|
|
|
|
minetest.register_alias("farming:peas", "farming:pea_pod")
|
2018-03-21 11:51:12 +01:00
|
|
|
|
|
|
|
-- pea soup
|
|
|
|
minetest.register_craftitem("farming:pea_soup", {
|
|
|
|
description = S("Pea Soup"),
|
|
|
|
inventory_image = "farming_pea_soup.png",
|
2018-03-21 23:10:52 +01:00
|
|
|
groups = {flammable = 2},
|
2020-07-02 15:31:12 +02:00
|
|
|
on_use = minetest.item_eat(4, "farming:bowl")
|
2018-03-21 11:51:12 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "farming:pea_soup",
|
2021-05-04 10:06:08 +02:00
|
|
|
recipe = {
|
|
|
|
{"group:food_peas"},
|
|
|
|
{"group:food_peas"},
|
|
|
|
{"group:food_bowl"}
|
|
|
|
}
|
2018-03-21 11:51:12 +01:00
|
|
|
})
|
|
|
|
|
2020-07-02 15:31:12 +02:00
|
|
|
local def = {
|
2018-03-21 11:51:12 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"farming_pea_1.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "meshoptions",
|
|
|
|
place_param2 = 3,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
waving = 1,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
drop = "",
|
|
|
|
selection_box = farming.select,
|
|
|
|
groups = {
|
2018-07-09 21:46:58 +02:00
|
|
|
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
2018-03-21 11:51:12 +01:00
|
|
|
not_in_creative_inventory = 1, growing = 1
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults()
|
|
|
|
}
|
|
|
|
|
|
|
|
-- stage 1
|
2020-07-02 15:31:12 +02:00
|
|
|
minetest.register_node("farming:pea_1", table.copy(def))
|
2018-03-21 11:51:12 +01:00
|
|
|
|
|
|
|
-- stage 2
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_pea_2.png"}
|
|
|
|
minetest.register_node("farming:pea_2", table.copy(def))
|
2018-03-21 11:51:12 +01:00
|
|
|
|
|
|
|
-- stage 3
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_pea_3.png"}
|
|
|
|
minetest.register_node("farming:pea_3", table.copy(def))
|
2018-03-21 11:51:12 +01:00
|
|
|
|
|
|
|
-- stage 4
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_pea_4.png"}
|
|
|
|
minetest.register_node("farming:pea_4", table.copy(def))
|
2018-03-21 11:51:12 +01:00
|
|
|
|
|
|
|
-- stage 5
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_pea_5.png"}
|
|
|
|
def.groups.growing = nil
|
|
|
|
def.drop = {
|
2018-03-21 11:51:12 +01:00
|
|
|
max_items = 5, items = {
|
2019-08-05 10:12:06 +02:00
|
|
|
{items = {"farming:pea_pod"}, rarity = 1},
|
|
|
|
{items = {"farming:pea_pod"}, rarity = 2},
|
|
|
|
{items = {"farming:pea_pod"}, rarity = 3},
|
2020-07-02 15:31:12 +02:00
|
|
|
{items = {"farming:pea_pod"}, rarity = 5}
|
2018-03-21 11:51:12 +01:00
|
|
|
}
|
|
|
|
}
|
2020-07-02 15:31:12 +02:00
|
|
|
minetest.register_node("farming:pea_5", table.copy(def))
|
2018-09-29 17:53:18 +02:00
|
|
|
|
|
|
|
-- add to registered_plants
|
|
|
|
farming.registered_plants["farming:pea_pod"] = {
|
2022-02-21 19:39:07 +01:00
|
|
|
crop = "farming:pea",
|
2018-09-29 17:53:18 +02:00
|
|
|
seed = "farming:pea_pod",
|
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 = 5
|
|
|
|
}
|
2022-09-13 13:30:10 +02:00
|
|
|
|
|
|
|
-- mapgen
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:dirt_with_grass"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = farming.peas,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
2022-09-13 19:30:55 +02:00
|
|
|
seed = 132,
|
2022-09-13 13:30:10 +02:00
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
|
|
|
y_min = 25,
|
|
|
|
y_max = 55,
|
|
|
|
decoration = "farming:pea_5"
|
|
|
|
})
|