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

@ -1,4 +1,5 @@
minetest.register_node("mcl_farming:carrot_1", {
description = "Carrot Plant (First Stage)",
paramtype = "light",
walkable = false,
drawtype = "plantlike",
@ -15,6 +16,7 @@ minetest.register_node("mcl_farming:carrot_1", {
})
minetest.register_node("mcl_farming:carrot_2", {
description = "Carrot Plant (Second Stage)",
paramtype = "light",
walkable = false,
drawtype = "plantlike",
@ -31,6 +33,7 @@ minetest.register_node("mcl_farming:carrot_2", {
})
minetest.register_node("mcl_farming:carrot_3", {
description = "Carrot Plant (Third Stage)",
paramtype = "light",
walkable = false,
drawtype = "plantlike",
@ -47,6 +50,7 @@ minetest.register_node("mcl_farming:carrot_3", {
})
minetest.register_node("mcl_farming:carrot", {
description = "Carrot Plant",
paramtype = "light",
walkable = false,
drawtype = "plantlike",