From 2ce928279bf4833d1be82783c8fb65026241722d Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 13 Mar 2017 18:52:22 +0100 Subject: [PATCH] Add help for some farming plants --- mods/ITEMS/mcl_farming/beetroot.lua | 3 +++ mods/ITEMS/mcl_farming/carrots.lua | 4 +++- mods/ITEMS/mcl_farming/potatoes.lua | 2 ++ mods/ITEMS/mcl_farming/wheat.lua | 2 ++ 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_farming/beetroot.lua b/mods/ITEMS/mcl_farming/beetroot.lua index 5b07cdf7f..5a9e59c2a 100644 --- a/mods/ITEMS/mcl_farming/beetroot.lua +++ b/mods/ITEMS/mcl_farming/beetroot.lua @@ -12,6 +12,7 @@ minetest.register_craftitem("mcl_farming:beetroot_seeds", { minetest.register_node("mcl_farming:beetroot_0", { description = "Premature Beetroot Plant (First Stage)", + _doc_items_longdesc = "Beetroot plants are plants which grow on farmland under sunlight in 4 stages. On hydrated farmland, they grow a bit faster. They can be harvested at any time but will only yield a profit when mature.", _doc_items_entry_name = "Premature Beetroot Plant", paramtype = "light", walkable = false, @@ -69,6 +70,8 @@ minetest.register_node("mcl_farming:beetroot_2", { minetest.register_node("mcl_farming:beetroot", { description = "Mature Beetroot Plant", + _doc_items_longdesc = "A mature beetroot plant is a farming plant which is ready to be harvested for a beetroot and some beetroot seeds. It won't grow any further.", + _doc_items_create_entry = true, paramtype = "light", walkable = false, drawtype = "plantlike", diff --git a/mods/ITEMS/mcl_farming/carrots.lua b/mods/ITEMS/mcl_farming/carrots.lua index abaa97213..70ee56502 100644 --- a/mods/ITEMS/mcl_farming/carrots.lua +++ b/mods/ITEMS/mcl_farming/carrots.lua @@ -1,6 +1,7 @@ minetest.register_node("mcl_farming:carrot_1", { description = "Premature Carrot Plant (First Stage)", - _doc_items_entry_name = "Carrot Plant", + _doc_items_entry_name = "Premature Carrot Plant", + _doc_items_longdesc = "Carrot plants are plants which grow on farmland under sunlight in 4 stages. On hydrated farmland, they grow a bit faster. They can be harvested at any time but will only yield a profit when mature.", paramtype = "light", walkable = false, drawtype = "plantlike", @@ -57,6 +58,7 @@ minetest.register_node("mcl_farming:carrot_3", { minetest.register_node("mcl_farming:carrot", { description = "Mature Carrot Plant", + _doc_items_longdesc = "Mature carrot plants are ready to be harvested for carrots. They won't grow any further.", paramtype = "light", walkable = false, drawtype = "plantlike", diff --git a/mods/ITEMS/mcl_farming/potatoes.lua b/mods/ITEMS/mcl_farming/potatoes.lua index 862d383ff..cff24538e 100644 --- a/mods/ITEMS/mcl_farming/potatoes.lua +++ b/mods/ITEMS/mcl_farming/potatoes.lua @@ -1,6 +1,7 @@ minetest.register_node("mcl_farming:potato_1", { description = "Premature Potato Plant (First Stage)", _doc_items_entry_name = "Premature Potato Plant", + _doc_items_longdesc = "Potato plants are plants which grow on farmland under sunlight in 3 stages. On hydrated farmland, they grow a bit faster. They can be harvested at any time but will only yield a profit when mature.", paramtype = "light", walkable = false, drawtype = "plantlike", @@ -38,6 +39,7 @@ minetest.register_node("mcl_farming:potato_2", { minetest.register_node("mcl_farming:potato", { description = "Mature Potato Plant", + _doc_items_longdesc = "Mature potato plants are ready to be harvested for potatoes. They won't grow any further.", paramtype = "light", walkable = false, drawtype = "plantlike", diff --git a/mods/ITEMS/mcl_farming/wheat.lua b/mods/ITEMS/mcl_farming/wheat.lua index 644b50d53..e7d8d84fe 100644 --- a/mods/ITEMS/mcl_farming/wheat.lua +++ b/mods/ITEMS/mcl_farming/wheat.lua @@ -13,6 +13,7 @@ minetest.register_craftitem("mcl_farming:wheat_seeds", { minetest.register_node("mcl_farming:wheat_1", { description = "Premature Wheat Plant (First Stage)", _doc_items_entry_name = "Premature Wheat Plant", + _doc_items_longdesc = "Premature wheat plants grow on farmland under sunlight in 4 stages. On hydrated farmland, they grow faster. They can be harvested at any time but will only yield a profit when mature.", paramtype = "light", sunlight_propagates = true, walkable = false, @@ -102,6 +103,7 @@ minetest.register_node("mcl_farming:wheat_3", { minetest.register_node("mcl_farming:wheat", { description = "Mature Wheat Plant", + _doc_items_longdesc = "Mature wheat plants are ready to be harvested for wheat and wheat seeds. They won't grow any further.", sunlight_propagates = true, paramtype = "light", walkable = false,