Installation Guide
Follow these steps for flawless instalation:
Download the script from your keymaster.
Place the script into your server resource folder:
FXServer\server-data\resources\fivecode_uwucatcafejob
Write the script into your server.cfg:
ensure fivecode_uwucatcafejob
Setup your inventory:
ox
Add the following into:
ox_inventory\modules\items\client.lua
local usableFoodItems = {'uwu_uwucatcafehotchocolate', 'uwu_whiskersvanillalatte', 'uwu_purrfectcaramelmacchiato', 'uwu_meowchamintmocha', 'uwu_kittyscreamycappuccino', 'uwu_chocopurrfectioncake', 'uwu_vanillameowtasticake', 'uwu_kittenscloudpancakes', 'uwu_strawberrymeowdelight', 'uwu_mintypawprintcupcake', 'uwu_caramelkittycrunch', 'uwu_espressopawscupcake', 'uwu_cinnamonwhiskerdelight', 'uwu_steakeggbreakfastspecial', 'uwu_caramelizedonionsteakstirfry', 'uwu_chilliramen', 'uwu_kungpao', 'uwu_shanghaisoyscallionnoodles', 'uwu_friedrice'}
for _, item in pairs(usableFoodItems) do
Item(item, function(data, slot)
exports.ox_inventory:closeInventory()
TriggerEvent('fivecode_uwucatcafejob:useFoodItem', data.name)
end)
end
local toyFigureItems = {'uwu_mysterybox', 'uwu_browncat', 'uwu_redcat', 'uwu_greencat', 'uwu_yellowcat', 'uwu_purplecat', 'uwu_bluecat', 'uwu_shinywasabi', 'uwu_master', 'uwu_princessrobo'}
for _, item in pairs(toyFigureItems) do
Item(item, function(data, slot)
exports.ox_inventory:closeInventory()
TriggerEvent('fivecode_uwucatcafejob:useToyFigure', data.name)
end)
end
and this into:
ox_inventory\data\items.lua
-- Other
['uwu_cleansponge'] = {
label = 'Clean Sponge',
weight = 1,
stack = true,
close = true,
description = 'Clean sponge which is ready for some cleaning!'
},
['uwu_dirtysponge'] = {
label = 'Dirty Sponge',
weight = 1,
stack = true,
close = true,
description = 'Dirty sponge which needs to be cleaned!'
},
['uwu_cleanplate'] = {
label = 'Clean Plate',
weight = 1,
stack = true,
close = true,
description = 'Clean plate to put food on.'
},
['uwu_dirtyplate'] = {
label = 'Dirty Plate',
weight = 1,
stack = true,
close = true,
description = 'Dirty plate ready to be cleaned or served to your enemy.'
},
['uwu_cleancup'] = {
label = 'Clean Cup',
weight = 1,
stack = true,
close = true,
description = 'Clean cup ready to be filled with something delicious.'
},
['uwu_dirtycup'] = {
label = 'Dirty Cup',
weight = 1,
stack = true,
close = true,
description = 'Dirty cup ready to be cleaned or served to your enemy.'
},
-- Mystery Box
['uwu_mysterybox'] = {
label = 'UWU Mystery Box',
weight = 1,
stack = true,
close = true,
description = 'Mystery box from uwu cat cafe which contains a lot of cool figures!'
},
['uwu_browncat'] = {
label = 'Brown Cat Figure',
weight = 1,
stack = true,
close = true,
description = 'A cute brown cat figurine, perfect for collectors.'
},
['uwu_redcat'] = {
label = 'Red Cat Figure',
weight = 1,
stack = true,
close = true,
description = 'A rare red cat figure with a fiery appearance.'
},
['uwu_greencat'] = {
label = 'Green Cat Figure',
weight = 1,
stack = true,
close = true,
description = 'A calm and peaceful green cat figurine.'
},
['uwu_yellowcat'] = {
label = 'Yellow Cat Figure',
weight = 1,
stack = true,
close = true,
description = 'A bright and cheerful yellow cat figure.'
},
['uwu_purplecat'] = {
label = 'Purple Cat Figure',
weight = 1,
stack = true,
close = true,
description = 'A mystical and rare purple cat figurine.'
},
['uwu_bluecat'] = {
label = 'Blue Cat Figure',
weight = 1,
stack = true,
close = true,
description = 'A cool and collected blue cat figure for your collection.'
},
['uwu_shinywasabi'] = {
label = 'Shiny Wasabi Figure',
weight = 1,
stack = true,
close = true,
description = 'A shiny Wasabi figure, known for its sparkle.'
},
['uwu_master'] = {
label = 'Master Figure',
weight = 1,
stack = true,
close = true,
description = 'A legendary figure of a martial arts master.'
},
['uwu_princessrobo'] = {
label = 'Princess Robo Figure',
weight = 1,
stack = true,
close = true,
description = 'A futuristic figure of Princess Robo, the ruler of the tech kingdom.'
},
-- Cofee Machine
['uwu_expresoshot'] = {
label = 'Shot Of Espresso',
weight = 1,
stack = true,
close = true,
description = 'A bold espresso shot brewed fresh.'
},
['uwu_milk'] = {
label = 'Milk',
weight = 1,
stack = true,
close = true,
description = 'Milk.'
},
['uwu_steamedmilk'] = {
label = 'Steamed Milk',
weight = 1,
stack = true,
close = true,
description = 'Velvety steamed milk.'
},
['uwu_frostedmilk'] = {
label = 'Frosted Milk',
weight = 1,
stack = true,
close = true,
description = 'Frosted milk.'
},
['uwu_vanillasyrup'] = {
label = 'Vanilla Syrup',
weight = 1,
stack = true,
close = true,
description = 'Smooth vanilla syrup.'
},
['uwu_cinnamon'] = {
label = 'Cinnamon',
weight = 1,
stack = true,
close = true,
description = 'Fragrant cinnamon spice.'
},
['uwu_caramelsyrup'] = {
label = 'Caramel Syrup',
weight = 1,
stack = true,
close = true,
description = 'Rich caramel syrup.'
},
['uwu_caramelsauce'] = {
label = 'Caramel Sauce',
weight = 1,
stack = true,
close = true,
description = 'Decadent caramel sauce.'
},
['uwu_chocolate'] = {
label = 'Chocolate',
weight = 1,
stack = true,
close = true,
description = 'Luxurious chocolate.'
},
['uwu_peppermintextract'] = {
label = 'Peppermint Extract',
weight = 1,
stack = true,
close = true,
description = 'Cool peppermint extract.'
},
['uwu_brownsugar'] = {
label = 'Brown Sugar',
weight = 1,
stack = true,
close = true,
description = 'Sweet brown sugar crystals.'
},
['uwu_cocoapowder'] = {
label = 'Cocoa Powder',
weight = 1,
stack = true,
close = true,
description = 'Rich cocoa powder.'
},
['uwu_whiskersvanillalatte'] = {
label = 'Whiskers Vanilla Latte',
weight = 1,
stack = true,
close = true,
description = 'A rich and creamy vanilla latte with a smooth espresso base, purrfect for a cozy day.'
},
['uwu_purrfectcaramelmacchiato'] = {
label = 'Purrfect Caramel Macchiato',
weight = 1,
stack = true,
close = true,
description = 'Indulge in a velvety caramel macchiato, a delightful blend of sweet caramel and bold espresso.'
},
['uwu_meowchamintmocha'] = {
label = 'Meowcha Mint Mocha',
weight = 1,
stack = true,
close = true,
description = 'A refreshing twist of mint blended with rich chocolate and espresso, the ultimate mocha treat.'
},
['uwu_kittyscreamycappuccino'] = {
label = 'Kittys Creamy Cappuccino',
weight = 1,
stack = true,
close = true,
description = 'A classic cappuccino with an extra creamy texture, crafted to perfection for every coffee lover.'
},
['uwu_uwucatcafehotchocolate'] = {
label = 'ChocoPaws Delight',
weight = 1,
stack = true,
close = true,
description = 'A warm and comforting cup of rich, velvety hot chocolate, perfect for cozy moments with a playful twist.'
},
-- Mixer
['uwu_flour'] = {
label = 'Flour',
weight = 1,
stack = true,
close = true,
description = 'Essential flour, perfect for crafting smooth dough.'
},
['uwu_rawegg'] = {
label = 'Raw Egg',
weight = 1,
stack = true,
close = true,
description = 'Fresh egg, ready to blend into your dough creation.'
},
['uwu_butter'] = {
label = 'Butter',
weight = 1,
stack = true,
close = true,
description = 'Rich, creamy butter, ideal for baking.'
},
['uwu_yeast'] = {
label = 'Yeast',
weight = 1,
stack = true,
close = true,
description = 'Active yeast to help your dough rise to perfection.'
},
['uwu_strawberry'] = {
label = 'Strawberry',
weight = 1,
stack = true,
close = true,
description = 'Fresh and sweet strawberry.'
},
['uwu_blueberry'] = {
label = 'Blueberry',
weight = 1,
stack = true,
close = true,
description = 'Fresh and sweet blueberry.'
},
['uwu_normaldough'] = {
label = 'Dough',
weight = 1,
stack = true,
close = true,
description = 'Basic dough, ready to be transformed into a tasty treat.'
},
['uwu_chocolatedough'] = {
label = 'Chocolate Dough',
weight = 1,
stack = true,
close = true,
description = 'Rich chocolate dough, perfect for baking delicious cookies.'
},
['uwu_cupcakedough'] = {
label = 'Cupcake Dough',
weight = 1,
stack = true,
close = true,
description = 'Soft, fluffy cupcake dough, ready to be baked to perfection.'
},
-- Oven
['uwu_chocopurrfectioncake'] = {
label = 'Choco Purrfection Cake',
weight = 1,
stack = true,
close = true,
description = 'Chocolate cake for chocolate lowers.'
},
['uwu_kittenscloudpancakes'] = {
label = 'Kitten’s Cloud Pancakes',
weight = 1,
stack = true,
close = true,
description = 'Soft, fluffy pancakes that melt in your mouth, topped with an adorable kitten-themed design.'
},
['uwu_strawberrymeowdelight'] = {
label = 'Strawberry Meow Delight',
weight = 1,
stack = true,
close = true,
description = 'Fluffy strawberry pancakes with a sweet kitten-inspired topping, perfect for any dessert lover.'
},
['uwu_mintypawprintcupcake'] = {
label = 'Minty Pawprint Cupcake',
weight = 1,
stack = true,
close = true,
description = 'A refreshing mint-flavored cupcake decorated with a cute pawprint, offering a delightful minty treat.'
},
['uwu_caramelkittycrunch'] = {
label = 'Caramel Kitty Crunch',
weight = 1,
stack = true,
close = true,
description = 'A rich caramel cupcake with a crunchy toffee topping, finished with a drizzle of caramel and cute kitty ear decorations.'
},
['uwu_vanillameowtasticake'] = {
label = 'Vanilla Meowtastic Cake',
weight = 1,
stack = true,
close = true,
description = 'A delightful vanilla cake with layers of creamy vanilla buttercream, adorned with charming pastel cat whiskers and fondant ears.'
},
['uwu_espressopawscupcake'] = {
label = 'Espresso Paws Cupcake',
weight = 1,
stack = true,
close = true,
description = 'A rich espresso cupcake with a smooth coffee-flavored frosting, topped with a sprinkle of cocoa and cute pawprint decorations.'
},
['uwu_cinnamonwhiskerdelight'] = {
label = 'Cinnamon Whisker Delight',
weight = 1,
stack = true,
close = true,
description = 'A warm cinnamon cupcake with a swirl of creamy cinnamon frosting, finished with a dusting of cinnamon sugar and playful whisker accents.'
},
-- Stove
['uwu_noodles'] = {
label = 'Noodles',
weight = 1,
stack = true,
close = true,
description = 'Noodles ready to be put into a delicious dish.'
},
['uwu_rawsteak'] = {
label = 'Raw Steak',
weight = 1,
stack = true,
close = true,
description = 'Raw steak ready to be grilled.'
},
['uwu_grilledsteak'] = {
label = 'Grilled Steak',
weight = 1,
stack = true,
close = true,
description = 'Grilled steak ready to be eaten.'
},
['uwu_friedegg'] = {
label = 'Fried Egg',
weight = 1,
stack = true,
close = true,
description = 'Fried egg ready to be put into a burger and eaten.'
},
['uwu_rawonion'] = {
label = 'Onion',
weight = 1,
stack = true,
close = true,
description = 'Onion ready to be cut.'
},
['uwu_slicedonion'] = {
label = 'Sliced Onion',
weight = 1,
stack = true,
close = true,
description = 'Sliced onion ready to be put put into a delicious meal.'
},
['uwu_rice'] = {
label = 'Rice',
weight = 1,
stack = true,
close = true,
description = 'Cooking rice.'
},
['uwu_friedrice'] = {
label = 'Fried Rice',
weight = 1,
stack = true,
close = true,
description = 'Best tasting fried rice in your whole life.'
},
['uwu_steakeggbreakfastspecial'] = {
label = 'Steak & Egg Breakfast Special',
weight = 1,
stack = true,
close = true,
description = 'A classic combo of grilled steak, fried egg, and caramelized onions. A perfect hearty breakfast!'
},
['uwu_caramelizedonionsteakstirfry'] = {
label = 'Caramelized Onion Steak Stir-Fry',
weight = 1,
stack = true,
close = true,
description = 'Tender steak stir-fried with sweet caramelized onions, creating a rich and savory dish with a hint of sweetness.'
},
['uwu_chilliramen'] = {
label = 'Chilli Ramen',
weight = 1,
stack = true,
close = true,
description = 'Spicy ramen which will fill you up and make your face red.'
},
['uwu_kungpao'] = {
label = 'Kung Pao',
weight = 1,
stack = true,
close = true,
description = 'A bold and spicy dish with a satisfying blend of flavors, offering a deliciously balanced experience in every bite.'
},
['uwu_shanghaisoyscallionnoodles'] = {
label = 'Shanghai Soy Scallion Noodles',
weight = 1,
stack = true,
close = true,
description = 'A flavorful and aromatic dish with a perfect balance of savory and satisfying textures.'
},
['uwu_rawchillipepper'] = {
label = 'Chilli Pepper',
weight = 1,
stack = true,
close = true,
description = 'Chilli pepper ready to be cut.'
},
['uwu_slicedchillipepper'] = {
label = 'Sliced Chilli Pepper',
weight = 1,
stack = true,
close = true,
description = 'Sliced chilli pepper ready to be eaten.'
},
['uwu_rawcucumber'] = {
label = 'Cucumber',
weight = 1,
stack = true,
close = true,
description = 'Cucumber ready to be cut!'
},
['uwu_slicedcucumber'] = {
label = 'Sliced cucumber',
weight = 1,
stack = true,
close = true,
description = 'Sliced cucumber ready to be put on a burger and eaten!'
},
['uwu_rawchicken'] = {
label = 'Raw chicken',
weight = 1,
stack = true,
close = true,
description = 'Raw chicken.'
},
['uwu_grilledchicken'] = {
label = 'Grilled chicken',
weight = 1,
stack = true,
close = true,
description = 'Grilled chicken.'
},
['uwu_grilledchickenpiece'] = {
label = 'Grilled chicken piece',
weight = 1,
stack = true,
close = true,
description = 'Grilled chicken piece.'
},
qb
Add the following into:
qb-core\shared\items.lua
-- Other
uwu_cleansponge = {name = "uwu_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "uwu_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
uwu_dirtysponge = {name = "uwu_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "uwu_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
uwu_cleanplate = {name = "uwu_cleanplate", label = "Clean Plate", weight = 1, type = "item", image = "uwu_cleanplate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean plate to put food on."},
uwu_dirtyplate = {name = "uwu_dirtyplate", label = "Dirty Plate", weight = 1, type = "item", image = "uwu_dirtyplate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty plate ready to be cleaned or served to your enemy."},
uwu_cleancup = {name = "uwu_cleancup", label = "Clean Cup", weight = 1, type = "item", image = "uwu_cleancup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cup ready to be filled with something delicious."},
uwu_dirtycup = {name = "uwu_dirtycup", label = "Dirty Cup", weight = 1, type = "item", image = "uwu_dirtycup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cup ready to be cleaned or served to your enemy."},
-- Mystery Box
uwu_mysterybox = {name = "uwu_mysterybox", label = "UWU Mystery Box", weight = 1, type = "item", image = "uwu_mysterybox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Mystery box from uwu cat cafe which contains a lot of cool figures!"},
uwu_browncat = {name = "uwu_browncat", label = "Brown Cat Figure", weight = 1, type = "item", image = "uwu_browncat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A cute brown cat figurine, perfect for collectors."},
uwu_redcat = {name = "uwu_redcat", label = "Red Cat Figure", weight = 1, type = "item", image = "uwu_redcat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rare red cat figure with a fiery appearance."},
uwu_greencat = {name = "uwu_greencat", label = "Green Cat Figure", weight = 1, type = "item", image = "uwu_greencat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A calm and peaceful green cat figurine."},
uwu_yellowcat = {name = "uwu_yellowcat", label = "Yellow Cat Figure", weight = 1, type = "item", image = "uwu_yellowcat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bright and cheerful yellow cat figure."},
uwu_purplecat = {name = "uwu_purplecat", label = "Purple Cat Figure", weight = 1, type = "item", image = "uwu_purplecat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A mystical and rare purple cat figurine."},
uwu_bluecat = {name = "uwu_bluecat", label = "Blue Cat Figure", weight = 1, type = "item", image = "uwu_bluecat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A cool and collected blue cat figure for your collection."},
uwu_shinywasabi = {name = "uwu_shinywasabi", label = "Shiny Wasabi Figure", weight = 1, type = "item", image = "uwu_shinywasabi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shiny Wasabi figure, known for its sparkle."},
uwu_master = {name = "uwu_master", label = "Master Figure", weight = 1, type = "item", image = "uwu_master.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A legendary figure of a martial arts master."},
uwu_princessrobo = {name = "uwu_princessrobo", label = "Princess Robo Figure", weight = 1, type = "item", image = "uwu_princessrobo.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A futuristic figure of Princess Robo, the ruler of the tech kingdom."},
-- Cofee Machine
uwu_expresoshot = {name = "uwu_expresoshot", label = "Shot Of Espresso", weight = 1, type = "item", image = "uwu_expresoshot.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bold espresso shot brewed fresh."},
uwu_milk = {name = "uwu_milk", label = "Milk", weight = 1, type = "item", image = "uwu_milk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Milk."},
uwu_steamedmilk = {name = "uwu_steamedmilk", label = "Steamed Milk", weight = 1, type = "item", image = "uwu_steamedmilk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Velvety steamed milk."},
uwu_frostedmilk = {name = "uwu_frostedmilk", label = "Frosted Milk", weight = 1, type = "item", image = "uwu_frostedmilk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frosted milk."},
uwu_vanillasyrup = {name = "uwu_vanillasyrup", label = "Vanilla Syrup", weight = 1, type = "item", image = "uwu_vanillasyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Smooth vanilla syrup."},
uwu_cinnamon = {name = "uwu_cinnamon", label = "Cinnamon", weight = 1, type = "item", image = "uwu_cinnamon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fragrant cinnamon spice."},
uwu_caramelsyrup = {name = "uwu_caramelsyrup", label = "Caramel Syrup", weight = 1, type = "item", image = "uwu_caramelsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich caramel syrup."},
uwu_caramelsauce = {name = "uwu_caramelsauce", label = "Caramel Sauce", weight = 1, type = "item", image = "uwu_caramelsauce.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Decadent caramel sauce."},
uwu_chocolate = {name = "uwu_chocolate", label = "Chocolate", weight = 1, type = "item", image = "uwu_chocolate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Luxurious chocolate."},
uwu_peppermintextract = {name = "uwu_peppermintextract", label = "Peppermint Extract", weight = 1, type = "item", image = "uwu_peppermintextract.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cool peppermint extract."},
uwu_brownsugar = {name = "uwu_brownsugar", label = "Brown Sugar", weight = 1, type = "item", image = "uwu_brownsugar.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet brown sugar crystals."},
uwu_cocoapowder = {name = "uwu_cocoapowder", label = "Cocoa Powder", weight = 1, type = "item", image = "uwu_cocoapowder.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich cocoa powder."},
uwu_whiskersvanillalatte = {name = "uwu_whiskersvanillalatte", label = "Whiskers Vanilla Latte", weight = 1, type = "item", image = "uwu_whiskersvanillalatte.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and creamy vanilla latte with a smooth espresso base, purrfect for a cozy day."},
uwu_purrfectcaramelmacchiato = {name = "uwu_purrfectcaramelmacchiato", label = "Purrfect Caramel Macchiato", weight = 1, type = "item", image = "uwu_purrfectcaramelmacchiato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Indulge in a velvety caramel macchiato, a delightful blend of sweet caramel and bold espresso."},
uwu_meowchamintmocha = {name = "uwu_meowchamintmocha", label = "Meowcha Mint Mocha", weight = 1, type = "item", image = "uwu_meowchamintmocha.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing twist of mint blended with rich chocolate and espresso, the ultimate mocha treat."},
uwu_kittyscreamycappuccino = {name = "uwu_kittyscreamycappuccino", label = "Kittys Creamy Cappuccino", weight = 1, type = "item", image = "uwu_kittyscreamycappuccino.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic cappuccino with an extra creamy texture, crafted to perfection for every coffee lover."},
uwu_uwucatcafehotchocolate = {name = "uwu_uwucatcafehotchocolate", label = "ChocoPaws Delight", weight = 1, type = "item", image = "uwu_uwucatcafehotchocolate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A warm and comforting cup of rich, velvety hot chocolate, perfect for cozy moments with a playful twist."},
-- Mixer
uwu_flour = {name = "uwu_flour", label = "Flour", weight = 1, type = "item", image = "uwu_flour.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Essential flour, perfect for crafting smooth dough."},
uwu_rawegg = {name = "uwu_rawegg", label = "Raw Egg", weight = 1, type = "item", image = "uwu_rawegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh egg, ready to blend into your dough creation."},
uwu_butter = {name = "uwu_butter", label = "Butter", weight = 1, type = "item", image = "uwu_butter.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich, creamy butter, ideal for baking."},
uwu_yeast = {name = "uwu_yeast", label = "Yeast", weight = 1, type = "item", image = "uwu_yeast.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Active yeast to help your dough rise to perfection."},
uwu_strawberry = {name = "uwu_strawberry", label = "Strawberry", weight = 1, type = "item", image = "uwu_strawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh and sweet strawberry."},
uwu_blueberry = {name = "uwu_blueberry", label = "Blueberry", weight = 1, type = "item", image = "uwu_blueberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh and sweet blueberry."},
uwu_normaldough = {name = "uwu_normaldough", label = "Dough", weight = 1, type = "item", image = "uwu_normaldough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Basic dough, ready to be transformed into a tasty treat."},
uwu_chocolatedough = {name = "uwu_chocolatedough", label = "Chocolate Dough", weight = 1, type = "item", image = "uwu_chocolatedough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich chocolate dough, perfect for baking delicious cookies."},
uwu_cupcakedough = {name = "uwu_cupcakedough", label = "Cupcake Dough", weight = 1, type = "item", image = "uwu_cupcakedough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soft, fluffy cupcake dough, ready to be baked to perfection."},
-- Oven
uwu_chocopurrfectioncake = {name = "uwu_chocopurrfectioncake", label = "Choco Purrfection Cake", weight = 1, type = "item", image = "uwu_chocopurrfectioncake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chocolate cake for chocolate lovers."},
uwu_kittenscloudpancakes = {name = "uwu_kittenscloudpancakes", label = "Kitten’s Cloud Pancakes", weight = 1, type = "item", image = "uwu_kittenscloudpancakes.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soft, fluffy pancakes that melt in your mouth, topped with an adorable kitten-themed design."},
uwu_strawberrymeowdelight = {name = "uwu_strawberrymeowdelight", label = "Strawberry Meow Delight", weight = 1, type = "item", image = "uwu_strawberrymeowdelight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fluffy strawberry pancakes with a sweet kitten-inspired topping, perfect for any dessert lover."},
uwu_mintypawprintcupcake = {name = "uwu_mintypawprintcupcake", label = "Minty Pawprint Cupcake", weight = 1, type = "item", image = "uwu_mintypawprintcupcake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing mint-flavored cupcake decorated with a cute pawprint, offering a delightful minty treat."},
uwu_caramelkittycrunch = {name = "uwu_caramelkittycrunch", label = "Caramel Kitty Crunch", weight = 1, type = "item", image = "uwu_caramelkittycrunch.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich caramel cupcake with a crunchy toffee topping, finished with a drizzle of caramel and cute kitty ear decorations."},
uwu_vanillameowtasticake = {name = "uwu_vanillameowtasticake", label = "Vanilla Meowtastic Cake", weight = 1, type = "item", image = "uwu_vanillameowtasticake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A delightful vanilla cake with layers of creamy vanilla buttercream, adorned with charming pastel cat whiskers and fondant ears."},
uwu_espressopawscupcake = {name = "uwu_espressopawscupcake", label = "Espresso Paws Cupcake", weight = 1, type = "item", image = "uwu_espressopawscupcake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich espresso cupcake with a smooth coffee-flavored frosting, topped with a sprinkle of cocoa and cute pawprint decorations."},
uwu_cinnamonwhiskerdelight = {name = "uwu_cinnamonwhiskerdelight", label = "Cinnamon Whisker Delight", weight = 1, type = "item", image = "uwu_cinnamonwhiskerdelight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A warm cinnamon cupcake with a swirl of creamy cinnamon frosting, finished with a dusting of cinnamon sugar and playful whisker accents."},
-- Stove
uwu_noodles = {name = "uwu_noodles", label = "Noodles", weight = 1, type = "item", image = "uwu_noodles.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Noodles ready to be put into a delicious dish."},
uwu_rawsteak = {name = "uwu_rawsteak", label = "Raw Steak", weight = 1, type = "item", image = "uwu_rawsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw steak ready to be grilled."},
uwu_grilledsteak = {name = "uwu_grilledsteak", label = "Grilled Steak", weight = 1, type = "item", image = "uwu_grilledsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled steak ready to be eaten."},
uwu_friedegg = {name = "uwu_friedegg", label = "Fried Egg", weight = 1, type = "item", image = "uwu_friedegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried egg ready to be put into a burger and eaten."},
uwu_rawonion = {name = "uwu_rawonion", label = "Onion", weight = 1, type = "item", image = "uwu_rawonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ready to be cut."},
uwu_slicedonion = {name = "uwu_slicedonion", label = "Sliced Onion", weight = 1, type = "item", image = "uwu_slicedonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced onion ready to be put into a delicious meal."},
uwu_rice = {name = "uwu_rice", label = "Rice", weight = 1, type = "item", image = "uwu_rice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cooking rice."},
uwu_friedrice = {name = "uwu_friedrice", label = "Fried Rice", weight = 1, type = "item", image = "uwu_friedrice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Best tasting fried rice in your whole life."},
uwu_steakeggbreakfastspecial = {name = "uwu_steakeggbreakfastspecial", label = "Steak & Egg Breakfast Special",weight = 1, type = "item", image = "uwu_steakeggbreakfastspecial.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic combo of grilled steak, fried egg, and caramelized onions. A perfect hearty breakfast!"},
uwu_caramelizedonionsteakstirfry = {name = "uwu_caramelizedonionsteakstirfry", label = "Caramelized Onion Steak Stir-Fry", weight = 1, type = "item", image = "uwu_caramelizedonionsteakstirfry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tender steak stir-fried with sweet caramelized onions, creating a rich and savory dish with a hint of sweetness."},
uwu_chilliramen = {name = "uwu_chilliramen", label = "Chilli Ramen", weight = 1, type = "item", image = "uwu_chilliramen.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy ramen which will fill you up and make your face red."},
uwu_kungpao = {name = "uwu_kungpao", label = "Kung Pao", weight = 1, type = "item", image = "uwu_kungpao.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bold and spicy dish with a satisfying blend of flavors, offering a deliciously balanced experience in every bite."},
uwu_shanghaisoyscallionnoodles = {name = "uwu_shanghaisoyscallionnoodles", label = "Shanghai Soy Scallion Noodles",weight = 1, type = "item", image = "uwu_shanghaisoyscallionnoodles.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A flavorful and aromatic dish with a perfect balance of savory and satisfying textures."},
uwu_rawchillipepper = {name = "uwu_rawchillipepper", label = "Chilli Pepper", weight = 1, type = "item", image = "uwu_rawchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chilli pepper ready to be cut."},
uwu_slicedchillipepper = {name = "uwu_slicedchillipepper", label = "Sliced Chilli Pepper", weight = 1, type = "item", image = "uwu_slicedchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced chilli pepper ready to be eaten."},
uwu_rawcucumber = {name = "uwu_rawcucumber", label = "Cucumber", weight = 1, type = "item", image = "uwu_rawcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cucumber ready to be cut!"},
uwu_slicedcucumber = {name = "uwu_slicedcucumber", label = "Sliced cucumber", weight = 1, type = "item", image = "uwu_slicedcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cucumber ready to be put on a burger and eaten!"},
uwu_rawchicken = {name = "uwu_rawchicken", label = "Raw chicken", weight = 1, type = "item", image = "uwu_rawchicken.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw chicken."},
uwu_grilledchicken = {name = "uwu_grilledchicken", label = "Grilled chicken", weight = 1, type = "item", image = "uwu_grilledchicken.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled chicken."},
uwu_grilledchickenpiece = {name = "uwu_grilledchickenpiece", label = "Grilled chicken piece", weight = 1, type = "item", image = "uwu_grilledchickenpiece.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled chicken piece."},
qs
Add the following into:
qs-inventory\shared\items.lua
-- Other
['uwu_cleansponge'] = {['name'] = 'uwu_cleansponge', ['label'] = 'Clean Sponge', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cleansponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean sponge which is ready for some cleaning!'},
['uwu_dirtysponge'] = {['name'] = 'uwu_dirtysponge', ['label'] = 'Dirty Sponge', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_dirtysponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty sponge which needs to be cleaned!'},
['uwu_cleanplate'] = {['name'] = 'uwu_cleanplate', ['label'] = 'Clean Plate', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cleanplate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean plate to put food on.'},
['uwu_dirtyplate'] = {['name'] = 'uwu_dirtyplate', ['label'] = 'Dirty Plate', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_dirtyplate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty plate ready to be cleaned or served to your enemy.'},
['uwu_cleancup'] = {['name'] = 'uwu_cleancup', ['label'] = 'Clean Cup', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cleancup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean cup ready to be filled with something delicious.'},
['uwu_dirtycup'] = {['name'] = 'uwu_dirtycup', ['label'] = 'Dirty Cup', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_dirtycup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty cup ready to be cleaned or served to your enemy.'},
-- Mystery Box
['uwu_mysterybox'] = {['name'] = 'uwu_mysterybox', ['label'] = 'UWU Mystery Box', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_mysterybox.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Mystery box from uwu cat cafe which contains a lot of cool figures!'},
['uwu_browncat'] = {['name'] = 'uwu_browncat', ['label'] = 'Brown Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_browncat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A cute brown cat figurine, perfect for collectors.'},
['uwu_redcat'] = {['name'] = 'uwu_redcat', ['label'] = 'Red Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_redcat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rare red cat figure with a fiery appearance.'},
['uwu_greencat'] = {['name'] = 'uwu_greencat', ['label'] = 'Green Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_greencat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A calm and peaceful green cat figurine.'},
['uwu_yellowcat'] = {['name'] = 'uwu_yellowcat', ['label'] = 'Yellow Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_yellowcat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bright and cheerful yellow cat figure.'},
['uwu_purplecat'] = {['name'] = 'uwu_purplecat', ['label'] = 'Purple Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_purplecat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A mystical and rare purple cat figurine.'},
['uwu_bluecat'] = {['name'] = 'uwu_bluecat', ['label'] = 'Blue Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_bluecat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A cool and collected blue cat figure for your collection.'},
['uwu_shinywasabi'] = {['name'] = 'uwu_shinywasabi', ['label'] = 'Shiny Wasabi Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_shinywasabi.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A shiny Wasabi figure, known for its sparkle.'},
['uwu_master'] = {['name'] = 'uwu_master', ['label'] = 'Master Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_master.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A legendary figure of a martial arts master.'},
['uwu_princessrobo'] = {['name'] = 'uwu_princessrobo', ['label'] = 'Princess Robo Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_princessrobo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A futuristic figure of Princess Robo, the ruler of the tech kingdom.'},
-- Coffee Machine
['uwu_expresoshot'] = {['name'] = 'uwu_expresoshot', ['label'] = 'Shot Of Espresso', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_expresoshot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bold espresso shot brewed fresh.'},
['uwu_milk'] = {['name'] = 'uwu_milk', ['label'] = 'Milk', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_milk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Milk.'},
['uwu_steamedmilk'] = {['name'] = 'uwu_steamedmilk', ['label'] = 'Steamed Milk', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_steamedmilk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Velvety steamed milk.'},
['uwu_frostedmilk'] = {['name'] = 'uwu_frostedmilk', ['label'] = 'Frosted Milk', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_frostedmilk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Frosted milk.'},
['uwu_vanillasyrup'] = {['name'] = 'uwu_vanillasyrup', ['label'] = 'Vanilla Syrup', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_vanillasyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Smooth vanilla syrup.'},
['uwu_cinnamon'] = {['name'] = 'uwu_cinnamon', ['label'] = 'Cinnamon', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cinnamon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fragrant cinnamon spice.'},
['uwu_caramelsyrup'] = {['name'] = 'uwu_caramelsyrup', ['label'] = 'Caramel Syrup', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_caramelsyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich caramel syrup.'},
['uwu_caramelsauce'] = {['name'] = 'uwu_caramelsauce', ['label'] = 'Caramel Sauce', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_caramelsauce.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Decadent caramel sauce.'},
['uwu_chocolate'] = {['name'] = 'uwu_chocolate', ['label'] = 'Chocolate', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_chocolate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Luxurious chocolate.'},
['uwu_peppermintextract'] = {['name'] = 'uwu_peppermintextract', ['label'] = 'Peppermint Extract', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_peppermintextract.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cool peppermint extract.'},
['uwu_brownsugar'] = {['name'] = 'uwu_brownsugar', ['label'] = 'Brown Sugar', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_brownsugar.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sweet brown sugar crystals.'},
['uwu_cocoapowder'] = {['name'] = 'uwu_cocoapowder', ['label'] = 'Cocoa Powder', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cocoapowder.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich cocoa powder.'},
['uwu_whiskersvanillalatte'] = {['name'] = 'uwu_whiskersvanillalatte', ['label'] = 'Whiskers Vanilla Latte', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_whiskersvanillalatte.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich and creamy vanilla latte with a smooth espresso base, purrfect for a cozy day.'},
['uwu_purrfectcaramelmacchiato'] = {['name'] = 'uwu_purrfectcaramelmacchiato', ['label'] = 'Purrfect Caramel Macchiato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_purrfectcaramelmacchiato.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Indulge in a velvety caramel macchiato, a delightful blend of sweet caramel and bold espresso.'},
['uwu_meowchamintmocha'] = {['name'] = 'uwu_meowchamintmocha', ['label'] = 'Meowcha Mint Mocha', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_meowchamintmocha.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A refreshing twist of mint blended with rich chocolate and espresso, the ultimate mocha treat.'},
['uwu_kittyscreamycappuccino'] = {['name'] = 'uwu_kittyscreamycappuccino', ['label'] = 'Kittys Creamy Cappuccino', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_kittyscreamycappuccino.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A classic cappuccino with an extra creamy texture, crafted to perfection for every coffee lover.'},
['uwu_uwucatcafehotchocolate'] = {['name'] = 'uwu_uwucatcafehotchocolate', ['label'] = 'ChocoPaws Delight', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_uwucatcafehotchocolate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A warm and comforting cup of rich, velvety hot chocolate, perfect for cozy moments with a playful twist.'},
-- Cooking Ingredients
['uwu_flour'] = {['name'] = 'uwu_flour', ['label'] = 'Flour', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_flour.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Essential flour, perfect for crafting smooth dough.'},
['uwu_rawegg'] = {['name'] = 'uwu_rawegg', ['label'] = 'Raw Egg', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawegg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh egg, ready to blend into your dough creation.'},
['uwu_butter'] = {['name'] = 'uwu_butter', ['label'] = 'Butter', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_butter.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich, creamy butter, ideal for baking.'},
['uwu_yeast'] = {['name'] = 'uwu_yeast', ['label'] = 'Yeast', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_yeast.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Active yeast to help your dough rise to perfection.'},
['uwu_strawberry'] = {['name'] = 'uwu_strawberry', ['label'] = 'Strawberry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_strawberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh and sweet strawberry.'},
['uwu_blueberry'] = {['name'] = 'uwu_blueberry', ['label'] = 'Blueberry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_blueberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh and sweet blueberry.'},
['uwu_normaldough'] = {['name'] = 'uwu_normaldough', ['label'] = 'Dough', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_normaldough.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Basic dough, ready to be transformed into a tasty treat.'},
['uwu_chocolatedough'] = {['name'] = 'uwu_chocolatedough', ['label'] = 'Chocolate Dough', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_chocolatedough.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich chocolate dough, perfect for baking delicious cookies.'},
['uwu_cupcakedough'] = {['name'] = 'uwu_cupcakedough', ['label'] = 'Cupcake Dough', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cupcakedough.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Soft, fluffy cupcake dough, ready to be baked to perfection.'},
['uwu_chocopurrfectioncake'] = {['name'] = 'uwu_chocopurrfectioncake', ['label'] = 'Choco Purrfection Cake', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_chocopurrfectioncake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Chocolate cake for chocolate lovers.'},
['uwu_kittenscloudpancakes'] = {['name'] = 'uwu_kittenscloudpancakes', ['label'] = 'Kitten’s Cloud Pancakes', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_kittenscloudpancakes.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Soft, fluffy pancakes that melt in your mouth, topped with an adorable kitten-themed design.'},
['uwu_strawberrymeowdelight'] = {['name'] = 'uwu_strawberrymeowdelight', ['label'] = 'Strawberry Meow Delight', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_strawberrymeowdelight.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fluffy strawberry pancakes with a sweet kitten-inspired topping, perfect for any dessert lover.'},
['uwu_mintypawprintcupcake'] = {['name'] = 'uwu_mintypawprintcupcake', ['label'] = 'Minty Pawprint Cupcake', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_mintypawprintcupcake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A refreshing mint-flavored cupcake decorated with a cute pawprint, offering a delightful minty treat.'},
['uwu_caramelkittycrunch'] = {['name'] = 'uwu_caramelkittycrunch', ['label'] = 'Caramel Kitty Crunch', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_caramelkittycrunch.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich caramel cupcake with a crunchy toffee topping, finished with a drizzle of caramel and cute kitty ear decorations.'},
['uwu_vanillameowtasticake'] = {['name'] = 'uwu_vanillameowtasticake', ['label'] = 'Vanilla Meowtastic Cake', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_vanillameowtasticake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A delightful vanilla cake with layers of creamy vanilla buttercream, adorned with charming pastel cat whiskers and fondant ears.'},
['uwu_espressopawscupcake'] = {['name'] = 'uwu_espressopawscupcake', ['label'] = 'Espresso Paws Cupcake', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_espressopawscupcake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich espresso cupcake with a smooth coffee-flavored frosting, topped with a sprinkle of cocoa and cute pawprint decorations.'},
['uwu_cinnamonwhiskerdelight'] = {['name'] = 'uwu_cinnamonwhiskerdelight', ['label'] = 'Cinnamon Whisker Delight', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cinnamonwhiskerdelight.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A warm cinnamon cupcake with a swirl of creamy cinnamon frosting, finished with a dusting of cinnamon sugar and playful whisker accents.'},
-- Meals and Ingredients
['uwu_noodles'] = {['name'] = 'uwu_noodles', ['label'] = 'Noodles', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_noodles.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Noodles ready to be put into a delicious dish.'},
['uwu_rawsteak'] = {['name'] = 'uwu_rawsteak', ['label'] = 'Raw Steak', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawsteak.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw steak ready to be grilled.'},
['uwu_grilledsteak'] = {['name'] = 'uwu_grilledsteak', ['label'] = 'Grilled Steak', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_grilledsteak.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled steak ready to be eaten.'},
['uwu_friedegg'] = {['name'] = 'uwu_friedegg', ['label'] = 'Fried Egg', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_friedegg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried egg ready to be put into a burger and eaten.'},
['uwu_rawonion'] = {['name'] = 'uwu_rawonion', ['label'] = 'Onion', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawonion.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Onion ready to be cut.'},
['uwu_slicedonion'] = {['name'] = 'uwu_slicedonion', ['label'] = 'Sliced Onion', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_slicedonion.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced onion ready to be put into a delicious meal.'},
['uwu_rice'] = {['name'] = 'uwu_rice', ['label'] = 'Rice', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cooking rice.'},
['uwu_friedrice'] = {['name'] = 'uwu_friedrice', ['label'] = 'Fried Rice', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_friedrice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Best tasting fried rice in your whole life.'},
['uwu_steakeggbreakfastspecial'] = {['name'] = 'uwu_steakeggbreakfastspecial', ['label'] = 'Steak & Egg Breakfast Special', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_steakeggbreakfastspecial.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A classic combo of grilled steak, fried egg, and caramelized onions. A perfect hearty breakfast!'},
['uwu_caramelizedonionsteakstirfry'] = {['name'] = 'uwu_caramelizedonionsteakstirfry', ['label'] = 'Caramelized Onion Steak Stir-Fry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_caramelizedonionsteakstirfry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tender steak stir-fried with sweet caramelized onions, creating a rich and savory dish with a hint of sweetness.'},
['uwu_chilliramen'] = {['name'] = 'uwu_chilliramen', ['label'] = 'Chilli Ramen', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_chilliramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy ramen which will fill you up and make your face red.'},
['uwu_kungpao'] = {['name'] = 'uwu_kungpao', ['label'] = 'Kung Pao', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_kungpao.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bold and spicy dish with a satisfying blend of flavors, offering a deliciously balanced experience in every bite.'},
['uwu_shanghaisoyscallionnoodles'] = {['name'] = 'uwu_shanghaisoyscallionnoodles', ['label'] = 'Shanghai Soy Scallion Noodles', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_shanghaisoyscallionnoodles.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A flavorful and aromatic dish with a perfect balance of savory and satisfying textures.'},
['uwu_rawchillipepper'] = {['name'] = 'uwu_rawchillipepper', ['label'] = 'Chilli Pepper', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawchillipepper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Chilli pepper ready to be cut.'},
['uwu_slicedchillipepper'] = {['name'] = 'uwu_slicedchillipepper', ['label'] = 'Sliced Chilli Pepper', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_slicedchillipepper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced chilli pepper ready to be eaten.'},
['uwu_rawcucumber'] = {['name'] = 'uwu_rawcucumber', ['label'] = 'Cucumber', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawcucumber.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cucumber ready to be cut!'},
['uwu_slicedcucumber'] = {['name'] = 'uwu_slicedcucumber', ['label'] = 'Sliced cucumber', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_slicedcucumber.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced cucumber ready to be put on a burger and eaten!'},
['uwu_rawchicken'] = {['name'] = 'uwu_rawchicken', ['label'] = 'Raw chicken', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawchicken.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw chicken.'},
['uwu_grilledchicken'] = {['name'] = 'uwu_grilledchicken', ['label'] = 'Grilled chicken', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_grilledchicken.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled chicken.'},
['uwu_grilledchickenpiece'] = {['name'] = 'uwu_grilledchickenpiece', ['label'] = 'Grilled chicken piece', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_grilledchickenpiece.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled chicken piece.'},
ps
Add the following into:
qb-core\shared\items.lua
-- Other
uwu_cleansponge = {name = "uwu_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "uwu_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
uwu_dirtysponge = {name = "uwu_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "uwu_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
uwu_cleanplate = {name = "uwu_cleanplate", label = "Clean Plate", weight = 1, type = "item", image = "uwu_cleanplate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean plate to put food on."},
uwu_dirtyplate = {name = "uwu_dirtyplate", label = "Dirty Plate", weight = 1, type = "item", image = "uwu_dirtyplate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty plate ready to be cleaned or served to your enemy."},
uwu_cleancup = {name = "uwu_cleancup", label = "Clean Cup", weight = 1, type = "item", image = "uwu_cleancup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cup ready to be filled with something delicious."},
uwu_dirtycup = {name = "uwu_dirtycup", label = "Dirty Cup", weight = 1, type = "item", image = "uwu_dirtycup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cup ready to be cleaned or served to your enemy."},
-- Mystery Box
uwu_mysterybox = {name = "uwu_mysterybox", label = "UWU Mystery Box", weight = 1, type = "item", image = "uwu_mysterybox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Mystery box from uwu cat cafe which contains a lot of cool figures!"},
uwu_browncat = {name = "uwu_browncat", label = "Brown Cat Figure", weight = 1, type = "item", image = "uwu_browncat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A cute brown cat figurine, perfect for collectors."},
uwu_redcat = {name = "uwu_redcat", label = "Red Cat Figure", weight = 1, type = "item", image = "uwu_redcat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rare red cat figure with a fiery appearance."},
uwu_greencat = {name = "uwu_greencat", label = "Green Cat Figure", weight = 1, type = "item", image = "uwu_greencat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A calm and peaceful green cat figurine."},
uwu_yellowcat = {name = "uwu_yellowcat", label = "Yellow Cat Figure", weight = 1, type = "item", image = "uwu_yellowcat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bright and cheerful yellow cat figure."},
uwu_purplecat = {name = "uwu_purplecat", label = "Purple Cat Figure", weight = 1, type = "item", image = "uwu_purplecat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A mystical and rare purple cat figurine."},
uwu_bluecat = {name = "uwu_bluecat", label = "Blue Cat Figure", weight = 1, type = "item", image = "uwu_bluecat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A cool and collected blue cat figure for your collection."},
uwu_shinywasabi = {name = "uwu_shinywasabi", label = "Shiny Wasabi Figure", weight = 1, type = "item", image = "uwu_shinywasabi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shiny Wasabi figure, known for its sparkle."},
uwu_master = {name = "uwu_master", label = "Master Figure", weight = 1, type = "item", image = "uwu_master.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A legendary figure of a martial arts master."},
uwu_princessrobo = {name = "uwu_princessrobo", label = "Princess Robo Figure", weight = 1, type = "item", image = "uwu_princessrobo.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A futuristic figure of Princess Robo, the ruler of the tech kingdom."},
-- Cofee Machine
uwu_expresoshot = {name = "uwu_expresoshot", label = "Shot Of Espresso", weight = 1, type = "item", image = "uwu_expresoshot.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bold espresso shot brewed fresh."},
uwu_milk = {name = "uwu_milk", label = "Milk", weight = 1, type = "item", image = "uwu_milk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Milk."},
uwu_steamedmilk = {name = "uwu_steamedmilk", label = "Steamed Milk", weight = 1, type = "item", image = "uwu_steamedmilk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Velvety steamed milk."},
uwu_frostedmilk = {name = "uwu_frostedmilk", label = "Frosted Milk", weight = 1, type = "item", image = "uwu_frostedmilk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frosted milk."},
uwu_vanillasyrup = {name = "uwu_vanillasyrup", label = "Vanilla Syrup", weight = 1, type = "item", image = "uwu_vanillasyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Smooth vanilla syrup."},
uwu_cinnamon = {name = "uwu_cinnamon", label = "Cinnamon", weight = 1, type = "item", image = "uwu_cinnamon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fragrant cinnamon spice."},
uwu_caramelsyrup = {name = "uwu_caramelsyrup", label = "Caramel Syrup", weight = 1, type = "item", image = "uwu_caramelsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich caramel syrup."},
uwu_caramelsauce = {name = "uwu_caramelsauce", label = "Caramel Sauce", weight = 1, type = "item", image = "uwu_caramelsauce.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Decadent caramel sauce."},
uwu_chocolate = {name = "uwu_chocolate", label = "Chocolate", weight = 1, type = "item", image = "uwu_chocolate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Luxurious chocolate."},
uwu_peppermintextract = {name = "uwu_peppermintextract", label = "Peppermint Extract", weight = 1, type = "item", image = "uwu_peppermintextract.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cool peppermint extract."},
uwu_brownsugar = {name = "uwu_brownsugar", label = "Brown Sugar", weight = 1, type = "item", image = "uwu_brownsugar.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet brown sugar crystals."},
uwu_cocoapowder = {name = "uwu_cocoapowder", label = "Cocoa Powder", weight = 1, type = "item", image = "uwu_cocoapowder.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich cocoa powder."},
uwu_whiskersvanillalatte = {name = "uwu_whiskersvanillalatte", label = "Whiskers Vanilla Latte", weight = 1, type = "item", image = "uwu_whiskersvanillalatte.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and creamy vanilla latte with a smooth espresso base, purrfect for a cozy day."},
uwu_purrfectcaramelmacchiato = {name = "uwu_purrfectcaramelmacchiato", label = "Purrfect Caramel Macchiato", weight = 1, type = "item", image = "uwu_purrfectcaramelmacchiato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Indulge in a velvety caramel macchiato, a delightful blend of sweet caramel and bold espresso."},
uwu_meowchamintmocha = {name = "uwu_meowchamintmocha", label = "Meowcha Mint Mocha", weight = 1, type = "item", image = "uwu_meowchamintmocha.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing twist of mint blended with rich chocolate and espresso, the ultimate mocha treat."},
uwu_kittyscreamycappuccino = {name = "uwu_kittyscreamycappuccino", label = "Kittys Creamy Cappuccino", weight = 1, type = "item", image = "uwu_kittyscreamycappuccino.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic cappuccino with an extra creamy texture, crafted to perfection for every coffee lover."},
uwu_uwucatcafehotchocolate = {name = "uwu_uwucatcafehotchocolate", label = "ChocoPaws Delight", weight = 1, type = "item", image = "uwu_uwucatcafehotchocolate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A warm and comforting cup of rich, velvety hot chocolate, perfect for cozy moments with a playful twist."},
-- Mixer
uwu_flour = {name = "uwu_flour", label = "Flour", weight = 1, type = "item", image = "uwu_flour.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Essential flour, perfect for crafting smooth dough."},
uwu_rawegg = {name = "uwu_rawegg", label = "Raw Egg", weight = 1, type = "item", image = "uwu_rawegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh egg, ready to blend into your dough creation."},
uwu_butter = {name = "uwu_butter", label = "Butter", weight = 1, type = "item", image = "uwu_butter.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich, creamy butter, ideal for baking."},
uwu_yeast = {name = "uwu_yeast", label = "Yeast", weight = 1, type = "item", image = "uwu_yeast.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Active yeast to help your dough rise to perfection."},
uwu_strawberry = {name = "uwu_strawberry", label = "Strawberry", weight = 1, type = "item", image = "uwu_strawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh and sweet strawberry."},
uwu_blueberry = {name = "uwu_blueberry", label = "Blueberry", weight = 1, type = "item", image = "uwu_blueberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh and sweet blueberry."},
uwu_normaldough = {name = "uwu_normaldough", label = "Dough", weight = 1, type = "item", image = "uwu_normaldough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Basic dough, ready to be transformed into a tasty treat."},
uwu_chocolatedough = {name = "uwu_chocolatedough", label = "Chocolate Dough", weight = 1, type = "item", image = "uwu_chocolatedough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich chocolate dough, perfect for baking delicious cookies."},
uwu_cupcakedough = {name = "uwu_cupcakedough", label = "Cupcake Dough", weight = 1, type = "item", image = "uwu_cupcakedough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soft, fluffy cupcake dough, ready to be baked to perfection."},
-- Oven
uwu_chocopurrfectioncake = {name = "uwu_chocopurrfectioncake", label = "Choco Purrfection Cake", weight = 1, type = "item", image = "uwu_chocopurrfectioncake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chocolate cake for chocolate lovers."},
uwu_kittenscloudpancakes = {name = "uwu_kittenscloudpancakes", label = "Kitten’s Cloud Pancakes", weight = 1, type = "item", image = "uwu_kittenscloudpancakes.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soft, fluffy pancakes that melt in your mouth, topped with an adorable kitten-themed design."},
uwu_strawberrymeowdelight = {name = "uwu_strawberrymeowdelight", label = "Strawberry Meow Delight", weight = 1, type = "item", image = "uwu_strawberrymeowdelight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fluffy strawberry pancakes with a sweet kitten-inspired topping, perfect for any dessert lover."},
uwu_mintypawprintcupcake = {name = "uwu_mintypawprintcupcake", label = "Minty Pawprint Cupcake", weight = 1, type = "item", image = "uwu_mintypawprintcupcake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing mint-flavored cupcake decorated with a cute pawprint, offering a delightful minty treat."},
uwu_caramelkittycrunch = {name = "uwu_caramelkittycrunch", label = "Caramel Kitty Crunch", weight = 1, type = "item", image = "uwu_caramelkittycrunch.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich caramel cupcake with a crunchy toffee topping, finished with a drizzle of caramel and cute kitty ear decorations."},
uwu_vanillameowtasticake = {name = "uwu_vanillameowtasticake", label = "Vanilla Meowtastic Cake", weight = 1, type = "item", image = "uwu_vanillameowtasticake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A delightful vanilla cake with layers of creamy vanilla buttercream, adorned with charming pastel cat whiskers and fondant ears."},
uwu_espressopawscupcake = {name = "uwu_espressopawscupcake", label = "Espresso Paws Cupcake", weight = 1, type = "item", image = "uwu_espressopawscupcake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich espresso cupcake with a smooth coffee-flavored frosting, topped with a sprinkle of cocoa and cute pawprint decorations."},
uwu_cinnamonwhiskerdelight = {name = "uwu_cinnamonwhiskerdelight", label = "Cinnamon Whisker Delight", weight = 1, type = "item", image = "uwu_cinnamonwhiskerdelight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A warm cinnamon cupcake with a swirl of creamy cinnamon frosting, finished with a dusting of cinnamon sugar and playful whisker accents."},
-- Stove
uwu_noodles = {name = "uwu_noodles", label = "Noodles", weight = 1, type = "item", image = "uwu_noodles.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Noodles ready to be put into a delicious dish."},
uwu_rawsteak = {name = "uwu_rawsteak", label = "Raw Steak", weight = 1, type = "item", image = "uwu_rawsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw steak ready to be grilled."},
uwu_grilledsteak = {name = "uwu_grilledsteak", label = "Grilled Steak", weight = 1, type = "item", image = "uwu_grilledsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled steak ready to be eaten."},
uwu_friedegg = {name = "uwu_friedegg", label = "Fried Egg", weight = 1, type = "item", image = "uwu_friedegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried egg ready to be put into a burger and eaten."},
uwu_rawonion = {name = "uwu_rawonion", label = "Onion", weight = 1, type = "item", image = "uwu_rawonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ready to be cut."},
uwu_slicedonion = {name = "uwu_slicedonion", label = "Sliced Onion", weight = 1, type = "item", image = "uwu_slicedonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced onion ready to be put into a delicious meal."},
uwu_rice = {name = "uwu_rice", label = "Rice", weight = 1, type = "item", image = "uwu_rice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cooking rice."},
uwu_friedrice = {name = "uwu_friedrice", label = "Fried Rice", weight = 1, type = "item", image = "uwu_friedrice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Best tasting fried rice in your whole life."},
uwu_steakeggbreakfastspecial = {name = "uwu_steakeggbreakfastspecial", label = "Steak & Egg Breakfast Special",weight = 1, type = "item", image = "uwu_steakeggbreakfastspecial.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic combo of grilled steak, fried egg, and caramelized onions. A perfect hearty breakfast!"},
uwu_caramelizedonionsteakstirfry = {name = "uwu_caramelizedonionsteakstirfry", label = "Caramelized Onion Steak Stir-Fry", weight = 1, type = "item", image = "uwu_caramelizedonionsteakstirfry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tender steak stir-fried with sweet caramelized onions, creating a rich and savory dish with a hint of sweetness."},
uwu_chilliramen = {name = "uwu_chilliramen", label = "Chilli Ramen", weight = 1, type = "item", image = "uwu_chilliramen.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy ramen which will fill you up and make your face red."},
uwu_kungpao = {name = "uwu_kungpao", label = "Kung Pao", weight = 1, type = "item", image = "uwu_kungpao.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bold and spicy dish with a satisfying blend of flavors, offering a deliciously balanced experience in every bite."},
uwu_shanghaisoyscallionnoodles = {name = "uwu_shanghaisoyscallionnoodles", label = "Shanghai Soy Scallion Noodles",weight = 1, type = "item", image = "uwu_shanghaisoyscallionnoodles.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A flavorful and aromatic dish with a perfect balance of savory and satisfying textures."},
uwu_rawchillipepper = {name = "uwu_rawchillipepper", label = "Chilli Pepper", weight = 1, type = "item", image = "uwu_rawchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chilli pepper ready to be cut."},
uwu_slicedchillipepper = {name = "uwu_slicedchillipepper", label = "Sliced Chilli Pepper", weight = 1, type = "item", image = "uwu_slicedchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced chilli pepper ready to be eaten."},
uwu_rawcucumber = {name = "uwu_rawcucumber", label = "Cucumber", weight = 1, type = "item", image = "uwu_rawcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cucumber ready to be cut!"},
uwu_slicedcucumber = {name = "uwu_slicedcucumber", label = "Sliced cucumber", weight = 1, type = "item", image = "uwu_slicedcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cucumber ready to be put on a burger and eaten!"},
uwu_rawchicken = {name = "uwu_rawchicken", label = "Raw chicken", weight = 1, type = "item", image = "uwu_rawchicken.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw chicken."},
uwu_grilledchicken = {name = "uwu_grilledchicken", label = "Grilled chicken", weight = 1, type = "item", image = "uwu_grilledchicken.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled chicken."},
uwu_grilledchickenpiece = {name = "uwu_grilledchickenpiece", label = "Grilled chicken piece", weight = 1, type = "item", image = "uwu_grilledchickenpiece.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled chicken piece."},
codem
Add the following into:
codem-inventory\config\itemlist.lua
-- Other
uwu_cleansponge = {name = "uwu_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "uwu_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
uwu_dirtysponge = {name = "uwu_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "uwu_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
uwu_cleanplate = {name = "uwu_cleanplate", label = "Clean Plate", weight = 1, type = "item", image = "uwu_cleanplate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean plate to put food on."},
uwu_dirtyplate = {name = "uwu_dirtyplate", label = "Dirty Plate", weight = 1, type = "item", image = "uwu_dirtyplate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty plate ready to be cleaned or served to your enemy."},
uwu_cleancup = {name = "uwu_cleancup", label = "Clean Cup", weight = 1, type = "item", image = "uwu_cleancup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cup ready to be filled with something delicious."},
uwu_dirtycup = {name = "uwu_dirtycup", label = "Dirty Cup", weight = 1, type = "item", image = "uwu_dirtycup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cup ready to be cleaned or served to your enemy."},
-- Mystery Box
uwu_mysterybox = {name = "uwu_mysterybox", label = "UWU Mystery Box", weight = 1, type = "item", image = "uwu_mysterybox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Mystery box from uwu cat cafe which contains a lot of cool figures!"},
uwu_browncat = {name = "uwu_browncat", label = "Brown Cat Figure", weight = 1, type = "item", image = "uwu_browncat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A cute brown cat figurine, perfect for collectors."},
uwu_redcat = {name = "uwu_redcat", label = "Red Cat Figure", weight = 1, type = "item", image = "uwu_redcat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rare red cat figure with a fiery appearance."},
uwu_greencat = {name = "uwu_greencat", label = "Green Cat Figure", weight = 1, type = "item", image = "uwu_greencat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A calm and peaceful green cat figurine."},
uwu_yellowcat = {name = "uwu_yellowcat", label = "Yellow Cat Figure", weight = 1, type = "item", image = "uwu_yellowcat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bright and cheerful yellow cat figure."},
uwu_purplecat = {name = "uwu_purplecat", label = "Purple Cat Figure", weight = 1, type = "item", image = "uwu_purplecat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A mystical and rare purple cat figurine."},
uwu_bluecat = {name = "uwu_bluecat", label = "Blue Cat Figure", weight = 1, type = "item", image = "uwu_bluecat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A cool and collected blue cat figure for your collection."},
uwu_shinywasabi = {name = "uwu_shinywasabi", label = "Shiny Wasabi Figure", weight = 1, type = "item", image = "uwu_shinywasabi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shiny Wasabi figure, known for its sparkle."},
uwu_master = {name = "uwu_master", label = "Master Figure", weight = 1, type = "item", image = "uwu_master.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A legendary figure of a martial arts master."},
uwu_princessrobo = {name = "uwu_princessrobo", label = "Princess Robo Figure", weight = 1, type = "item", image = "uwu_princessrobo.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A futuristic figure of Princess Robo, the ruler of the tech kingdom."},
-- Cofee Machine
uwu_expresoshot = {name = "uwu_expresoshot", label = "Shot Of Espresso", weight = 1, type = "item", image = "uwu_expresoshot.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bold espresso shot brewed fresh."},
uwu_milk = {name = "uwu_milk", label = "Milk", weight = 1, type = "item", image = "uwu_milk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Milk."},
uwu_steamedmilk = {name = "uwu_steamedmilk", label = "Steamed Milk", weight = 1, type = "item", image = "uwu_steamedmilk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Velvety steamed milk."},
uwu_frostedmilk = {name = "uwu_frostedmilk", label = "Frosted Milk", weight = 1, type = "item", image = "uwu_frostedmilk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frosted milk."},
uwu_vanillasyrup = {name = "uwu_vanillasyrup", label = "Vanilla Syrup", weight = 1, type = "item", image = "uwu_vanillasyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Smooth vanilla syrup."},
uwu_cinnamon = {name = "uwu_cinnamon", label = "Cinnamon", weight = 1, type = "item", image = "uwu_cinnamon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fragrant cinnamon spice."},
uwu_caramelsyrup = {name = "uwu_caramelsyrup", label = "Caramel Syrup", weight = 1, type = "item", image = "uwu_caramelsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich caramel syrup."},
uwu_caramelsauce = {name = "uwu_caramelsauce", label = "Caramel Sauce", weight = 1, type = "item", image = "uwu_caramelsauce.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Decadent caramel sauce."},
uwu_chocolate = {name = "uwu_chocolate", label = "Chocolate", weight = 1, type = "item", image = "uwu_chocolate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Luxurious chocolate."},
uwu_peppermintextract = {name = "uwu_peppermintextract", label = "Peppermint Extract", weight = 1, type = "item", image = "uwu_peppermintextract.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cool peppermint extract."},
uwu_brownsugar = {name = "uwu_brownsugar", label = "Brown Sugar", weight = 1, type = "item", image = "uwu_brownsugar.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet brown sugar crystals."},
uwu_cocoapowder = {name = "uwu_cocoapowder", label = "Cocoa Powder", weight = 1, type = "item", image = "uwu_cocoapowder.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich cocoa powder."},
uwu_whiskersvanillalatte = {name = "uwu_whiskersvanillalatte", label = "Whiskers Vanilla Latte", weight = 1, type = "item", image = "uwu_whiskersvanillalatte.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and creamy vanilla latte with a smooth espresso base, purrfect for a cozy day."},
uwu_purrfectcaramelmacchiato = {name = "uwu_purrfectcaramelmacchiato", label = "Purrfect Caramel Macchiato", weight = 1, type = "item", image = "uwu_purrfectcaramelmacchiato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Indulge in a velvety caramel macchiato, a delightful blend of sweet caramel and bold espresso."},
uwu_meowchamintmocha = {name = "uwu_meowchamintmocha", label = "Meowcha Mint Mocha", weight = 1, type = "item", image = "uwu_meowchamintmocha.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing twist of mint blended with rich chocolate and espresso, the ultimate mocha treat."},
uwu_kittyscreamycappuccino = {name = "uwu_kittyscreamycappuccino", label = "Kittys Creamy Cappuccino", weight = 1, type = "item", image = "uwu_kittyscreamycappuccino.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic cappuccino with an extra creamy texture, crafted to perfection for every coffee lover."},
uwu_uwucatcafehotchocolate = {name = "uwu_uwucatcafehotchocolate", label = "ChocoPaws Delight", weight = 1, type = "item", image = "uwu_uwucatcafehotchocolate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A warm and comforting cup of rich, velvety hot chocolate, perfect for cozy moments with a playful twist."},
-- Mixer
uwu_flour = {name = "uwu_flour", label = "Flour", weight = 1, type = "item", image = "uwu_flour.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Essential flour, perfect for crafting smooth dough."},
uwu_rawegg = {name = "uwu_rawegg", label = "Raw Egg", weight = 1, type = "item", image = "uwu_rawegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh egg, ready to blend into your dough creation."},
uwu_butter = {name = "uwu_butter", label = "Butter", weight = 1, type = "item", image = "uwu_butter.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich, creamy butter, ideal for baking."},
uwu_yeast = {name = "uwu_yeast", label = "Yeast", weight = 1, type = "item", image = "uwu_yeast.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Active yeast to help your dough rise to perfection."},
uwu_strawberry = {name = "uwu_strawberry", label = "Strawberry", weight = 1, type = "item", image = "uwu_strawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh and sweet strawberry."},
uwu_blueberry = {name = "uwu_blueberry", label = "Blueberry", weight = 1, type = "item", image = "uwu_blueberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh and sweet blueberry."},
uwu_normaldough = {name = "uwu_normaldough", label = "Dough", weight = 1, type = "item", image = "uwu_normaldough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Basic dough, ready to be transformed into a tasty treat."},
uwu_chocolatedough = {name = "uwu_chocolatedough", label = "Chocolate Dough", weight = 1, type = "item", image = "uwu_chocolatedough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich chocolate dough, perfect for baking delicious cookies."},
uwu_cupcakedough = {name = "uwu_cupcakedough", label = "Cupcake Dough", weight = 1, type = "item", image = "uwu_cupcakedough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soft, fluffy cupcake dough, ready to be baked to perfection."},
-- Oven
uwu_chocopurrfectioncake = {name = "uwu_chocopurrfectioncake", label = "Choco Purrfection Cake", weight = 1, type = "item", image = "uwu_chocopurrfectioncake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chocolate cake for chocolate lovers."},
uwu_kittenscloudpancakes = {name = "uwu_kittenscloudpancakes", label = "Kitten’s Cloud Pancakes", weight = 1, type = "item", image = "uwu_kittenscloudpancakes.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soft, fluffy pancakes that melt in your mouth, topped with an adorable kitten-themed design."},
uwu_strawberrymeowdelight = {name = "uwu_strawberrymeowdelight", label = "Strawberry Meow Delight", weight = 1, type = "item", image = "uwu_strawberrymeowdelight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fluffy strawberry pancakes with a sweet kitten-inspired topping, perfect for any dessert lover."},
uwu_mintypawprintcupcake = {name = "uwu_mintypawprintcupcake", label = "Minty Pawprint Cupcake", weight = 1, type = "item", image = "uwu_mintypawprintcupcake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing mint-flavored cupcake decorated with a cute pawprint, offering a delightful minty treat."},
uwu_caramelkittycrunch = {name = "uwu_caramelkittycrunch", label = "Caramel Kitty Crunch", weight = 1, type = "item", image = "uwu_caramelkittycrunch.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich caramel cupcake with a crunchy toffee topping, finished with a drizzle of caramel and cute kitty ear decorations."},
uwu_vanillameowtasticake = {name = "uwu_vanillameowtasticake", label = "Vanilla Meowtastic Cake", weight = 1, type = "item", image = "uwu_vanillameowtasticake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A delightful vanilla cake with layers of creamy vanilla buttercream, adorned with charming pastel cat whiskers and fondant ears."},
uwu_espressopawscupcake = {name = "uwu_espressopawscupcake", label = "Espresso Paws Cupcake", weight = 1, type = "item", image = "uwu_espressopawscupcake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich espresso cupcake with a smooth coffee-flavored frosting, topped with a sprinkle of cocoa and cute pawprint decorations."},
uwu_cinnamonwhiskerdelight = {name = "uwu_cinnamonwhiskerdelight", label = "Cinnamon Whisker Delight", weight = 1, type = "item", image = "uwu_cinnamonwhiskerdelight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A warm cinnamon cupcake with a swirl of creamy cinnamon frosting, finished with a dusting of cinnamon sugar and playful whisker accents."},
-- Stove
uwu_noodles = {name = "uwu_noodles", label = "Noodles", weight = 1, type = "item", image = "uwu_noodles.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Noodles ready to be put into a delicious dish."},
uwu_rawsteak = {name = "uwu_rawsteak", label = "Raw Steak", weight = 1, type = "item", image = "uwu_rawsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw steak ready to be grilled."},
uwu_grilledsteak = {name = "uwu_grilledsteak", label = "Grilled Steak", weight = 1, type = "item", image = "uwu_grilledsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled steak ready to be eaten."},
uwu_friedegg = {name = "uwu_friedegg", label = "Fried Egg", weight = 1, type = "item", image = "uwu_friedegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried egg ready to be put into a burger and eaten."},
uwu_rawonion = {name = "uwu_rawonion", label = "Onion", weight = 1, type = "item", image = "uwu_rawonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ready to be cut."},
uwu_slicedonion = {name = "uwu_slicedonion", label = "Sliced Onion", weight = 1, type = "item", image = "uwu_slicedonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced onion ready to be put into a delicious meal."},
uwu_rice = {name = "uwu_rice", label = "Rice", weight = 1, type = "item", image = "uwu_rice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cooking rice."},
uwu_friedrice = {name = "uwu_friedrice", label = "Fried Rice", weight = 1, type = "item", image = "uwu_friedrice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Best tasting fried rice in your whole life."},
uwu_steakeggbreakfastspecial = {name = "uwu_steakeggbreakfastspecial", label = "Steak & Egg Breakfast Special",weight = 1, type = "item", image = "uwu_steakeggbreakfastspecial.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic combo of grilled steak, fried egg, and caramelized onions. A perfect hearty breakfast!"},
uwu_caramelizedonionsteakstirfry = {name = "uwu_caramelizedonionsteakstirfry", label = "Caramelized Onion Steak Stir-Fry", weight = 1, type = "item", image = "uwu_caramelizedonionsteakstirfry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tender steak stir-fried with sweet caramelized onions, creating a rich and savory dish with a hint of sweetness."},
uwu_chilliramen = {name = "uwu_chilliramen", label = "Chilli Ramen", weight = 1, type = "item", image = "uwu_chilliramen.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy ramen which will fill you up and make your face red."},
uwu_kungpao = {name = "uwu_kungpao", label = "Kung Pao", weight = 1, type = "item", image = "uwu_kungpao.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bold and spicy dish with a satisfying blend of flavors, offering a deliciously balanced experience in every bite."},
uwu_shanghaisoyscallionnoodles = {name = "uwu_shanghaisoyscallionnoodles", label = "Shanghai Soy Scallion Noodles",weight = 1, type = "item", image = "uwu_shanghaisoyscallionnoodles.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A flavorful and aromatic dish with a perfect balance of savory and satisfying textures."},
uwu_rawchillipepper = {name = "uwu_rawchillipepper", label = "Chilli Pepper", weight = 1, type = "item", image = "uwu_rawchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chilli pepper ready to be cut."},
uwu_slicedchillipepper = {name = "uwu_slicedchillipepper", label = "Sliced Chilli Pepper", weight = 1, type = "item", image = "uwu_slicedchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced chilli pepper ready to be eaten."},
uwu_rawcucumber = {name = "uwu_rawcucumber", label = "Cucumber", weight = 1, type = "item", image = "uwu_rawcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cucumber ready to be cut!"},
uwu_slicedcucumber = {name = "uwu_slicedcucumber", label = "Sliced cucumber", weight = 1, type = "item", image = "uwu_slicedcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cucumber ready to be put on a burger and eaten!"},
uwu_rawchicken = {name = "uwu_rawchicken", label = "Raw chicken", weight = 1, type = "item", image = "uwu_rawchicken.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw chicken."},
uwu_grilledchicken = {name = "uwu_grilledchicken", label = "Grilled chicken", weight = 1, type = "item", image = "uwu_grilledchicken.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled chicken."},
uwu_grilledchickenpiece = {name = "uwu_grilledchickenpiece", label = "Grilled chicken piece", weight = 1, type = "item", image = "uwu_grilledchickenpiece.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled chicken piece."},
core
Add the following into your database:
INSERT INTO items (name, label, weight, rare, can_remove, desc) VALUES
-- Other
('uwu_cleansponge', 'Clean Sponge', 50, 0, 1, 'Clean sponge which is ready for some cleaning!'),
('uwu_dirtysponge', 'Dirty Sponge', 50, 0, 1, 'Dirty sponge which needs to be cleaned!'),
('uwu_cleanplate', 'Clean Plate', 50, 0, 1, 'Clean plate to put food on.'),
('uwu_dirtyplate', 'Dirty Plate', 50, 0, 1, 'Dirty plate ready to be cleaned or served to your enemy.'),
('uwu_cleancup', 'Clean Cup', 50, 0, 1, 'Clean cup ready to be filled with something delicious.'),
('uwu_dirtycup', 'Dirty Cup', 50, 0, 1, 'Dirty cup ready to be cleaned or served to your enemy.'),
-- Mystery Box
('uwu_mysterybox', 'UWU Mystery Box', 50, 0, 1, 'Mystery box from uwu cat cafe which contains a lot of cool figures!'),
('uwu_browncat', 'Brown Cat Figure', 50, 0, 1, 'A cute brown cat figurine, perfect for collectors.'),
('uwu_redcat', 'Red Cat Figure', 50, 0, 1, 'A rare red cat figure with a fiery appearance.'),
('uwu_greencat', 'Green Cat Figure', 50, 0, 1, 'A calm and peaceful green cat figurine.'),
('uwu_yellowcat', 'Yellow Cat Figure', 50, 0, 1, 'A bright and cheerful yellow cat figure.'),
('uwu_purplecat', 'Purple Cat Figure', 50, 0, 1, 'A mystical and rare purple cat figurine.'),
('uwu_bluecat', 'Blue Cat Figure', 50, 0, 1, 'A cool and collected blue cat figure for your collection.'),
('uwu_shinywasabi', 'Shiny Wasabi Figure', 50, 0, 1, 'A shiny Wasabi figure, known for its sparkle.'),
('uwu_master', 'Master Figure', 50, 0, 1, 'A legendary figure of a martial arts master.'),
('uwu_princessrobo', 'Princess Robo Figure', 50, 0, 1, 'A futuristic figure of Princess Robo, the ruler of the tech kingdom.'),
-- Cofee Machine
('uwu_expresoshot', 'Shot Of Espresso', 50, 0, 1, 'A bold espresso shot brewed fresh.'),
('uwu_milk', 'Milk', 50, 0, 1, 'Milk.'),
('uwu_steamedmilk', 'Steamed Milk', 50, 0, 1, 'Velvety steamed milk.'),
('uwu_frostedmilk', 'Frosted Milk', 50, 0, 1, 'Frosted milk.'),
('uwu_vanillasyrup', 'Vanilla Syrup', 50, 0, 1, 'Smooth vanilla syrup.'),
('uwu_cinnamon', 'Cinnamon', 50, 0, 1, 'Fragrant cinnamon spice.'),
('uwu_caramelsyrup', 'Caramel Syrup', 50, 0, 1, 'Rich caramel syrup.'),
('uwu_caramelsauce', 'Caramel Sauce', 50, 0, 1, 'Decadent caramel sauce.'),
('uwu_chocolate', 'Chocolate', 50, 0, 1, 'Luxurious chocolate.'),
('uwu_peppermintextract', 'Peppermint Extract', 50, 0, 1, 'Cool peppermint extract.'),
('uwu_brownsugar', 'Brown Sugar', 50, 0, 1, 'Sweet brown sugar crystals.'),
('uwu_cocoapowder', 'Cocoa Powder', 50, 0, 1, 'Rich cocoa powder.'),
('uwu_whiskersvanillalatte', 'Whiskers Vanilla Latte', 50, 0, 1, 'A rich and creamy vanilla latte with a smooth espresso base, purrfect for a cozy day.'),
('uwu_purrfectcaramelmacchiato', 'Purrfect Caramel Macchiato', 50, 0, 1, 'Indulge in a velvety caramel macchiato, a delightful blend of sweet caramel and bold espresso.'),
('uwu_meowchamintmocha', 'Meowcha Mint Mocha', 50, 0, 1, 'A refreshing twist of mint blended with rich chocolate and espresso, the ultimate mocha treat.'),
('uwu_kittyscreamycappuccino', 'Kittys Creamy Cappuccino', 50, 0, 1, 'A classic cappuccino with an extra creamy texture, crafted to perfection for every coffee lover.'),
('uwu_uwucatcafehotchocolate', 'ChocoPaws Delight', 50, 0, 1, 'A warm and comforting cup of rich, velvety hot chocolate, perfect for cozy moments with a playful twist.'),
-- Mixer
('uwu_flour', 'Flour', 50, 0, 1, 'Essential flour, perfect for crafting smooth dough.'),
('uwu_rawegg', 'Raw Egg', 50, 0, 1, 'Fresh egg, ready to blend into your dough creation.'),
('uwu_butter', 'Butter', 50, 0, 1, 'Rich, creamy butter, ideal for baking.'),
('uwu_yeast', 'Yeast', 50, 0, 1, 'Active yeast to help your dough rise to perfection.'),
('uwu_strawberry', 'Strawberry', 50, 0, 1, 'Fresh and sweet strawberry.'),
('uwu_blueberry', 'Blueberry', 50, 0, 1, 'Fresh and sweet blueberry.'),
('uwu_normaldough', 'Dough', 50, 0, 1, 'Basic dough, ready to be transformed into a tasty treat.'),
('uwu_chocolatedough', 'Chocolate Dough', 50, 0, 1, 'Rich chocolate dough, perfect for baking delicious cookies.'),
('uwu_cupcakedough', 'Cupcake Dough', 50, 0, 1, 'Soft, fluffy cupcake dough, ready to be baked to perfection.'),
('uwu_chocopurrfectioncake', 'Choco Purrfection Cake', 50, 0, 1, 'Chocolate cake for chocolate lowers.'),
('uwu_kittenscloudpancakes', 'Kitten''s Cloud Pancakes', 50, 0, 1, 'Soft, fluffy pancakes that melt in your mouth, topped with an adorable kitten-themed design.'),
('uwu_strawberrymeowdelight', 'Strawberry Meow Delight', 50, 0, 1, 'Fluffy strawberry pancakes with a sweet kitten-inspired topping, perfect for any dessert lover.'),
('uwu_mintypawprintcupcake', 'Minty Pawprint Cupcake', 50, 0, 1, 'A refreshing mint-flavored cupcake decorated with a cute pawprint, offering a delightful minty treat.'),
('uwu_caramelkittycrunch', 'Caramel Kitty Crunch', 50, 0, 1, 'A rich caramel cupcake with a crunchy toffee topping, finished with a drizzle of caramel and cute kitty ear decorations.'),
('uwu_vanillameowtasticake', 'Vanilla Meowtastic Cake', 50, 0, 1, 'A delightful vanilla cake with layers of creamy vanilla buttercream, adorned with charming pastel cat whiskers and fondant ears.'),
('uwu_espressopawscupcake', 'Espresso Paws Cupcake', 50, 0, 1, 'A rich espresso cupcake with a smooth coffee-flavored frosting, topped with a sprinkle of cocoa and cute pawprint decorations.'),
('uwu_cinnamonwhiskerdelight', 'Cinnamon Whisker Delight', 50, 0, 1, 'A warm cinnamon cupcake with a swirl of creamy cinnamon frosting, finished with a dusting of cinnamon sugar and playful whisker accents.'),
-- Stove
('uwu_noodles', 'Noodles', 50, 0, 1, 'Noodles ready to be put into a delicious dish.'),
('uwu_rawsteak', 'Raw Steak', 50, 0, 1, 'Raw steak ready to be grilled.'),
('uwu_grilledsteak', 'Grilled Steak', 50, 0, 1, 'Grilled steak ready to be eaten.'),
('uwu_friedegg', 'Fried Egg', 50, 0, 1, 'Fried egg ready to be put into a burger and eaten.'),
('uwu_rawonion', 'Onion', 50, 0, 1, 'Onion ready to be cut.'),
('uwu_slicedonion', 'Sliced Onion', 50, 0, 1, 'Sliced onion ready to be put put into a delicious meal.'),
('uwu_rice', 'Rice', 50, 0, 1, 'Cooking rice.'),
('uwu_friedrice', 'Fried Rice', 50, 0, 1, 'Best tasting fried rice in your whole life.'),
('uwu_steakeggbreakfastspecial', 'Steak & Egg Breakfast Special', 50, 0, 1, 'A classic combo of grilled steak, fried egg, and caramelized onions. A perfect hearty breakfast!'),
('uwu_caramelizedonionsteakstirfry', 'Caramelized Onion Steak Stir-Fry', 50, 0, 1, 'Tender steak stir-fried with sweet caramelized onions, creating a rich and savory dish with a hint of sweetness.'),
('uwu_chilliramen', 'Chilli Ramen', 50, 0, 1, 'Spicy ramen which will fill you up and make your face red.'),
('uwu_kungpao', 'Kung Pao', 50, 0, 1, 'A bold and spicy dish with a satisfying blend of flavors, offering a deliciously balanced experience in every bite.'),
('uwu_shanghaisoyscallionnoodles', 'Shanghai Soy Scallion Noodles', 50, 0, 1, 'A flavorful and aromatic dish with a perfect balance of savory and satisfying textures.'),
('uwu_rawchillipepper', 'Chilli Pepper', 50, 0, 1, 'Chilli pepper ready to be cut.'),
('uwu_slicedchillipepper', 'Sliced Chilli Pepper', 50, 0, 1, 'Sliced chilli pepper ready to be eaten.'),
('uwu_rawcucumber', 'Cucumber', 50, 0, 1, 'Cucumber ready to be cut!'),
('uwu_slicedcucumber', 'Sliced cucumber', 50, 0, 1, 'Sliced cucumber ready to be put on a burger and eaten!'),
('uwu_rawchicken', 'Raw chicken', 50, 0, 1, 'Raw chicken.'),
('uwu_grilledchicken', 'Grilled chicken', 50, 0, 1, 'Grilled chicken.'),
('uwu_grilledchickenpiece', 'Grilled chicken piece', 50, 0, 1, 'Grilled chicken piece.');
origen
Add the following into:
origen_inventory\config\items.lua
-- Other
['uwu_cleansponge'] = {['name'] = 'uwu_cleansponge', ['label'] = 'Clean Sponge', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cleansponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean sponge which is ready for some cleaning!'},
['uwu_dirtysponge'] = {['name'] = 'uwu_dirtysponge', ['label'] = 'Dirty Sponge', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_dirtysponge.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty sponge which needs to be cleaned!'},
['uwu_cleanplate'] = {['name'] = 'uwu_cleanplate', ['label'] = 'Clean Plate', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cleanplate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean plate to put food on.'},
['uwu_dirtyplate'] = {['name'] = 'uwu_dirtyplate', ['label'] = 'Dirty Plate', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_dirtyplate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty plate ready to be cleaned or served to your enemy.'},
['uwu_cleancup'] = {['name'] = 'uwu_cleancup', ['label'] = 'Clean Cup', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cleancup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Clean cup ready to be filled with something delicious.'},
['uwu_dirtycup'] = {['name'] = 'uwu_dirtycup', ['label'] = 'Dirty Cup', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_dirtycup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Dirty cup ready to be cleaned or served to your enemy.'},
-- Mystery Box
['uwu_mysterybox'] = {['name'] = 'uwu_mysterybox', ['label'] = 'UWU Mystery Box', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_mysterybox.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Mystery box from uwu cat cafe which contains a lot of cool figures!'},
['uwu_browncat'] = {['name'] = 'uwu_browncat', ['label'] = 'Brown Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_browncat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A cute brown cat figurine, perfect for collectors.'},
['uwu_redcat'] = {['name'] = 'uwu_redcat', ['label'] = 'Red Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_redcat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rare red cat figure with a fiery appearance.'},
['uwu_greencat'] = {['name'] = 'uwu_greencat', ['label'] = 'Green Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_greencat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A calm and peaceful green cat figurine.'},
['uwu_yellowcat'] = {['name'] = 'uwu_yellowcat', ['label'] = 'Yellow Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_yellowcat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bright and cheerful yellow cat figure.'},
['uwu_purplecat'] = {['name'] = 'uwu_purplecat', ['label'] = 'Purple Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_purplecat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A mystical and rare purple cat figurine.'},
['uwu_bluecat'] = {['name'] = 'uwu_bluecat', ['label'] = 'Blue Cat Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_bluecat.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A cool and collected blue cat figure for your collection.'},
['uwu_shinywasabi'] = {['name'] = 'uwu_shinywasabi', ['label'] = 'Shiny Wasabi Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_shinywasabi.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A shiny Wasabi figure, known for its sparkle.'},
['uwu_master'] = {['name'] = 'uwu_master', ['label'] = 'Master Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_master.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A legendary figure of a martial arts master.'},
['uwu_princessrobo'] = {['name'] = 'uwu_princessrobo', ['label'] = 'Princess Robo Figure', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_princessrobo.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A futuristic figure of Princess Robo, the ruler of the tech kingdom.'},
-- Coffee Machine
['uwu_expresoshot'] = {['name'] = 'uwu_expresoshot', ['label'] = 'Shot Of Espresso', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_expresoshot.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bold espresso shot brewed fresh.'},
['uwu_milk'] = {['name'] = 'uwu_milk', ['label'] = 'Milk', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_milk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Milk.'},
['uwu_steamedmilk'] = {['name'] = 'uwu_steamedmilk', ['label'] = 'Steamed Milk', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_steamedmilk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Velvety steamed milk.'},
['uwu_frostedmilk'] = {['name'] = 'uwu_frostedmilk', ['label'] = 'Frosted Milk', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_frostedmilk.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Frosted milk.'},
['uwu_vanillasyrup'] = {['name'] = 'uwu_vanillasyrup', ['label'] = 'Vanilla Syrup', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_vanillasyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Smooth vanilla syrup.'},
['uwu_cinnamon'] = {['name'] = 'uwu_cinnamon', ['label'] = 'Cinnamon', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cinnamon.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fragrant cinnamon spice.'},
['uwu_caramelsyrup'] = {['name'] = 'uwu_caramelsyrup', ['label'] = 'Caramel Syrup', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_caramelsyrup.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich caramel syrup.'},
['uwu_caramelsauce'] = {['name'] = 'uwu_caramelsauce', ['label'] = 'Caramel Sauce', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_caramelsauce.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Decadent caramel sauce.'},
['uwu_chocolate'] = {['name'] = 'uwu_chocolate', ['label'] = 'Chocolate', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_chocolate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Luxurious chocolate.'},
['uwu_peppermintextract'] = {['name'] = 'uwu_peppermintextract', ['label'] = 'Peppermint Extract', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_peppermintextract.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cool peppermint extract.'},
['uwu_brownsugar'] = {['name'] = 'uwu_brownsugar', ['label'] = 'Brown Sugar', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_brownsugar.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sweet brown sugar crystals.'},
['uwu_cocoapowder'] = {['name'] = 'uwu_cocoapowder', ['label'] = 'Cocoa Powder', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cocoapowder.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich cocoa powder.'},
['uwu_whiskersvanillalatte'] = {['name'] = 'uwu_whiskersvanillalatte', ['label'] = 'Whiskers Vanilla Latte', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_whiskersvanillalatte.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich and creamy vanilla latte with a smooth espresso base, purrfect for a cozy day.'},
['uwu_purrfectcaramelmacchiato'] = {['name'] = 'uwu_purrfectcaramelmacchiato', ['label'] = 'Purrfect Caramel Macchiato', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_purrfectcaramelmacchiato.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Indulge in a velvety caramel macchiato, a delightful blend of sweet caramel and bold espresso.'},
['uwu_meowchamintmocha'] = {['name'] = 'uwu_meowchamintmocha', ['label'] = 'Meowcha Mint Mocha', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_meowchamintmocha.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A refreshing twist of mint blended with rich chocolate and espresso, the ultimate mocha treat.'},
['uwu_kittyscreamycappuccino'] = {['name'] = 'uwu_kittyscreamycappuccino', ['label'] = 'Kittys Creamy Cappuccino', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_kittyscreamycappuccino.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A classic cappuccino with an extra creamy texture, crafted to perfection for every coffee lover.'},
['uwu_uwucatcafehotchocolate'] = {['name'] = 'uwu_uwucatcafehotchocolate', ['label'] = 'ChocoPaws Delight', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_uwucatcafehotchocolate.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A warm and comforting cup of rich, velvety hot chocolate, perfect for cozy moments with a playful twist.'},
-- Cooking Ingredients
['uwu_flour'] = {['name'] = 'uwu_flour', ['label'] = 'Flour', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_flour.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Essential flour, perfect for crafting smooth dough.'},
['uwu_rawegg'] = {['name'] = 'uwu_rawegg', ['label'] = 'Raw Egg', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawegg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh egg, ready to blend into your dough creation.'},
['uwu_butter'] = {['name'] = 'uwu_butter', ['label'] = 'Butter', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_butter.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich, creamy butter, ideal for baking.'},
['uwu_yeast'] = {['name'] = 'uwu_yeast', ['label'] = 'Yeast', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_yeast.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Active yeast to help your dough rise to perfection.'},
['uwu_strawberry'] = {['name'] = 'uwu_strawberry', ['label'] = 'Strawberry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_strawberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh and sweet strawberry.'},
['uwu_blueberry'] = {['name'] = 'uwu_blueberry', ['label'] = 'Blueberry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_blueberry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fresh and sweet blueberry.'},
['uwu_normaldough'] = {['name'] = 'uwu_normaldough', ['label'] = 'Dough', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_normaldough.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Basic dough, ready to be transformed into a tasty treat.'},
['uwu_chocolatedough'] = {['name'] = 'uwu_chocolatedough', ['label'] = 'Chocolate Dough', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_chocolatedough.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Rich chocolate dough, perfect for baking delicious cookies.'},
['uwu_cupcakedough'] = {['name'] = 'uwu_cupcakedough', ['label'] = 'Cupcake Dough', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cupcakedough.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Soft, fluffy cupcake dough, ready to be baked to perfection.'},
['uwu_chocopurrfectioncake'] = {['name'] = 'uwu_chocopurrfectioncake', ['label'] = 'Choco Purrfection Cake', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_chocopurrfectioncake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Chocolate cake for chocolate lovers.'},
['uwu_kittenscloudpancakes'] = {['name'] = 'uwu_kittenscloudpancakes', ['label'] = 'Kitten’s Cloud Pancakes', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_kittenscloudpancakes.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Soft, fluffy pancakes that melt in your mouth, topped with an adorable kitten-themed design.'},
['uwu_strawberrymeowdelight'] = {['name'] = 'uwu_strawberrymeowdelight', ['label'] = 'Strawberry Meow Delight', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_strawberrymeowdelight.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fluffy strawberry pancakes with a sweet kitten-inspired topping, perfect for any dessert lover.'},
['uwu_mintypawprintcupcake'] = {['name'] = 'uwu_mintypawprintcupcake', ['label'] = 'Minty Pawprint Cupcake', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_mintypawprintcupcake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A refreshing mint-flavored cupcake decorated with a cute pawprint, offering a delightful minty treat.'},
['uwu_caramelkittycrunch'] = {['name'] = 'uwu_caramelkittycrunch', ['label'] = 'Caramel Kitty Crunch', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_caramelkittycrunch.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich caramel cupcake with a crunchy toffee topping, finished with a drizzle of caramel and cute kitty ear decorations.'},
['uwu_vanillameowtasticake'] = {['name'] = 'uwu_vanillameowtasticake', ['label'] = 'Vanilla Meowtastic Cake', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_vanillameowtasticake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A delightful vanilla cake with layers of creamy vanilla buttercream, adorned with charming pastel cat whiskers and fondant ears.'},
['uwu_espressopawscupcake'] = {['name'] = 'uwu_espressopawscupcake', ['label'] = 'Espresso Paws Cupcake', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_espressopawscupcake.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A rich espresso cupcake with a smooth coffee-flavored frosting, topped with a sprinkle of cocoa and cute pawprint decorations.'},
['uwu_cinnamonwhiskerdelight'] = {['name'] = 'uwu_cinnamonwhiskerdelight', ['label'] = 'Cinnamon Whisker Delight', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_cinnamonwhiskerdelight.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A warm cinnamon cupcake with a swirl of creamy cinnamon frosting, finished with a dusting of cinnamon sugar and playful whisker accents.'},
-- Meals and Ingredients
['uwu_noodles'] = {['name'] = 'uwu_noodles', ['label'] = 'Noodles', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_noodles.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Noodles ready to be put into a delicious dish.'},
['uwu_rawsteak'] = {['name'] = 'uwu_rawsteak', ['label'] = 'Raw Steak', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawsteak.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw steak ready to be grilled.'},
['uwu_grilledsteak'] = {['name'] = 'uwu_grilledsteak', ['label'] = 'Grilled Steak', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_grilledsteak.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled steak ready to be eaten.'},
['uwu_friedegg'] = {['name'] = 'uwu_friedegg', ['label'] = 'Fried Egg', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_friedegg.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Fried egg ready to be put into a burger and eaten.'},
['uwu_rawonion'] = {['name'] = 'uwu_rawonion', ['label'] = 'Onion', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawonion.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Onion ready to be cut.'},
['uwu_slicedonion'] = {['name'] = 'uwu_slicedonion', ['label'] = 'Sliced Onion', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_slicedonion.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced onion ready to be put into a delicious meal.'},
['uwu_rice'] = {['name'] = 'uwu_rice', ['label'] = 'Rice', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cooking rice.'},
['uwu_friedrice'] = {['name'] = 'uwu_friedrice', ['label'] = 'Fried Rice', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_friedrice.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Best tasting fried rice in your whole life.'},
['uwu_steakeggbreakfastspecial'] = {['name'] = 'uwu_steakeggbreakfastspecial', ['label'] = 'Steak & Egg Breakfast Special', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_steakeggbreakfastspecial.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A classic combo of grilled steak, fried egg, and caramelized onions. A perfect hearty breakfast!'},
['uwu_caramelizedonionsteakstirfry'] = {['name'] = 'uwu_caramelizedonionsteakstirfry', ['label'] = 'Caramelized Onion Steak Stir-Fry', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_caramelizedonionsteakstirfry.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tender steak stir-fried with sweet caramelized onions, creating a rich and savory dish with a hint of sweetness.'},
['uwu_chilliramen'] = {['name'] = 'uwu_chilliramen', ['label'] = 'Chilli Ramen', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_chilliramen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Spicy ramen which will fill you up and make your face red.'},
['uwu_kungpao'] = {['name'] = 'uwu_kungpao', ['label'] = 'Kung Pao', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_kungpao.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A bold and spicy dish with a satisfying blend of flavors, offering a deliciously balanced experience in every bite.'},
['uwu_shanghaisoyscallionnoodles'] = {['name'] = 'uwu_shanghaisoyscallionnoodles', ['label'] = 'Shanghai Soy Scallion Noodles', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_shanghaisoyscallionnoodles.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A flavorful and aromatic dish with a perfect balance of savory and satisfying textures.'},
['uwu_rawchillipepper'] = {['name'] = 'uwu_rawchillipepper', ['label'] = 'Chilli Pepper', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawchillipepper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Chilli pepper ready to be cut.'},
['uwu_slicedchillipepper'] = {['name'] = 'uwu_slicedchillipepper', ['label'] = 'Sliced Chilli Pepper', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_slicedchillipepper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced chilli pepper ready to be eaten.'},
['uwu_rawcucumber'] = {['name'] = 'uwu_rawcucumber', ['label'] = 'Cucumber', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawcucumber.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Cucumber ready to be cut!'},
['uwu_slicedcucumber'] = {['name'] = 'uwu_slicedcucumber', ['label'] = 'Sliced cucumber', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_slicedcucumber.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Sliced cucumber ready to be put on a burger and eaten!'},
['uwu_rawchicken'] = {['name'] = 'uwu_rawchicken', ['label'] = 'Raw chicken', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_rawchicken.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Raw chicken.'},
['uwu_grilledchicken'] = {['name'] = 'uwu_grilledchicken', ['label'] = 'Grilled chicken', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_grilledchicken.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled chicken.'},
['uwu_grilledchickenpiece'] = {['name'] = 'uwu_grilledchickenpiece', ['label'] = 'Grilled chicken piece', ['weight'] = 100, ['type'] = 'item', ['image'] = 'uwu_grilledchickenpiece.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Grilled chicken piece.'},
tgiann
Add the following into:
items.lua in your framework script
-- Other
uwu_cleansponge = {name = "uwu_cleansponge", label = "Clean Sponge", weight = 1, type = "item", image = "uwu_cleansponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean sponge which is ready for some cleaning!"},
uwu_dirtysponge = {name = "uwu_dirtysponge", label = "Dirty Sponge", weight = 1, type = "item", image = "uwu_dirtysponge.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty sponge which needs to be cleaned!"},
uwu_cleanplate = {name = "uwu_cleanplate", label = "Clean Plate", weight = 1, type = "item", image = "uwu_cleanplate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean plate to put food on."},
uwu_dirtyplate = {name = "uwu_dirtyplate", label = "Dirty Plate", weight = 1, type = "item", image = "uwu_dirtyplate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty plate ready to be cleaned or served to your enemy."},
uwu_cleancup = {name = "uwu_cleancup", label = "Clean Cup", weight = 1, type = "item", image = "uwu_cleancup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Clean cup ready to be filled with something delicious."},
uwu_dirtycup = {name = "uwu_dirtycup", label = "Dirty Cup", weight = 1, type = "item", image = "uwu_dirtycup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Dirty cup ready to be cleaned or served to your enemy."},
-- Mystery Box
uwu_mysterybox = {name = "uwu_mysterybox", label = "UWU Mystery Box", weight = 1, type = "item", image = "uwu_mysterybox.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Mystery box from uwu cat cafe which contains a lot of cool figures!"},
uwu_browncat = {name = "uwu_browncat", label = "Brown Cat Figure", weight = 1, type = "item", image = "uwu_browncat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A cute brown cat figurine, perfect for collectors."},
uwu_redcat = {name = "uwu_redcat", label = "Red Cat Figure", weight = 1, type = "item", image = "uwu_redcat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rare red cat figure with a fiery appearance."},
uwu_greencat = {name = "uwu_greencat", label = "Green Cat Figure", weight = 1, type = "item", image = "uwu_greencat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A calm and peaceful green cat figurine."},
uwu_yellowcat = {name = "uwu_yellowcat", label = "Yellow Cat Figure", weight = 1, type = "item", image = "uwu_yellowcat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bright and cheerful yellow cat figure."},
uwu_purplecat = {name = "uwu_purplecat", label = "Purple Cat Figure", weight = 1, type = "item", image = "uwu_purplecat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A mystical and rare purple cat figurine."},
uwu_bluecat = {name = "uwu_bluecat", label = "Blue Cat Figure", weight = 1, type = "item", image = "uwu_bluecat.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A cool and collected blue cat figure for your collection."},
uwu_shinywasabi = {name = "uwu_shinywasabi", label = "Shiny Wasabi Figure", weight = 1, type = "item", image = "uwu_shinywasabi.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A shiny Wasabi figure, known for its sparkle."},
uwu_master = {name = "uwu_master", label = "Master Figure", weight = 1, type = "item", image = "uwu_master.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A legendary figure of a martial arts master."},
uwu_princessrobo = {name = "uwu_princessrobo", label = "Princess Robo Figure", weight = 1, type = "item", image = "uwu_princessrobo.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A futuristic figure of Princess Robo, the ruler of the tech kingdom."},
-- Cofee Machine
uwu_expresoshot = {name = "uwu_expresoshot", label = "Shot Of Espresso", weight = 1, type = "item", image = "uwu_expresoshot.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bold espresso shot brewed fresh."},
uwu_milk = {name = "uwu_milk", label = "Milk", weight = 1, type = "item", image = "uwu_milk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Milk."},
uwu_steamedmilk = {name = "uwu_steamedmilk", label = "Steamed Milk", weight = 1, type = "item", image = "uwu_steamedmilk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Velvety steamed milk."},
uwu_frostedmilk = {name = "uwu_frostedmilk", label = "Frosted Milk", weight = 1, type = "item", image = "uwu_frostedmilk.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Frosted milk."},
uwu_vanillasyrup = {name = "uwu_vanillasyrup", label = "Vanilla Syrup", weight = 1, type = "item", image = "uwu_vanillasyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Smooth vanilla syrup."},
uwu_cinnamon = {name = "uwu_cinnamon", label = "Cinnamon", weight = 1, type = "item", image = "uwu_cinnamon.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fragrant cinnamon spice."},
uwu_caramelsyrup = {name = "uwu_caramelsyrup", label = "Caramel Syrup", weight = 1, type = "item", image = "uwu_caramelsyrup.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich caramel syrup."},
uwu_caramelsauce = {name = "uwu_caramelsauce", label = "Caramel Sauce", weight = 1, type = "item", image = "uwu_caramelsauce.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Decadent caramel sauce."},
uwu_chocolate = {name = "uwu_chocolate", label = "Chocolate", weight = 1, type = "item", image = "uwu_chocolate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Luxurious chocolate."},
uwu_peppermintextract = {name = "uwu_peppermintextract", label = "Peppermint Extract", weight = 1, type = "item", image = "uwu_peppermintextract.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cool peppermint extract."},
uwu_brownsugar = {name = "uwu_brownsugar", label = "Brown Sugar", weight = 1, type = "item", image = "uwu_brownsugar.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sweet brown sugar crystals."},
uwu_cocoapowder = {name = "uwu_cocoapowder", label = "Cocoa Powder", weight = 1, type = "item", image = "uwu_cocoapowder.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich cocoa powder."},
uwu_whiskersvanillalatte = {name = "uwu_whiskersvanillalatte", label = "Whiskers Vanilla Latte", weight = 1, type = "item", image = "uwu_whiskersvanillalatte.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich and creamy vanilla latte with a smooth espresso base, purrfect for a cozy day."},
uwu_purrfectcaramelmacchiato = {name = "uwu_purrfectcaramelmacchiato", label = "Purrfect Caramel Macchiato", weight = 1, type = "item", image = "uwu_purrfectcaramelmacchiato.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Indulge in a velvety caramel macchiato, a delightful blend of sweet caramel and bold espresso."},
uwu_meowchamintmocha = {name = "uwu_meowchamintmocha", label = "Meowcha Mint Mocha", weight = 1, type = "item", image = "uwu_meowchamintmocha.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing twist of mint blended with rich chocolate and espresso, the ultimate mocha treat."},
uwu_kittyscreamycappuccino = {name = "uwu_kittyscreamycappuccino", label = "Kittys Creamy Cappuccino", weight = 1, type = "item", image = "uwu_kittyscreamycappuccino.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic cappuccino with an extra creamy texture, crafted to perfection for every coffee lover."},
uwu_uwucatcafehotchocolate = {name = "uwu_uwucatcafehotchocolate", label = "ChocoPaws Delight", weight = 1, type = "item", image = "uwu_uwucatcafehotchocolate.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A warm and comforting cup of rich, velvety hot chocolate, perfect for cozy moments with a playful twist."},
-- Mixer
uwu_flour = {name = "uwu_flour", label = "Flour", weight = 1, type = "item", image = "uwu_flour.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Essential flour, perfect for crafting smooth dough."},
uwu_rawegg = {name = "uwu_rawegg", label = "Raw Egg", weight = 1, type = "item", image = "uwu_rawegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh egg, ready to blend into your dough creation."},
uwu_butter = {name = "uwu_butter", label = "Butter", weight = 1, type = "item", image = "uwu_butter.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich, creamy butter, ideal for baking."},
uwu_yeast = {name = "uwu_yeast", label = "Yeast", weight = 1, type = "item", image = "uwu_yeast.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Active yeast to help your dough rise to perfection."},
uwu_strawberry = {name = "uwu_strawberry", label = "Strawberry", weight = 1, type = "item", image = "uwu_strawberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh and sweet strawberry."},
uwu_blueberry = {name = "uwu_blueberry", label = "Blueberry", weight = 1, type = "item", image = "uwu_blueberry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fresh and sweet blueberry."},
uwu_normaldough = {name = "uwu_normaldough", label = "Dough", weight = 1, type = "item", image = "uwu_normaldough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Basic dough, ready to be transformed into a tasty treat."},
uwu_chocolatedough = {name = "uwu_chocolatedough", label = "Chocolate Dough", weight = 1, type = "item", image = "uwu_chocolatedough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Rich chocolate dough, perfect for baking delicious cookies."},
uwu_cupcakedough = {name = "uwu_cupcakedough", label = "Cupcake Dough", weight = 1, type = "item", image = "uwu_cupcakedough.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soft, fluffy cupcake dough, ready to be baked to perfection."},
-- Oven
uwu_chocopurrfectioncake = {name = "uwu_chocopurrfectioncake", label = "Choco Purrfection Cake", weight = 1, type = "item", image = "uwu_chocopurrfectioncake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chocolate cake for chocolate lovers."},
uwu_kittenscloudpancakes = {name = "uwu_kittenscloudpancakes", label = "Kitten’s Cloud Pancakes", weight = 1, type = "item", image = "uwu_kittenscloudpancakes.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Soft, fluffy pancakes that melt in your mouth, topped with an adorable kitten-themed design."},
uwu_strawberrymeowdelight = {name = "uwu_strawberrymeowdelight", label = "Strawberry Meow Delight", weight = 1, type = "item", image = "uwu_strawberrymeowdelight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fluffy strawberry pancakes with a sweet kitten-inspired topping, perfect for any dessert lover."},
uwu_mintypawprintcupcake = {name = "uwu_mintypawprintcupcake", label = "Minty Pawprint Cupcake", weight = 1, type = "item", image = "uwu_mintypawprintcupcake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A refreshing mint-flavored cupcake decorated with a cute pawprint, offering a delightful minty treat."},
uwu_caramelkittycrunch = {name = "uwu_caramelkittycrunch", label = "Caramel Kitty Crunch", weight = 1, type = "item", image = "uwu_caramelkittycrunch.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich caramel cupcake with a crunchy toffee topping, finished with a drizzle of caramel and cute kitty ear decorations."},
uwu_vanillameowtasticake = {name = "uwu_vanillameowtasticake", label = "Vanilla Meowtastic Cake", weight = 1, type = "item", image = "uwu_vanillameowtasticake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A delightful vanilla cake with layers of creamy vanilla buttercream, adorned with charming pastel cat whiskers and fondant ears."},
uwu_espressopawscupcake = {name = "uwu_espressopawscupcake", label = "Espresso Paws Cupcake", weight = 1, type = "item", image = "uwu_espressopawscupcake.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A rich espresso cupcake with a smooth coffee-flavored frosting, topped with a sprinkle of cocoa and cute pawprint decorations."},
uwu_cinnamonwhiskerdelight = {name = "uwu_cinnamonwhiskerdelight", label = "Cinnamon Whisker Delight", weight = 1, type = "item", image = "uwu_cinnamonwhiskerdelight.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A warm cinnamon cupcake with a swirl of creamy cinnamon frosting, finished with a dusting of cinnamon sugar and playful whisker accents."},
-- Stove
uwu_noodles = {name = "uwu_noodles", label = "Noodles", weight = 1, type = "item", image = "uwu_noodles.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Noodles ready to be put into a delicious dish."},
uwu_rawsteak = {name = "uwu_rawsteak", label = "Raw Steak", weight = 1, type = "item", image = "uwu_rawsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw steak ready to be grilled."},
uwu_grilledsteak = {name = "uwu_grilledsteak", label = "Grilled Steak", weight = 1, type = "item", image = "uwu_grilledsteak.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled steak ready to be eaten."},
uwu_friedegg = {name = "uwu_friedegg", label = "Fried Egg", weight = 1, type = "item", image = "uwu_friedegg.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Fried egg ready to be put into a burger and eaten."},
uwu_rawonion = {name = "uwu_rawonion", label = "Onion", weight = 1, type = "item", image = "uwu_rawonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Onion ready to be cut."},
uwu_slicedonion = {name = "uwu_slicedonion", label = "Sliced Onion", weight = 1, type = "item", image = "uwu_slicedonion.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced onion ready to be put into a delicious meal."},
uwu_rice = {name = "uwu_rice", label = "Rice", weight = 1, type = "item", image = "uwu_rice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cooking rice."},
uwu_friedrice = {name = "uwu_friedrice", label = "Fried Rice", weight = 1, type = "item", image = "uwu_friedrice.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Best tasting fried rice in your whole life."},
uwu_steakeggbreakfastspecial = {name = "uwu_steakeggbreakfastspecial", label = "Steak & Egg Breakfast Special",weight = 1, type = "item", image = "uwu_steakeggbreakfastspecial.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A classic combo of grilled steak, fried egg, and caramelized onions. A perfect hearty breakfast!"},
uwu_caramelizedonionsteakstirfry = {name = "uwu_caramelizedonionsteakstirfry", label = "Caramelized Onion Steak Stir-Fry", weight = 1, type = "item", image = "uwu_caramelizedonionsteakstirfry.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Tender steak stir-fried with sweet caramelized onions, creating a rich and savory dish with a hint of sweetness."},
uwu_chilliramen = {name = "uwu_chilliramen", label = "Chilli Ramen", weight = 1, type = "item", image = "uwu_chilliramen.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Spicy ramen which will fill you up and make your face red."},
uwu_kungpao = {name = "uwu_kungpao", label = "Kung Pao", weight = 1, type = "item", image = "uwu_kungpao.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A bold and spicy dish with a satisfying blend of flavors, offering a deliciously balanced experience in every bite."},
uwu_shanghaisoyscallionnoodles = {name = "uwu_shanghaisoyscallionnoodles", label = "Shanghai Soy Scallion Noodles",weight = 1, type = "item", image = "uwu_shanghaisoyscallionnoodles.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "A flavorful and aromatic dish with a perfect balance of savory and satisfying textures."},
uwu_rawchillipepper = {name = "uwu_rawchillipepper", label = "Chilli Pepper", weight = 1, type = "item", image = "uwu_rawchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Chilli pepper ready to be cut."},
uwu_slicedchillipepper = {name = "uwu_slicedchillipepper", label = "Sliced Chilli Pepper", weight = 1, type = "item", image = "uwu_slicedchillipepper.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced chilli pepper ready to be eaten."},
uwu_rawcucumber = {name = "uwu_rawcucumber", label = "Cucumber", weight = 1, type = "item", image = "uwu_rawcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Cucumber ready to be cut!"},
uwu_slicedcucumber = {name = "uwu_slicedcucumber", label = "Sliced cucumber", weight = 1, type = "item", image = "uwu_slicedcucumber.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Sliced cucumber ready to be put on a burger and eaten!"},
uwu_rawchicken = {name = "uwu_rawchicken", label = "Raw chicken", weight = 1, type = "item", image = "uwu_rawchicken.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Raw chicken."},
uwu_grilledchicken = {name = "uwu_grilledchicken", label = "Grilled chicken", weight = 1, type = "item", image = "uwu_grilledchicken.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled chicken."},
uwu_grilledchickenpiece = {name = "uwu_grilledchickenpiece", label = "Grilled chicken piece", weight = 1, type = "item", image = "uwu_grilledchickenpiece.png", unique = false, useable = true, shouldClose = true, combinable = nil, description = "Grilled chicken piece."},
esx
Add the following into your database:
INSERT INTO items (name, label, weight, rare, can_remove) VALUES
-- Other
('uwu_cleansponge', 'Clean Sponge', 50, 0, 1),
('uwu_dirtysponge', 'Dirty Sponge', 50, 0, 1),
('uwu_cleanplate', 'Clean Plate', 50, 0, 1),
('uwu_dirtyplate', 'Dirty Plate', 50, 0, 1),
('uwu_cleancup', 'Clean Cup', 50, 0, 1),
('uwu_dirtycup', 'Dirty Cup', 50, 0, 1),
-- Mystery Box
('uwu_mysterybox', 'UWU Mystery Box', 50, 0, 1),
('uwu_browncat', 'Brown Cat Figure', 50, 0, 1),
('uwu_redcat', 'Red Cat Figure', 50, 0, 1),
('uwu_greencat', 'Green Cat Figure', 50, 0, 1),
('uwu_yellowcat', 'Yellow Cat Figure', 50, 0, 1),
('uwu_purplecat', 'Purple Cat Figure', 50, 0, 1),
('uwu_bluecat', 'Blue Cat Figure', 50, 0, 1),
('uwu_shinywasabi', 'Shiny Wasabi Figure', 50, 0, 1),
('uwu_master', 'Master Figure', 50, 0, 1),
('uwu_princessrobo', 'Princess Robo Figure', 50, 0, 1),
-- Coffee Machine
('uwu_expresoshot', 'Shot Of Espresso', 50, 0, 1),
('uwu_milk', 'Milk', 50, 0, 1),
('uwu_steamedmilk', 'Steamed Milk', 50, 0, 1),
('uwu_frostedmilk', 'Frosted Milk', 50, 0, 1),
('uwu_vanillasyrup', 'Vanilla Syrup', 50, 0, 1),
('uwu_cinnamon', 'Cinnamon', 50, 0, 1),
('uwu_caramelsyrup', 'Caramel Syrup', 50, 0, 1),
('uwu_caramelsauce', 'Caramel Sauce', 50, 0, 1),
('uwu_chocolate', 'Chocolate', 50, 0, 1),
('uwu_peppermintextract', 'Peppermint Extract', 50, 0, 1),
('uwu_brownsugar', 'Brown Sugar', 50, 0, 1),
('uwu_cocoapowder', 'Cocoa Powder', 50, 0, 1),
('uwu_whiskersvanillalatte', 'Whiskers Vanilla Latte', 50, 0, 1),
('uwu_purrfectcaramelmacchiato', 'Purrfect Caramel Macchiato', 50, 0, 1),
('uwu_meowchamintmocha', 'Meowcha Mint Mocha', 50, 0, 1),
('uwu_kittyscreamycappuccino', 'Kittys Creamy Cappuccino', 50, 0, 1),
('uwu_uwucatcafehotchocolate', 'ChocoPaws Delight', 50, 0, 1),
-- Mixer
('uwu_flour', 'Flour', 50, 0, 1),
('uwu_rawegg', 'Raw Egg', 50, 0, 1),
('uwu_butter', 'Butter', 50, 0, 1),
('uwu_yeast', 'Yeast', 50, 0, 1),
('uwu_strawberry', 'Strawberry', 50, 0, 1),
('uwu_blueberry', 'Blueberry', 50, 0, 1),
('uwu_normaldough', 'Dough', 50, 0, 1),
('uwu_chocolatedough', 'Chocolate Dough', 50, 0, 1),
('uwu_cupcakedough', 'Cupcake Dough', 50, 0, 1),
('uwu_chocopurrfectioncake', 'Choco Purrfection Cake', 50, 0, 1),
('uwu_kittenscloudpancakes', 'Kitten''s Cloud Pancakes', 50, 0, 1),
('uwu_strawberrymeowdelight', 'Strawberry Meow Delight', 50, 0, 1),
('uwu_mintypawprintcupcake', 'Minty Pawprint Cupcake', 50, 0, 1),
('uwu_caramelkittycrunch', 'Caramel Kitty Crunch', 50, 0, 1),
('uwu_vanillameowtasticake', 'Vanilla Meowtastic Cake', 50, 0, 1),
('uwu_espressopawscupcake', 'Espresso Paws Cupcake', 50, 0, 1),
('uwu_cinnamonwhiskerdelight', 'Cinnamon Whisker Delight', 50, 0, 1),
-- Stove
('uwu_noodles', 'Noodles', 50, 0, 1),
('uwu_rawsteak', 'Raw Steak', 50, 0, 1),
('uwu_grilledsteak', 'Grilled Steak', 50, 0, 1),
('uwu_friedegg', 'Fried Egg', 50, 0, 1),
('uwu_rawonion', 'Onion', 50, 0, 1),
('uwu_slicedonion', 'Sliced Onion', 50, 0, 1),
('uwu_rice', 'Rice', 50, 0, 1),
('uwu_friedrice', 'Fried Rice', 50, 0, 1),
('uwu_steakeggbreakfastspecial', 'Steak & Egg Breakfast Special', 50, 0, 1),
('uwu_caramelizedonionsteakstirfry', 'Caramelized Onion Steak Stir-Fry', 50, 0, 1),
('uwu_chilliramen', 'Chilli Ramen', 50, 0, 1),
('uwu_kungpao', 'Kung Pao', 50, 0, 1),
('uwu_shanghaisoyscallionnoodles', 'Shanghai Soy Scallion Noodles', 50, 0, 1),
('uwu_rawchillipepper', 'Chilli Pepper', 50, 0, 1),
('uwu_slicedchillipepper', 'Sliced Chilli Pepper', 50, 0, 1),
('uwu_rawcucumber', 'Cucumber', 50, 0, 1),
('uwu_slicedcucumber', 'Sliced cucumber', 50, 0, 1),
('uwu_rawchicken', 'Raw chicken', 50, 0, 1),
('uwu_grilledchicken', 'Grilled chicken', 50, 0, 1),
('uwu_grilledchickenpiece', 'Grilled chicken piece', 50, 0, 1);
Create uwucatcafe society/job:
esx
Add the following into your database:
INSERT INTO `jobs` (name, label) VALUES
('uwucatcafe', 'UWU Cat Cafe');
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('uwucatcafe', 0, 'recruit', 'Recruit', 200, '{}', '{}'),
('uwucatcafe', 1, 'trainee', 'Trainee', 200, '{}', '{}'),
('uwucatcafe', 2, 'employee', 'Employee', 200, '{}', '{}'),
('uwucatcafe', 3, 'underboss', 'Manager', 200, '{}', '{}'),
('uwucatcafe', 4, 'boss', 'CEO', 200, '{}', '{}');
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_uwucatcafe', 'UWU Cat Cafe', 1);
INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_uwucatcafe', 'UWU Cat Cafe', 1);
qb
Add the following into:
qb-core\shared\jobs.lua
['uwucatcafe'] = {
label = 'UWU Cat Cafe Employee',
defaultDuty = true,
offDutyPay = false,
grades = {
['0'] = {
name = 'Recruit',
payment = 200
},
['1'] = {
name = 'Trainee',
payment = 200
},
['2'] = {
name = 'Employee',
payment = 200
},
['3'] = {
name = 'Manager',
isboss = true,
payment = 200
},
['4'] = {
name = 'CEO',
isboss = true,
payment = 200
},
},
},
qbox
Add the following into:
qbx_core\shared\jobs.lua
['uwucatcafe'] = {
label = 'UWU Cat Cafe Employee',
defaultDuty = true,
offDutyPay = false,
grades = {
['0'] = {
name = 'Recruit',
payment = 200
},
['1'] = {
name = 'Trainee',
payment = 200
},
['2'] = {
name = 'Employee',
payment = 200
},
['3'] = {
name = 'Manager',
isboss = true,
payment = 200
},
['4'] = {
name = 'CEO',
isboss = true,
payment = 200
},
},
},
Configure everything to your liking in Config.lua.
Add the following into your database:
CREATE TABLE IF NOT EXISTS uwucatcafe_stock ( item VARCHAR(255) NOT NULL, amount int(11) NOT NULL DEFAULT 0 )
Restart your inventory script and start fivecode_uwucatcafejob, or restart your server.
Enjoy the script!
[Optional] If you want to have item image in your inventory, place the images below here:
fivecode_uwucatcafejob\Installation #9 - Images
-ox_inventory\web\images
-qb-inventory\html\images
-qs-inventory\html\images
-ps-inventory\html\images
-codem-inventory\html\itemimages
-core_inventory\html\img
-origen_inventory\html\images
-tgiann-inventory\inventory_images\images
If you need help with anything else, do not hesitate and open a support ticket in our discord.
Last updated
Was this helpful?