VoxeLibre/mods/ENTITIES/mobs/crafts.lua

15 lines
425 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"),
2017-03-18 18:08:18 +01:00
_doc_items_longdesc = S("A name tag is an item to name most animals and monsters."),
_doc_items_usagehelp = S("Rightclick an animal or monster while holding the name tag, then enter a name."),
inventory_image = "mobs_nametag.png",
wield_image = "mobs_nametag.png",
stack_max = 64,
groups = { tool=1 },
})