Inventory Setup

Add to items.lua

wedding_guestbook = {
    label = 'Wedding Guest Book',
    weight = 100,
    stack = false,
    close = true,
    description = 'A guest book for the wedding'
},
proposal_ring = {
    label = 'Engagement Ring (For Proposal)',
    weight = 100,
    stack = false,
    close = true,
    description = 'A beautiful ring for proposing marriage'
},
engagement_ring = {
    label = 'Engagement Ring',
    weight = 100,
    stack = false,
    close = true,
    description = 'A beautiful engagement ring'
},
wedding_ring = {
    label = 'Wedding Ring',
    weight = 100,
    stack = false,
    close = true,
    description = 'A beautiful wedding ring'
},
divorce_papers = {
    label = 'Divorce Papers',
    weight = 100,
    stack = false,
    close = true,
    description = 'A set of divorce papers'
},

Last updated