1
0
Fork 0
forked from Simnation/Main
Main/resources/[inventory]/nordi_bbq/config.lua
2025-06-18 02:30:02 +02:00

72 lines
1.8 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Config = {}
-- Change coffee props to grill props
Config.GrillProps = {
`prop_bbq_1`,
`prop_bbq_2`,
`prop_bbq_3`,
`prop_bbq_4`,
`prop_bbq_5`,
`bzzz_grill_small_a`,
`bzzz_grill_small_b`,
`bzzz_grill_a`,
`smallbbqtrailer`,
`bigbbqtrailer`,
-- Add any other grill props you want to use
}
-- Progressbar duration in ms
Config.ProgressTime = 5000 -- Maybe increase time for grilling
-- Change coffee options to grilling options
Config.GrillOptions = {
{
label = "Hamburger",
description = "Ein saftiger Hamburger",
item = "hamburger",
icon = "fa-solid fa-burger",
requires = {
{item = "raw_beef", amount = 1},
{item = "burger_bun", amount = 1},
}
},
{
label = "Cheeseburger",
description = "Ein Hamburger mit Käse",
item = "cheeseburger",
icon = "fa-solid fa-burger",
requires = {
{item = "raw_beef", amount = 1},
{item = "burger_bun", amount = 1},
{item = "cheese", amount = 1}
}
},
{
label = "Steak",
description = "Ein perfekt gegrilltes Steak",
item = "steak",
icon = "fa-solid fa-drumstick-bite",
requires = {
{item = "ribeye_steak", amount = 1},
}
},
{
label = "Bratwurst",
description = "Eine leckere Bratwurst",
item = "grilled_sausage",
icon = "fa-solid fa-hotdog",
requires = {
{item = "raw_sausage", amount = 1},
}
},
{
label = "Gegrilltes Gemüse",
description = "Grillgemüse weil Salat keine Röstaromen hat",
item = "grilled_vegetables",
icon = "fa-solid fa-carrot",
requires = {
{item = "vegetables", amount = 1},
}
},
}