Rename mobs mod to mcl_mobs
This commit is contained in:
parent
dafba9a07c
commit
34e92a361b
38 changed files with 39 additions and 44 deletions
14
mods/ENTITIES/mcl_mobs/crafts.lua
Normal file
14
mods/ENTITIES/mcl_mobs/crafts.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
|
||||
local S = mobs.intllib
|
||||
|
||||
-- name tag
|
||||
minetest.register_craftitem("mcl_mobs:nametag", {
|
||||
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 },
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue