Use “#” shape for carrot, beetroot, nether wart

This commit is contained in:
Wuzzy 2017-03-14 21:45:21 +01:00
parent c826af9b44
commit 79f5c7dc5a
4 changed files with 35 additions and 7 deletions

View file

@ -3,6 +3,8 @@ minetest.register_node("mcl_farming:carrot_1", {
_doc_items_entry_name = "Premature Carrot Plant",
_doc_items_longdesc = "Carrot plants are plants which grow on farmland under sunlight in 4 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:carrot_item",
@ -24,6 +26,8 @@ minetest.register_node("mcl_farming:carrot_2", {
paramtype = "light",
walkable = false,
drawtype = "plantlike",
paramtype2 = "meshoptions",
place_param2 = 3,
drop = "mcl_farming:carrot_item",
tiles = {"farming_carrot_2.png"},
selection_box = {
@ -41,6 +45,8 @@ minetest.register_node("mcl_farming:carrot_3", {
description = "Premature Carrot Plant (Third Stage)",
_doc_items_create_entry = false,
paramtype = "light",
paramtype2 = "meshoptions",
place_param2 = 3,
walkable = false,
drawtype = "plantlike",
drop = "mcl_farming:carrot_item",
@ -60,6 +66,8 @@ minetest.register_node("mcl_farming:carrot", {
description = "Mature Carrot Plant",
_doc_items_longdesc = "Mature carrot plants are ready to be harvested for carrots. They won't grow any further.",
paramtype = "light",
paramtype2 = "meshoptions",
place_param2 = 3,
walkable = false,
drawtype = "plantlike",
tiles = {"farming_carrot_4.png"},