From 5083d23f86c3b6bcc3cde0d85d5316aa2118394e Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 14 Mar 2017 05:46:57 +0100 Subject: [PATCH] Help update for gourd stems and gourd blocks --- mods/ITEMS/mcl_farming/melon.lua | 17 +++++++++++++++-- mods/ITEMS/mcl_farming/pumpkin.lua | 14 ++++++++++++-- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/mods/ITEMS/mcl_farming/melon.lua b/mods/ITEMS/mcl_farming/melon.lua index 61d6b98c..5a7cc14c 100644 --- a/mods/ITEMS/mcl_farming/melon.lua +++ b/mods/ITEMS/mcl_farming/melon.lua @@ -15,7 +15,7 @@ minetest.register_craftitem("mcl_farming:melon_seeds", { local melon_base_def = { description = "Melon", - _doc_items_longdesc = "A melon is a block which has been grown from melon seeds. It has reached its full size and can be harvested for melon slices.", + _doc_items_longdesc = "A melon is a block which can be grown from melon stems, which in turn are grown from melon seeds. It can be harvested for melon slices.", stack_max = 64, tiles = {"farming_melon_top.png", "farming_melon_top.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png"}, groups = {handy=1,axey=1, building_block=1}, @@ -57,9 +57,21 @@ local stem_drop = { } -- Growing unconnected stems + + for s=1,7 do local h = s / 8 + local doc = s == 1 + local longdesc, entry_name + if doc then + entry_name = "Premature Melon Stem" + longdesc = "Melon stems grow on farmland in 8 stages. On hydrated farmland, the growth is a bit quicker. Mature melon stems are able to grow melons." + end minetest.register_node("mcl_farming:melontige_"..s, { + description = string.format("Premature Melon Stem (Stage %d)", s), + _doc_items_create_entry = doc, + _doc_items_entry_name = entry_name, + _doc_items_longdesc = longdesc, paramtype = "light", walkable = false, drawtype = "plantlike", @@ -81,7 +93,8 @@ end -- Full melon stem, able to spawn melons local stem_def = { description = "Mature Melon Stem", - _doc_items_create_entry = false, + _doc_items_create_entry = true, + _doc_items_longdesc = "A mature melon stem attempts to grow a melon at one of its four adjacent blocks. A melon can only grow on top of farmland, dirt, or a grass block. When a melon is next to a melon stem, the melon stem immediately bends and connects to the melon. While connected, a melon stem can't grow another melon. As soon all melons around the stem have been removed, it loses the connection and is ready to grow another melon.", tiles = {"mcl_farming_melontige_8.png"}, } diff --git a/mods/ITEMS/mcl_farming/pumpkin.lua b/mods/ITEMS/mcl_farming/pumpkin.lua index 2d253b24..46ecd28b 100644 --- a/mods/ITEMS/mcl_farming/pumpkin.lua +++ b/mods/ITEMS/mcl_farming/pumpkin.lua @@ -36,7 +36,17 @@ local stem_drop = { for s=1,7 do local h = s / 8 + local doc = s == 1 + local longdesc, entry_name + if doc then + entry_name = "Premature Pumpkin Stem" + longdesc = "Pumpkin stems grow on farmland in 8 stages. On hydrated farmland, the growth is a bit quicker. Mature pumpkin stems are able to grow pumpkins." + end minetest.register_node("mcl_farming:pumpkin_"..s, { + description = string.format("Premature Pumpkin Stem (Stage %d)", s), + _doc_items_entry_name = entry_name, + _doc_items_create_entry = doc, + _doc_items_longdesc = longdesc, paramtype = "light", walkable = false, drawtype = "plantlike", @@ -58,14 +68,14 @@ end -- Full stem (not connected) local stem_def = { description = "Mature Pumpkin Stem", - _doc_items_create_entry = false, + _doc_items_longdesc = "A mature pumpkin stem attempts to grow a pumpkin at one of its four adjacent blocks. A pumpkin can only grow on top of farmland, dirt or a grass block. When a pumpkin is next to a pumpkin stem, the pumpkin stem immediately bends and connects to the pumpkin. A connected pumpkin stem can't grow another pumpkin. As soon all pumpkins around the stem have been removed, it loses the connection and is ready to grow another pumpkin.", tiles = {"mcl_farming_pumpkintige_8.png"}, } -- Template for pumpkin local pumpkin_base_def = { description = "Pumpkin", - _doc_items_longdesc = "A pumpkin is a block which can be grown from pumpkin seeds.", + _doc_items_longdesc = "A pumpkin is a naturally occouring block from the grasslands and is remarkable for its strange face-like cavity, which is developed naturally. Pumpkins are grown from pumpkin stems, which in turn are grown from pumpkin seeds.", stack_max = 64, paramtype2 = "facedir", tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_face.png"},