This commit is contained in:
Nordi98 2025-07-29 00:25:21 +02:00
parent 032ec698d8
commit 1010f8fc79
49 changed files with 5818 additions and 0 deletions

View file

@ -0,0 +1,90 @@
["cigarette"] = {
label = 'Cigarette',
weight = 1,
stack = true,
description = ""
},
["cigbox"] = {
label = 'Cigarette Box',
weight = 1,
stack = true,
description = ""
},
["hamburger"] = {
label = 'Hamburger',
weight = 1,
stack = true,
description = ""
},
["water"] = {
label = 'Water',
weight = 1,
stack = true,
description = ""
},
["beer"] = {
label = 'Beer',
weight = 1,
stack = true,
description = ""
},
["soda"] = {
label = 'Soda',
weight = 1,
stack = true,
description = ""
},
["coffee"] = {
label = 'Coffee',
weight = 1,
stack = true,
description = ""
},
["egobar"] = {
label = 'Egobar',
weight = 1,
stack = true,
description = ""
},
["sandwich"] = {
label = 'Sandwich',
weight = 1,
stack = true,
description = ""
},
["crisps"] = {
label = 'Crisps',
weight = 1,
stack = true,
description = ""
},
["gin_shot"] = {
label = 'Gin Shot',
weight = 1,
stack = true,
description = ""
},
["vodka_shot"] = {
label = 'Vodka Shot',
weight = 1,
stack = true,
description = ""
},
["whiskey_bottle"] = {
label = 'Whiskey Bottle',
weight = 1,
stack = true,
description = ""
},
["tequila_bottle"] = {
label = 'Tequila Bottle',
weight = 1,
stack = true,
description = ""
},
["vodka_bottle"] = {
label = 'Vodka Bottle',
weight = 1,
stack = true,
description = ""
},

View file

@ -0,0 +1,180 @@
["cigarette"] = {
['name'] = 'cigarette',
['label'] = 'Cigarette',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'cigarette.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["cigbox"] = {
['name'] = 'cigbox',
['label'] = 'Cigarette Box',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'cigbox.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["hamburger"] = {
['name'] = 'hamburger',
['label'] = 'Hamburger',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'hamburger.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["water"] = {
['name'] = 'water',
['label'] = 'Water',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'water.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["beer"] = {
['name'] = 'beer',
['label'] = 'Beer',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'beer.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["soda"] = {
['name'] = 'soda',
['label'] = 'Soda',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'soda.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["coffee"] = {
['name'] = 'coffee',
['label'] = 'Coffee',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'coffee.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["egobar"] = {
['name'] = 'egobar',
['label'] = 'Egobar',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'egobar.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["sandwich"] = {
['name'] = 'sandwich',
['label'] = 'Sandwich',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'sandwich.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["crisps"] = {
['name'] = 'crisps',
['label'] = 'Crisps',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'crisps.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["gin_shot"] = {
['name'] = 'gin_shot',
['label'] = 'Gin Shot',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'gin_shot.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["vodka_shot"] = {
['name'] = 'vodka_shot',
['label'] = 'Vodka Shot',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'vodka_shot.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["whiskey_bottle"] = {
['name'] = 'whiskey_bottle',
['label'] = 'Whiskey Bottle',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'whiskey_bottle.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["tequila_bottle"] = {
['name'] = 'tequila_bottle',
['label'] = 'Tequila Bottle',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'tequila_bottle.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["vodka_bottle"] = {
['name'] = 'vodka_bottle',
['label'] = 'Vodka Bottle',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'vodka_bottle.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},

View file

@ -0,0 +1,180 @@
["cigarette"] = {
['name'] = 'cigarette',
['label'] = 'Cigarette',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'cigarette.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["cigbox"] = {
['name'] = 'cigbox',
['label'] = 'Cigarette Box',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'cigbox.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["hamburger"] = {
['name'] = 'hamburger',
['label'] = 'Hamburger',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'hamburger.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["water"] = {
['name'] = 'water',
['label'] = 'Water',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'water.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["beer"] = {
['name'] = 'beer',
['label'] = 'Beer',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'beer.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["soda"] = {
['name'] = 'soda',
['label'] = 'Soda',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'soda.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["coffee"] = {
['name'] = 'coffee',
['label'] = 'Coffee',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'coffee.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["egobar"] = {
['name'] = 'egobar',
['label'] = 'Egobar',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'egobar.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["sandwich"] = {
['name'] = 'sandwich',
['label'] = 'Sandwich',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'sandwich.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["crisps"] = {
['name'] = 'crisps',
['label'] = 'Crisps',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'crisps.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["gin_shot"] = {
['name'] = 'gin_shot',
['label'] = 'Gin Shot',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'gin_shot.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["vodka_shot"] = {
['name'] = 'vodka_shot',
['label'] = 'Vodka Shot',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'vodka_shot.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["whiskey_bottle"] = {
['name'] = 'whiskey_bottle',
['label'] = 'Whiskey Bottle',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'whiskey_bottle.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["tequila_bottle"] = {
['name'] = 'tequila_bottle',
['label'] = 'Tequila Bottle',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'tequila_bottle.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},
["vodka_bottle"] = {
['name'] = 'vodka_bottle',
['label'] = 'Vodka Bottle',
['weight'] = 1000,
['type'] = 'item',
['image'] = 'vodka_bottle.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ""
},