star_wars/mods/ethereal/blumfruit.lua

128 lines
3.2 KiB
Lua
Raw Permalink Normal View History

2020-05-03 16:00:46 +02:00
local S = ethereal.intllib
2020-05-08 01:10:06 +02:00
-- Blumfruit (can also be planted as seed)
minetest.register_craftitem("ethereal:blumfruit", {
description = S("Blumfruit"),
inventory_image = "blumfruit.png",
wield_image = "blumfruit.png",
groups = {food_blumfruit = 1, food_berry = 1, flammable = 2},
2020-05-03 16:00:46 +02:00
on_place = function(itemstack, placer, pointed_thing)
2020-05-08 01:10:06 +02:00
return farming.place_seed(itemstack, placer, pointed_thing, "ethereal:blumfruit_1")
2020-05-03 16:00:46 +02:00
end,
on_use = minetest.item_eat(1),
})
2020-05-08 01:10:06 +02:00
-- Define Blumfruit Bush growth stages
2020-05-03 16:00:46 +02:00
local crop_def = {
drawtype = "plantlike",
2020-05-08 01:10:06 +02:00
tiles = {"blumfruit_1.png"},
2020-05-03 16:00:46 +02:00
paramtype = "light",
sunlight_propagates = true,
waving = 1,
walkable = false,
buildable_to = true,
drop = "",
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,
not_in_creative_inventory = 1, growing = 1
},
sounds = default.node_sound_leaves_defaults(),
}
--stage 1
2020-05-08 01:10:06 +02:00
minetest.register_node("ethereal:blumfruit_1", table.copy(crop_def))
2020-05-03 16:00:46 +02:00
-- stage 2
crop_def.tiles = {"strawberry_2.png"}
2020-05-08 01:10:06 +02:00
minetest.register_node("ethereal:blumfruit_2", table.copy(crop_def))
2020-05-03 16:00:46 +02:00
-- stage 3
crop_def.tiles = {"strawberry_3.png"}
2020-05-08 01:10:06 +02:00
minetest.register_node("ethereal:blumfruit_3", table.copy(crop_def))
2020-05-03 16:00:46 +02:00
-- stage 4
crop_def.tiles = {"strawberry_4.png"}
2020-05-08 01:10:06 +02:00
minetest.register_node("ethereal:blumfruit_4", table.copy(crop_def))
2020-05-03 16:00:46 +02:00
-- stage 5
crop_def.tiles = {"strawberry_5.png"}
2020-05-08 01:10:06 +02:00
minetest.register_node("ethereal:blumfruit_5", table.copy(crop_def))
2020-05-03 16:00:46 +02:00
-- stage 6
2020-05-08 01:10:06 +02:00
crop_def.tiles = {"blumfruit_6.png"}
2020-05-03 16:00:46 +02:00
crop_def.drop = {
items = {
2020-05-08 01:10:06 +02:00
{items = {"ethereal:blumfruit 1"},rarity = 2},
{items = {"ethereal:blumfruit 2"},rarity = 3},
2020-05-03 16:00:46 +02:00
}
}
2020-05-08 01:10:06 +02:00
minetest.register_node("ethereal:blumfruit_6", table.copy(crop_def))
2020-05-03 16:00:46 +02:00
-- stage 7
2020-05-08 01:10:06 +02:00
crop_def.tiles = {"blumfruit_7.png"}
2020-05-03 16:00:46 +02:00
crop_def.drop = {
items = {
2020-05-08 01:10:06 +02:00
{items = {"ethereal:blumfruit 1"},rarity = 1},
{items = {"ethereal:blumfruit 2"},rarity = 3},
2020-05-03 16:00:46 +02:00
}
}
2020-05-08 01:10:06 +02:00
minetest.register_node("ethereal:blumfruit_7", table.copy(crop_def))
2020-05-03 16:00:46 +02:00
-- stage 8
2020-05-08 01:10:06 +02:00
crop_def.tiles = {"blumfruit_8.png"}
2020-05-03 16:00:46 +02:00
crop_def.groups.growing = 0
crop_def.drop = {
items = {
2020-05-08 01:10:06 +02:00
{items = {"ethereal:blumfruit 2"},rarity = 1},
{items = {"ethereal:blumfruit 3"},rarity = 3},
2020-05-03 16:00:46 +02:00
}
}
2020-05-08 01:10:06 +02:00
minetest.register_node("ethereal:blumfruit_8", table.copy(crop_def))
2020-05-03 16:00:46 +02:00
-- growing routine if farming redo isn't present
if not farming or not farming.mod or farming.mod ~= "redo" then
minetest.register_abm({
2020-05-08 01:10:06 +02:00
label = "Ethereal grow blumfruit",
2020-05-03 16:00:46 +02:00
nodenames = {
2020-05-08 01:10:06 +02:00
"ethereal:blumfruit_1", "ethereal:blumfruit_2", "ethereal:blumfruit_3",
"ethereal:blumfruit_4", "ethereal:blumfruit_5", "ethereal:blumfruit_6",
"ethereal:blumfruit_7"
2020-05-03 16:00:46 +02:00
},
neighbors = {"farming:soil_wet"},
interval = 9,
chance = 20,
catch_up = false,
action = function(pos, node)
-- are we on wet soil?
pos.y = pos.y - 1
if minetest.get_item_group(minetest.get_node(pos).name, "soil") < 3 then
return
end
pos.y = pos.y + 1
-- do we have enough light?
local light = minetest.get_node_light(pos)
if not light
or light < 13 then
return
end
-- grow to next stage
local num = node.name:split("_")[2]
2020-05-08 01:10:06 +02:00
node.name = "ethereal:blumfruit_" .. tonumber(num + 1)
2020-05-03 16:00:46 +02:00
minetest.swap_node(pos, node)
end
})
end -- END IF