2020-05-27 12:07:31 +02:00
|
|
|
|
|
|
|
local S = farming.intllib
|
|
|
|
|
|
|
|
-- mint seed
|
2023-04-28 09:56:10 +02:00
|
|
|
minetest.register_node("farming:seed_mint", {
|
2020-05-27 12:07:31 +02:00
|
|
|
description = S("Mint Seeds"),
|
2023-04-28 09:56:10 +02:00
|
|
|
tiles = {"farming_mint_seeds.png"},
|
2020-05-27 12:07:31 +02:00
|
|
|
inventory_image = "farming_mint_seeds.png",
|
2023-04-28 09:56:10 +02:00
|
|
|
wield_image = "farming_mint_seeds.png",
|
|
|
|
drawtype = "signlike",
|
|
|
|
groups = {seed = 1, snappy = 3, attached_node = 1, growing = 1, flammable = 2},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
walkable = false,
|
|
|
|
sunlight_propagates = true,
|
|
|
|
selection_box = farming.select,
|
|
|
|
next_plant = "farming:mint_1",
|
2020-05-27 12:07:31 +02:00
|
|
|
on_place = function(itemstack, placer, pointed_thing)
|
2023-04-28 09:56:10 +02:00
|
|
|
return farming.place_seed(itemstack, placer, pointed_thing, "farming:seed_mint")
|
2020-05-28 19:39:40 +02:00
|
|
|
end
|
2020-05-27 12:07:31 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- mint leaf
|
|
|
|
minetest.register_craftitem("farming:mint_leaf", {
|
|
|
|
description = S("Mint Leaf"),
|
|
|
|
inventory_image = "farming_mint_leaf.png",
|
2020-07-02 15:31:12 +02:00
|
|
|
groups = {food_mint = 1, flammable = 4}
|
2020-05-27 12:07:31 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
-- mint tea
|
|
|
|
minetest.register_craftitem("farming:mint_tea", {
|
|
|
|
description = S("Mint Tea"),
|
|
|
|
inventory_image = "farming_mint_tea.png",
|
|
|
|
on_use = minetest.item_eat(2, "vessels:drinking_glass"),
|
2020-07-02 15:31:12 +02:00
|
|
|
groups = {flammable = 4}
|
2020-05-27 12:07:31 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "farming:mint_tea",
|
|
|
|
recipe = {
|
2021-05-04 10:06:08 +02:00
|
|
|
{"group:food_mint", "group:food_mint", "group:food_mint"},
|
2021-12-04 15:06:18 +01:00
|
|
|
{"group:food_water_glass", "farming:juicer", ""}
|
2020-05-27 12:07:31 +02:00
|
|
|
},
|
|
|
|
replacements = {
|
2021-12-04 15:06:18 +01:00
|
|
|
{"group:food_juicer", "farming:juicer"}
|
2020-07-02 15:31:12 +02:00
|
|
|
}
|
2020-05-27 12:07:31 +02:00
|
|
|
})
|
|
|
|
|
2020-09-04 16:05:09 +02:00
|
|
|
|
2020-05-27 12:07:31 +02:00
|
|
|
-- mint definition
|
2020-07-02 15:31:12 +02:00
|
|
|
local def = {
|
2020-05-27 12:07:31 +02:00
|
|
|
drawtype = "plantlike",
|
|
|
|
tiles = {"farming_mint_1.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
walkable = false,
|
|
|
|
buildable_to = true,
|
|
|
|
drop = "",
|
2023-04-28 09:56:10 +02:00
|
|
|
waving = 1,
|
2020-05-27 12:07:31 +02:00
|
|
|
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
|
2020-07-02 15:31:12 +02:00
|
|
|
minetest.register_node("farming:mint_1", table.copy(def))
|
2020-05-27 12:07:31 +02:00
|
|
|
|
|
|
|
-- stage 2
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_mint_2.png"}
|
|
|
|
minetest.register_node("farming:mint_2", table.copy(def))
|
2020-05-27 12:07:31 +02:00
|
|
|
|
|
|
|
-- stage 3
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_mint_3.png"}
|
|
|
|
minetest.register_node("farming:mint_3", table.copy(def))
|
2020-05-27 12:07:31 +02:00
|
|
|
|
|
|
|
-- stage 4 (final)
|
2020-07-02 15:31:12 +02:00
|
|
|
def.tiles = {"farming_mint_4.png"}
|
|
|
|
def.groups.growing = nil
|
2022-09-15 09:03:41 +02:00
|
|
|
def.selection_box = farming.select_final
|
2020-07-02 15:31:12 +02:00
|
|
|
def.drop = {
|
2020-05-27 12:07:31 +02:00
|
|
|
items = {
|
|
|
|
{items = {"farming:mint_leaf 2"}, rarity = 1},
|
|
|
|
{items = {"farming:mint_leaf 2"}, rarity = 2},
|
|
|
|
{items = {"farming:seed_mint 1"}, rarity = 1},
|
2021-05-04 10:06:08 +02:00
|
|
|
{items = {"farming:seed_mint 2"}, rarity = 2}
|
2020-05-27 12:07:31 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-02 15:31:12 +02:00
|
|
|
minetest.register_node("farming:mint_4", table.copy(def))
|
2020-05-27 12:07:31 +02:00
|
|
|
|
|
|
|
-- add to registered_plants
|
|
|
|
farming.registered_plants["farming:mint"] = {
|
|
|
|
crop = "farming:mint",
|
|
|
|
seed = "farming:seed_mint",
|
2020-12-09 11:22:41 +01:00
|
|
|
minlight = farming.min_light,
|
|
|
|
maxlight = farming.max_light,
|
2020-05-27 12:07:31 +02:00
|
|
|
steps = 4
|
|
|
|
}
|
2022-09-13 13:30:10 +02:00
|
|
|
|
|
|
|
-- mapgen
|
|
|
|
minetest.register_decoration({
|
|
|
|
deco_type = "simple",
|
|
|
|
place_on = {"default:dirt_with_grass", "default:dirt_with_coniferous_litter"},
|
|
|
|
sidelen = 16,
|
|
|
|
noise_params = {
|
|
|
|
offset = 0,
|
|
|
|
scale = farming.mint,
|
|
|
|
spread = {x = 100, y = 100, z = 100},
|
2022-09-13 19:30:55 +02:00
|
|
|
seed = 801,
|
2022-09-13 13:30:10 +02:00
|
|
|
octaves = 3,
|
|
|
|
persist = 0.6
|
|
|
|
},
|
2022-09-18 12:10:20 +02:00
|
|
|
y_min = 0,
|
2022-09-13 13:30:10 +02:00
|
|
|
y_max = 75,
|
|
|
|
decoration = "farming:mint_4",
|
2022-09-18 12:10:20 +02:00
|
|
|
spawn_by = {"group:water", "group:sand"},
|
2022-09-13 13:30:10 +02:00
|
|
|
num_spawn_by = 1
|
|
|
|
})
|