Items

data/items.lua

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

local items = {
    {        
        typeof = "item",
        name = "scratch_it",
        label = "Scratch It",
        description = "A scratch-off lottery ticket.",
        weight = 0.1,
        unique = true,
        image = "scratchit.png",
        useable = true,
        shouldClose = false,
        combinable = false,
        rare = false,
        canRemove = true,
        degradeModifier = 1.0
    },
    ...
}

Last updated