Add head help

This commit is contained in:
Wuzzy 2017-03-11 18:56:01 +01:00
parent d64e233574
commit b8818e5d4f
1 changed files with 7 additions and 6 deletions

View File

@ -1,8 +1,9 @@
-- Heads system -- Heads system
local function addhead(node, desc) local function addhead(node, desc, longdesc)
minetest.register_node("mcl_heads:"..node, { minetest.register_node("mcl_heads:"..node, {
description = desc, description = desc,
_doc_items_longdesc = longdesc,
drawtype = "nodebox", drawtype = "nodebox",
is_ground_content = false, is_ground_content = false,
node_box = { node_box = {
@ -38,9 +39,9 @@ local function addhead(node, desc)
end end
-- Add heads -- Add heads
addhead("zombie", "Zombie Head") addhead("zombie", "Zombie Head", "A zombie heads is a small decorative block which resembles the head of a zombie.")
addhead("creeper", "Creeper Head") addhead("creeper", "Creeper Head", "A creeper heads is a small decorative block which resembles the head of a creeper.")
-- Original Minecraft name: “Head” -- Original Minecraft name: “Head”
addhead("steve", "Human Head") addhead("steve", "Human Head", "A human head is a small decorative block which resembles the head of a human (i.e. a player character).")
addhead("skeleton", "Skeleton Skull") addhead("skeleton", "Skeleton Skull", "A skeleton skull is a small decorative block which resembles the head of a skeleton.")
addhead("wither_skeleton", "Wither Skeleton Skull") addhead("wither_skeleton", "Wither Skeleton Skull", "A wither skeleton skull is a small decorative block which resembles the head of a wither skeleton.")