2017-03-18 02:27:36 +00:00
|
|
|
-- Disable built-in factoids; it is planned to add custom ones as replacements
|
2017-03-18 00:06:10 +00:00
|
|
|
doc.sub.items.disable_core_factoid("node_mining")
|
|
|
|
doc.sub.items.disable_core_factoid("tool_capabilities")
|
2017-03-18 02:27:36 +00:00
|
|
|
|
|
|
|
-- Help button callback
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
|
|
if fields.__mcl_doc then
|
|
|
|
doc.show_doc(player:get_player_name())
|
|
|
|
end
|
|
|
|
end)
|
2017-03-18 16:18:12 +00:00
|
|
|
|
|
|
|
-- doc_items factoids
|
|
|
|
|
|
|
|
-- dig_by_water
|
|
|
|
doc.sub.items.register_factoid("nodes", "drop_destroy", function(itemstring, def)
|
|
|
|
if def.groups.dig_by_water then
|
|
|
|
return "Water can flow into this block and cause it to drop as an item."
|
|
|
|
end
|
|
|
|
return ""
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- usable by hoes
|
|
|
|
doc.sub.items.register_factoid("nodes", "groups", function(itemstring, def)
|
|
|
|
if def.groups.cultivatable == 2 then
|
|
|
|
return "This block can be turned into dirt with a hoe."
|
|
|
|
elseif def.groups.cultivatable == 2 then
|
|
|
|
return "This block can be turned into farmland with a hoe."
|
|
|
|
end
|
|
|
|
return ""
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- soil
|
|
|
|
doc.sub.items.register_factoid("nodes", "groups", function(itemstring, def)
|
|
|
|
local datastring = ""
|
|
|
|
if def.groups.soil_sapling == 2 then
|
|
|
|
datastring = datastring .. "This block acts as a soil for all saplings." .. "\n"
|
|
|
|
elseif def.groups.soil_sapling == 1 then
|
|
|
|
datastring = datastring .. "This block acts as a soil for some saplings." .. "\n"
|
|
|
|
end
|
|
|
|
if def.groups.soil_sugarcane then
|
|
|
|
datastring = datastring .. "Sugar canes will grow on this block." .. "\n"
|
|
|
|
end
|
|
|
|
if def.groups.soil_nether_wart then
|
|
|
|
datastring = datastring .. "Nether wart will grow on this block." .. "\n"
|
|
|
|
end
|
|
|
|
return datastring
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- flammable
|
|
|
|
doc.sub.items.register_factoid("nodes", "groups", function(itemstring, def)
|
|
|
|
if def.groups.flammable then
|
|
|
|
return "This block is flammable."
|
|
|
|
end
|
|
|
|
return ""
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- destroys_items
|
|
|
|
doc.sub.items.register_factoid("nodes", "groups", function(itemstring, def)
|
|
|
|
if def.groups.destroys_items then
|
|
|
|
return "This block destroys any item it touches."
|
|
|
|
end
|
|
|
|
return ""
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
|
|
-- Comestibles
|
|
|
|
doc.sub.items.register_factoid(nil, "use", function(itemstring, def)
|
2017-05-23 00:55:48 +00:00
|
|
|
local s = ""
|
2017-03-18 16:18:12 +00:00
|
|
|
if def.groups.eatable and not def._doc_items_usagehelp then
|
|
|
|
if def.groups.food == 2 then
|
2017-05-23 00:55:48 +00:00
|
|
|
s = s .. "To eat it, wield it, then rightclick."
|
|
|
|
if def.groups.can_eat_when_full == 1 then
|
|
|
|
s = s .. "\n" .. "You can eat this even when your hunger bar is full."
|
|
|
|
else
|
|
|
|
s = s .. "\n" .. "You cannot eat this when your hunger bar is full."
|
|
|
|
end
|
2017-03-18 16:18:12 +00:00
|
|
|
elseif def.groups.food == 3 then
|
2017-05-23 00:55:48 +00:00
|
|
|
s = s .. "To drink it, wield it, then rightclick."
|
|
|
|
if def.groups.can_eat_when_full ~= 1 then
|
|
|
|
s = s .. "\n" .. "You cannot drink this when your hunger bar is full."
|
|
|
|
end
|
2017-03-18 16:18:12 +00:00
|
|
|
else
|
2017-05-23 00:55:48 +00:00
|
|
|
s = s .. "To consume it, wield it, then rightclick."
|
|
|
|
if def.groups.can_eat_when_full ~= 1 then
|
|
|
|
s = s .. "\n" .. "You cannot consume this when your hunger bar is full."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if def.groups.no_eat_delay ~= 1 then
|
|
|
|
s = s .. "\n" .. "You have to wait for about 2 seconds before you can eat or drink again."
|
2017-03-18 16:18:12 +00:00
|
|
|
end
|
|
|
|
end
|
2017-05-23 00:55:48 +00:00
|
|
|
return s
|
2017-03-18 16:18:12 +00:00
|
|
|
end)
|
2017-03-18 18:38:40 +00:00
|
|
|
|
2017-05-21 01:12:17 +00:00
|
|
|
doc.sub.items.register_factoid(nil, "groups", function(itemstring, def)
|
|
|
|
local s = ""
|
|
|
|
if def.groups.eatable and def.groups.eatable > 0 then
|
|
|
|
s = s .. string.format("Hunger points restored: %d", def.groups.eatable)
|
|
|
|
end
|
|
|
|
if def._mcl_saturation and def._mcl_saturation > 0 then
|
|
|
|
s = s .. "\n" .. string.format("Saturation points restored: %.1f", def._mcl_saturation)
|
|
|
|
end
|
|
|
|
return s
|
|
|
|
end)
|
|
|
|
|
2017-03-22 17:48:27 +00:00
|
|
|
-- Mining, hardness and all that
|
2017-03-18 18:38:40 +00:00
|
|
|
doc.sub.items.register_factoid("nodes", "mining", function(itemstring, def)
|
2017-03-22 17:48:27 +00:00
|
|
|
local pickaxey = { "Diamond Pickaxe", "Iron Pickaxe", "Stone Pickaxe", "Golden Pickaxe", "Wooden Pickaxe" }
|
|
|
|
local axey = { "Diamond Axe", "Iron Axe", "Stone Axe", "Golden Axe", "Wooden Axe" }
|
|
|
|
local shovely = { "Diamond Shovel", "Iron Shovel", "Stone Shovel", "Golden Shovel", "Wooden Shovel" }
|
|
|
|
|
|
|
|
local datastring = ""
|
|
|
|
local groups = def.groups
|
|
|
|
if groups then
|
|
|
|
if groups.dig_immediate == 3 then
|
|
|
|
datastring = datastring .. "This block can be mined by any tool instantly." .. "\n"
|
|
|
|
else
|
|
|
|
local tool_minable = false
|
|
|
|
|
|
|
|
if groups.pickaxey then
|
|
|
|
for g=1, 6-groups.pickaxey do
|
|
|
|
datastring = datastring .. "• " .. pickaxey[g] .. "\n"
|
|
|
|
end
|
|
|
|
tool_minable = true
|
|
|
|
end
|
|
|
|
if groups.axey then
|
|
|
|
for g=1, 6-groups.axey do
|
|
|
|
datastring = datastring .. "• " .. axey[g] .. "\n"
|
|
|
|
end
|
|
|
|
tool_minable = true
|
|
|
|
end
|
|
|
|
if groups.shovely then
|
|
|
|
for g=1, 6-groups.shovely do
|
|
|
|
datastring = datastring .. "• " .. shovely[g] .. "\n"
|
|
|
|
end
|
|
|
|
tool_minable = true
|
|
|
|
end
|
|
|
|
if groups.shearsy then
|
|
|
|
datastring = datastring .. "• Shears" .. "\n"
|
|
|
|
tool_minable = true
|
|
|
|
end
|
|
|
|
if groups.swordy then
|
|
|
|
datastring = datastring .. "• Sword" .. "\n"
|
|
|
|
tool_minable = true
|
|
|
|
end
|
|
|
|
if groups.handy then
|
|
|
|
datastring = datastring .. "• Hand" .. "\n"
|
|
|
|
tool_minable = true
|
|
|
|
end
|
|
|
|
|
|
|
|
if tool_minable then
|
|
|
|
datastring = "This block can be mined by:\n" .. datastring .. "\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-03-18 18:38:40 +00:00
|
|
|
local hardness = def._mcl_hardness
|
|
|
|
if not hardness then
|
|
|
|
hardness = 0
|
|
|
|
end
|
2017-03-20 20:41:27 +00:00
|
|
|
if hardness == -1 then
|
2017-03-22 17:48:27 +00:00
|
|
|
datastring = datastring .. "Hardness: ∞"
|
2017-03-20 20:41:27 +00:00
|
|
|
else
|
2017-03-22 17:48:27 +00:00
|
|
|
datastring = datastring .. string.format("Hardness: %.2f", hardness)
|
2017-03-20 20:41:27 +00:00
|
|
|
end
|
2017-03-22 17:48:27 +00:00
|
|
|
return datastring
|
2017-03-18 18:38:40 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
-- TODO: Blast resistance (omitted for now because explosions ignore hardness)
|