forked from VoxeLibre/VoxeLibre
Add dye help texts
This commit is contained in:
parent
7b1ea87e18
commit
0de2df058d
|
@ -94,6 +94,8 @@ for _, row in ipairs(dyelocal.dyes) do
|
||||||
minetest.register_craftitem(item_name, {
|
minetest.register_craftitem(item_name, {
|
||||||
inventory_image = item_image,
|
inventory_image = item_image,
|
||||||
description = description,
|
description = description,
|
||||||
|
_doc_items_longdesc = "This item is a dye which is used for dyeing and crafting.",
|
||||||
|
_doc_items_usagehelp = "Rightclick on a sheep to dye its wool. Other things are dyed by crafting.",
|
||||||
groups = groups,
|
groups = groups,
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
})
|
})
|
||||||
|
@ -214,6 +216,8 @@ end
|
||||||
minetest.register_craftitem("mcl_dye:white", {
|
minetest.register_craftitem("mcl_dye:white", {
|
||||||
inventory_image = "dye_white.png",
|
inventory_image = "dye_white.png",
|
||||||
description = "Bone Meal",
|
description = "Bone Meal",
|
||||||
|
_doc_items_longdesc = "Bone meal is a white dye and also useful as a fertilizer to speed up the growth of many plants.",
|
||||||
|
_doc_items_usagehelp = "Rightclick a sheep to turn its wool white. Rightclick a plant to speed up its growth. Note that not all plants can be fertilized like this. When you rightclick a grass block, tall grass and flowers will grow all over the place.",
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = dyelocal.dyes[1][3],
|
groups = dyelocal.dyes[1][3],
|
||||||
on_place = function(itemstack, user, pointed_thing)
|
on_place = function(itemstack, user, pointed_thing)
|
||||||
|
@ -235,6 +239,8 @@ minetest.register_craftitem("mcl_dye:white", {
|
||||||
|
|
||||||
minetest.register_craftitem("mcl_dye:brown", {
|
minetest.register_craftitem("mcl_dye:brown", {
|
||||||
inventory_image = "dye_brown.png",
|
inventory_image = "dye_brown.png",
|
||||||
|
_doc_items_longdesc = "Cocoa beans are a brown dye and can be used to plant cocoas.",
|
||||||
|
_doc_items_usagehelp = "Rightclick a sheep to turn its wool brown. Rightclick on the side of a jungle tree trunk (Jungle Wood) to plant a young cocoa.",
|
||||||
description = "Cocoa Beans",
|
description = "Cocoa Beans",
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = dyelocal.dyes[4][3],
|
groups = dyelocal.dyes[4][3],
|
||||||
|
|
Loading…
Reference in New Issue