2020-10-26 17:38:53 +01:00
|
|
|
|
|
|
|
local S = farming.intllib
|
|
|
|
|
|
|
|
-- pineapple top
|
|
|
|
minetest.register_craftitem("farming:pineapple_top", {
|
|
|
|
description = S("Pineapple Top"),
|
|
|
|
inventory_image = "farming_pineapple_top.png",
|
|
|
|
groups = {seed = 2, flammable = 2},
|
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
|
|
|
return farming.place_seed(itemstack, placer, pointed_thing, "farming:pineapple_1")
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
-- pineapple
|
|
|
|
minetest.register_node("farming:pineapple", {
|
|
|
|
description = S("Pineapple"),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"farming_pineapple.png"},
|
|
|
|
inventory_image = "farming_pineapple.png",
|
|
|
|
wield_image = "farming_pineapple.png",
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-0.27, -0.37, -0.27, 0.27, 0.44, 0.27}
|
|
|
|
},
|
|
|
|
groups = {food_pineapple = 1, fleshy = 3, dig_immediate = 3, flammable = 2}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- pineapple
|
|
|
|
minetest.register_craftitem("farming:pineapple_ring", {
|
|
|
|
description = S("Pineapple Ring"),
|
|
|
|
inventory_image = "farming_pineapple_ring.png",
|
|
|
|
groups = {food_pineapple_ring = 1, flammable = 2},
|
|
|
|
on_use = minetest.item_eat(1)
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "farming:pineapple_ring 5",
|
2021-05-16 11:33:49 +02:00
|
|
|
recipe = {{"group:food_pineapple"}},
|
2020-10-26 17:38:53 +01:00
|
|
|
replacements = {{"farming:pineapple", "farming:pineapple_top"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- pineapple juice
|
|
|
|
minetest.register_craftitem("farming:pineapple_juice", {
|
|
|
|
description = S("Pineapple Juice"),
|
|
|
|
inventory_image = "farming_pineapple_juice.png",
|
|
|
|
on_use = minetest.item_eat(4, "vessels:drinking_glass"),
|
|
|
|
groups = {vessel = 1, drink = 1}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "farming:pineapple_juice",
|
|
|
|
recipe = {
|
2021-05-16 11:33:49 +02:00
|
|
|
{"group:food_pineapple_ring", "group:food_pineapple_ring",
|
|
|
|
"group:food_pineapple_ring"},
|
|
|
|
{"", "farming:juicer", ""},
|
|
|
|
{"", "vessels:drinking_glass", ""}
|
|
|
|
},
|
2020-10-26 17:38:53 +01:00
|
|
|
replacements = {
|
|
|
|
{"group:food_juicer", "farming:juicer"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "farming:pineapple_juice 2",
|
|
|
|
recipe = {
|
2021-05-16 11:33:49 +02:00
|
|
|
{"group:food_pineapple", ""},
|
|
|
|
{"farming:juicer", ""},
|
|
|
|
{"vessels:drinking_glass", "vessels:drinking_glass"}
|
2020-10-26 17:38:53 +01:00
|
|
|
},
|
|
|
|
replacements = {
|
|
|
|
{"group:food_juicer", "farming:juicer"}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- crop definition
|
|
|
|
local def = {
|
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.5,
|
|
|
|
tiles = {"farming_pineapple_1.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
drop = "",
|
|
|
|
selection_box = farming.select,
|
|
|
|
groups = {
|
|
|
|
snappy = 3, flammable = 2, plant = 1, attached_node = 1,
|
|
|
|
not_in_creative_inventory = 1, growing = 1
|
|
|
|
},
|
|
|
|
sounds = default.node_sound_leaves_defaults()
|
|
|
|
}
|
|
|
|
|
|
|
|
-- stage 1
|
|
|
|
minetest.register_node("farming:pineapple_1", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 2
|
|
|
|
def.tiles = {"farming_pineapple_2.png"}
|
|
|
|
minetest.register_node("farming:pineapple_2", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 3
|
|
|
|
def.tiles = {"farming_pineapple_3.png"}
|
|
|
|
minetest.register_node("farming:pineapple_3", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 4
|
|
|
|
def.tiles = {"farming_pineapple_4.png"}
|
|
|
|
minetest.register_node("farming:pineapple_4", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 5
|
|
|
|
def.tiles = {"farming_pineapple_5.png"}
|
|
|
|
minetest.register_node("farming:pineapple_5", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 6
|
|
|
|
def.tiles = {"farming_pineapple_6.png"}
|
|
|
|
minetest.register_node("farming:pineapple_6", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 7
|
|
|
|
def.tiles = {"farming_pineapple_7.png"}
|
|
|
|
minetest.register_node("farming:pineapple_7", table.copy(def))
|
|
|
|
|
|
|
|
-- stage 8 (final)
|
|
|
|
def.tiles = {"farming_pineapple_8.png"}
|
|
|
|
def.groups.growing = nil
|
|
|
|
def.drop = {
|
|
|
|
items = {
|
|
|
|
{items = {"farming:pineapple"}, rarity = 1},
|
|
|
|
{items = {"farming:pineapple"}, rarity = 10}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
minetest.register_node("farming:pineapple_8", table.copy(def))
|
|
|
|
|
|
|
|
-- add to registered_plants
|
|
|
|
farming.registered_plants["farming:pineapple"] = {
|
|
|
|
crop = "farming:pineapple",
|
|
|
|
seed = "farming:pineapple_top",
|
2020-12-09 21:59:08 +01:00
|
|
|
minlight = farming.min_light,
|
|
|
|
maxlight = farming.max_light,
|
2020-10-26 17:38:53 +01:00
|
|
|
steps = 8
|
|
|
|
}
|