mtinfo/items.lua

17 lines
332 B
Lua
Raw Normal View History

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