Items

data/items.lua

These items will automatically be added to your shared items database/table if they don't already already.

Defaults

local items = {
    {        
        typeof = "item",
        name = "hacking_implant",
        label = "Hacking Implant",
        description = "",
        weight = 0.1,
        unique = false,
        image = "hacking_implant.png",
        useable = true,
        shouldClose = false,
        combinable = false,
        rare = true,
        canRemove = true,
        degradeModifier = 0.0
    },
}

Last updated