forked from VoxeLibre/VoxeLibre
Make carrot plants transparent
This commit is contained in:
parent
3d227647fc
commit
21ef2a83b6
|
@ -3,6 +3,7 @@ minetest.register_node("mcl_farming:carrot_1", {
|
||||||
_doc_items_entry_name = "Premature Carrot Plant",
|
_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.",
|
_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",
|
paramtype = "light",
|
||||||
|
sunlight_propagates = true,
|
||||||
paramtype2 = "meshoptions",
|
paramtype2 = "meshoptions",
|
||||||
place_param2 = 3,
|
place_param2 = 3,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
@ -24,6 +25,7 @@ minetest.register_node("mcl_farming:carrot_2", {
|
||||||
description = "Premature Carrot Plant (Second Stage)",
|
description = "Premature Carrot Plant (Second Stage)",
|
||||||
_doc_items_create_entry = false,
|
_doc_items_create_entry = false,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
paramtype2 = "meshoptions",
|
paramtype2 = "meshoptions",
|
||||||
|
@ -45,6 +47,7 @@ minetest.register_node("mcl_farming:carrot_3", {
|
||||||
description = "Premature Carrot Plant (Third Stage)",
|
description = "Premature Carrot Plant (Third Stage)",
|
||||||
_doc_items_create_entry = false,
|
_doc_items_create_entry = false,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
sunlight_propagates = true,
|
||||||
paramtype2 = "meshoptions",
|
paramtype2 = "meshoptions",
|
||||||
place_param2 = 3,
|
place_param2 = 3,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
@ -66,6 +69,7 @@ minetest.register_node("mcl_farming:carrot", {
|
||||||
description = "Mature Carrot Plant",
|
description = "Mature Carrot Plant",
|
||||||
_doc_items_longdesc = "Mature carrot plants are ready to be harvested for carrots. They won't grow any further.",
|
_doc_items_longdesc = "Mature carrot plants are ready to be harvested for carrots. They won't grow any further.",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
sunlight_propagates = true,
|
||||||
paramtype2 = "meshoptions",
|
paramtype2 = "meshoptions",
|
||||||
place_param2 = 3,
|
place_param2 = 3,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
|
Loading…
Reference in New Issue