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)
|
2020-02-19 20:39:44 +01:00
|
|
|
mtinfo.export_json(mtinfo.basepath.."/data/items.js", data, "mtinfo.items")
|
2021-01-16 21:03:43 +01:00
|
|
|
end
|