Rename mobs mod to mcl_mobs
[MineClone/MineClone2.git] / mods / ENTITIES / mcl_mobs / crafts.lua
blob3422f3825c7774261b4b51f2ee519039c7ab7d41
2 local S = mobs.intllib
4 -- name tag
5 minetest.register_craftitem("mcl_mobs:nametag", {
6 description = S("Name Tag"),
7 _doc_items_longdesc = S("A name tag is an item to name a mob."),
8 _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."),
9 inventory_image = "mobs_nametag.png",
10 wield_image = "mobs_nametag.png",
11 stack_max = 64,
12 groups = { tool=1 },