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'
},
['wedding_guestbook'] = {
name = 'wedding_guestbook',
label = 'Wedding Guest Book',
weight = 100,
type = 'item',
image = 'wedding_guestbook.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A guest book for the wedding',
},
['proposal_ring'] = {
name = 'proposal_ring',
label = 'Engagement Ring (For Proposal)',
weight = 100,
type = 'item',
image = 'proposal_ring.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A beautiful ring for proposing marriage',
},
['engagement_ring'] = {
name = 'engagement_ring',
label = 'Engagement Ring',
weight = 100,
type = 'item',
image = 'engagement_ring.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A beautiful engagement ring',
},
['wedding_ring'] = {
name = 'wedding_ring',
label = 'Wedding Ring',
weight = 100,
type = 'item',
image = 'wedding_ring.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A beautiful wedding ring',
},
['divorce_papers'] = {
name = 'divorce_papers',
label = 'Divorce Papers',
weight = 100,
type = 'item',
image = 'divorce_papers.png',
unique = true,
useable = true,
shouldClose = true,
combinable = nil,
description = 'A set of divorce papers',
},
Last updated