Модуль:IanComradeBot/prototypes/fills/Item.json/data

Материал из Space Station 14 Вики

Для документации этого модуля может быть создана страница Модуль:IanComradeBot/prototypes/fills/Item.json/data/doc

local title = mw.title.new("Участник:IanComradeBot/prototypes/fills/Item.json")
local jsonData = title and title:getContent() or ""
local success, data = pcall(mw.text.jsonDecode, jsonData)

if success and type(data) == "table" then
    if data.id then
        return { data }
    else
        return data
    end
else
    return {}
end