MineClone2/mods/ENTITIES/mobs/crafts.lua

15 lines
480 B
Lua
Raw Normal View History

local S = mobs.intllib
-- name tag
minetest.register_craftitem("mobs:nametag", {
2017-01-16 23:58:09 +01:00
description = S("Name Tag"),
_doc_items_longdesc = S("A name tag is an item to name a mob."),
_doc_items_usagehelp = S("Before you use the name tag, you need to set a name at an anvil. Now you can use the name tag to name a mob with a rightclick. This uses up the name tag."),
inventory_image = "mobs_nametag.png",
wield_image = "mobs_nametag.png",
stack_max = 64,
groups = { tool=1 },
})