Add _doc_items_create_entry fields for doc_items
This commit is contained in:
parent
194ec03b68
commit
aabb1e972d
28 changed files with 66 additions and 4 deletions
|
@ -10,6 +10,7 @@ minetest.register_craftitem("mcl_farming:beetroot_seeds", {
|
|||
|
||||
minetest.register_node("mcl_farming:beetroot_0", {
|
||||
description = "Premature Beetroot Plant (First Stage)",
|
||||
_doc_items_entry_name = "Premature Beetroot Plant",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -28,6 +29,7 @@ minetest.register_node("mcl_farming:beetroot_0", {
|
|||
|
||||
minetest.register_node("mcl_farming:beetroot_1", {
|
||||
description = "Premature Beetroot Plant (Second Stage)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -46,6 +48,7 @@ minetest.register_node("mcl_farming:beetroot_1", {
|
|||
|
||||
minetest.register_node("mcl_farming:beetroot_2", {
|
||||
description = "Premature Beetroot Plant (Third Stage)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
minetest.register_node("mcl_farming:carrot_1", {
|
||||
description = "Carrot Plant (First Stage)",
|
||||
description = "Premature Carrot Plant (First Stage)",
|
||||
_doc_items_entry_name = "Carrot Plant",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -17,7 +18,8 @@ minetest.register_node("mcl_farming:carrot_1", {
|
|||
})
|
||||
|
||||
minetest.register_node("mcl_farming:carrot_2", {
|
||||
description = "Carrot Plant (Second Stage)",
|
||||
description = "Premature Carrot Plant (Second Stage)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -35,7 +37,8 @@ minetest.register_node("mcl_farming:carrot_2", {
|
|||
})
|
||||
|
||||
minetest.register_node("mcl_farming:carrot_3", {
|
||||
description = "Carrot Plant (Third Stage)",
|
||||
description = "Premature Carrot Plant (Third Stage)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -53,7 +56,7 @@ minetest.register_node("mcl_farming:carrot_3", {
|
|||
})
|
||||
|
||||
minetest.register_node("mcl_farming:carrot", {
|
||||
description = "Carrot Plant",
|
||||
description = "Mature Carrot Plant",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
|
|
@ -62,6 +62,7 @@ local stemdrop = {
|
|||
|
||||
minetest.register_node("mcl_farming:melontige_1", {
|
||||
description = "Melon Stem (1)",
|
||||
_doc_items_entry_name = "Melon Stem",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -81,6 +82,7 @@ minetest.register_node("mcl_farming:melontige_1", {
|
|||
|
||||
minetest.register_node("mcl_farming:melontige_2", {
|
||||
description = "Melon Stem (2)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -100,6 +102,7 @@ minetest.register_node("mcl_farming:melontige_2", {
|
|||
|
||||
minetest.register_node("mcl_farming:melontige_unconnect", {
|
||||
description = "Melon Stem (unconnected)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -113,6 +116,7 @@ minetest.register_node("mcl_farming:melontige_unconnect", {
|
|||
|
||||
minetest.register_node("mcl_farming:melontige_linked_r", {
|
||||
description = "Melon Stem (linked to the right)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
|
@ -145,6 +149,7 @@ minetest.register_node("mcl_farming:melontige_linked_r", {
|
|||
|
||||
minetest.register_node("mcl_farming:melontige_linked_l", {
|
||||
description = "Melon Stem (linked to the left)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -177,6 +182,7 @@ minetest.register_node("mcl_farming:melontige_linked_l", {
|
|||
|
||||
minetest.register_node("mcl_farming:melontige_linked_t", {
|
||||
description = "Melon Stem (linked to the top)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -209,6 +215,7 @@ minetest.register_node("mcl_farming:melontige_linked_t", {
|
|||
|
||||
minetest.register_node("mcl_farming:melontige_linked_b", {
|
||||
description = "Melon Stem (linked to the bottom)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
minetest.register_node("mcl_farming:potato_1", {
|
||||
description = "Premature Potato Plant (First Stage)",
|
||||
_doc_items_entry_name = "Premature Potato Plant",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -18,6 +19,7 @@ minetest.register_node("mcl_farming:potato_1", {
|
|||
|
||||
minetest.register_node("mcl_farming:potato_2", {
|
||||
description = "Premature Potato Plant (Second Stage)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
|
|
@ -31,6 +31,7 @@ local stemdrop = {
|
|||
|
||||
minetest.register_node("mcl_farming:pumpkin_1", {
|
||||
description = "Pumpkin Stem (First Stage)",
|
||||
_doc_items_entry_name = "Pumpkin Stem",
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -50,6 +51,7 @@ minetest.register_node("mcl_farming:pumpkin_1", {
|
|||
|
||||
minetest.register_node("mcl_farming:pumpkin_2", {
|
||||
description = "Pumpkin Stem (Second Stage)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
drawtype = "plantlike",
|
||||
|
@ -102,6 +104,7 @@ minetest.register_node("mcl_farming:pumpkin_face", {
|
|||
|
||||
minetest.register_node("mcl_farming:pumpkintige_unconnect", {
|
||||
description = "Pumpkin Stem (Not Connected)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -116,6 +119,7 @@ minetest.register_node("mcl_farming:pumpkintige_unconnect", {
|
|||
|
||||
minetest.register_node("mcl_farming:pumpkintige_linked_r", {
|
||||
description = "Pumpkin Stem (Linked to the Right)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
|
@ -148,6 +152,7 @@ minetest.register_node("mcl_farming:pumpkintige_linked_r", {
|
|||
|
||||
minetest.register_node("mcl_farming:pumpkintige_linked_l", {
|
||||
description = "Pumpkin Stem (Linked to the Left)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -180,6 +185,7 @@ minetest.register_node("mcl_farming:pumpkintige_linked_l", {
|
|||
|
||||
minetest.register_node("mcl_farming:pumpkintige_linked_t", {
|
||||
description = "Pumpkin Stem (Linked to the Top)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
@ -212,6 +218,7 @@ minetest.register_node("mcl_farming:pumpkintige_linked_t", {
|
|||
|
||||
minetest.register_node("mcl_farming:pumpkintige_linked_b", {
|
||||
description = "Pumpkin Stem (Linked to the Bottom)",
|
||||
_doc_items_create_entry = false,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
sunlight_propagates = true,
|
||||
|
|
|
@ -9,6 +9,7 @@ minetest.register_craftitem("mcl_farming:wheat_seeds", {
|
|||
|
||||
minetest.register_node("mcl_farming:wheat_1", {
|
||||
description = "Premature Wheat Plant (First Stage)",
|
||||
_doc_items_entry_name = "Premature Wheat Plant",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
|
@ -38,6 +39,7 @@ minetest.register_node("mcl_farming:wheat_1", {
|
|||
|
||||
minetest.register_node("mcl_farming:wheat_2", {
|
||||
description = "Premature Wheat Plant (Second Stage)",
|
||||
_doc_items_create_entry = false,
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
|
@ -67,6 +69,7 @@ minetest.register_node("mcl_farming:wheat_2", {
|
|||
|
||||
minetest.register_node("mcl_farming:wheat_3", {
|
||||
description = "Premature Wheat Plant (Third Stage)",
|
||||
_doc_items_create_entry = false,
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue