mtinfo/tools.lua

17 lines
338 B
Lua
Raw Normal View History

2020-01-06 13:31:18 +01:00
local tool_mapped_keys = {
"name",
"description",
"groups",
"inventory_image",
"stack_max",
"tool_capabilities",
"range"
}
2021-02-10 07:54:51 +01:00
function mtinfo.export_tools()
2020-01-06 13:31:18 +01:00
local data = {}
mtinfo.map_list(data, minetest.registered_tools, tool_mapped_keys)
mtinfo.export_json(mtinfo.basepath.."/data/tools.js", data, "mtinfo.tools")
2021-01-16 21:03:43 +01:00
end