This repository has been archived on 2023-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
|
|
|
local S = mobs.intllib
|
|
|
|
-- name tag
|
|
minetest.register_craftitem("mobs:nametag", {
|
|
description = S("Name Tag"),
|
|
inventory_image = "mobs_nametag.png",
|
|
wield_image = "mobs_nametag.png",
|
|
stack_max = 64,
|
|
groups = { tool=1 },
|
|
})
|
|
|