Potatoe plants get a “#” shape, too

This commit is contained in:
Wuzzy 2017-03-14 22:01:41 +01:00
parent 1d8b8d5c73
commit 6901781b49
2 changed files with 8 additions and 2 deletions

View file

@ -3,6 +3,8 @@ minetest.register_node("mcl_farming:potato_1", {
_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",
paramtype2 = "meshoptions",
place_param2 = 3,
walkable = false,
drawtype = "plantlike",
drop = "mcl_farming:potato_item",
@ -22,6 +24,8 @@ minetest.register_node("mcl_farming:potato_2", {
description = "Premature Potato Plant (Second Stage)",
_doc_items_create_entry = false,
paramtype = "light",
paramtype2 = "meshoptions",
place_param2 = 3,
walkable = false,
drawtype = "plantlike",
drop = "mcl_farming:potato_item",
@ -41,6 +45,8 @@ 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",
paramtype2 = "meshoptions",
place_param2 = 3,
walkable = false,
drawtype = "plantlike",
tiles = {"farming_potato_3.png"},