Add descriptions to farming plants

This commit is contained in:
Wuzzy 2017-02-22 15:08:39 +01:00
parent 672d080a96
commit 4d159ffe8b
6 changed files with 29 additions and 0 deletions

View file

@ -9,6 +9,7 @@ minetest.register_craftitem("mcl_farming:beetroot_seeds", {
})
minetest.register_node("mcl_farming:beetroot_0", {
description = "Premature Beetroot Plant (First Stage)",
paramtype = "light",
walkable = false,
drawtype = "plantlike",
@ -25,6 +26,7 @@ minetest.register_node("mcl_farming:beetroot_0", {
})
minetest.register_node("mcl_farming:beetroot_1", {
description = "Premature Beetroot Plant (Second Stage)",
paramtype = "light",
walkable = false,
drawtype = "plantlike",
@ -41,6 +43,7 @@ minetest.register_node("mcl_farming:beetroot_1", {
})
minetest.register_node("mcl_farming:beetroot_2", {
description = "Premature Beetroot Plant (Third Stage)",
paramtype = "light",
walkable = false,
drawtype = "plantlike",
@ -57,6 +60,7 @@ minetest.register_node("mcl_farming:beetroot_2", {
})
minetest.register_node("mcl_farming:beetroot", {
description = "Mature Beetroot Plant",
paramtype = "light",
walkable = false,
drawtype = "plantlike",