arena_lib/items.lua

13 lines
314 B
Lua
Raw Normal View History

local S = minetest.get_translator("arena_lib")
minetest.register_tool("arena_lib:immunity", {
description = S("You're immune!"),
2020-04-16 04:27:08 -07:00
inventory_image = "arenalib_immunity.png",
groups = {not_in_creative_inventory = 1, oddly_breakable_by_hand = "2"},
on_place = function() end,
on_drop = function() end
})