Add descriptions to farming plants
This commit is contained in:
parent
672d080a96
commit
4d159ffe8b
6 changed files with 29 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
minetest.register_node("mcl_farming:potato_1", {
|
||||
description = "Premature Potato Plant (First Stage)",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -15,6 +16,7 @@ minetest.register_node("mcl_farming:potato_1", {
|
|||
})
|
||||
|
||||
minetest.register_node("mcl_farming:potato_2", {
|
||||
description = "Premature Potato Plant (Second Stage)",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -31,6 +33,7 @@ minetest.register_node("mcl_farming:potato_2", {
|
|||
})
|
||||
|
||||
minetest.register_node("mcl_farming:potato", {
|
||||
description = "Mature Potato Plant",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue