forked from Simnation/Main
42 lines
999 B
Lua
42 lines
999 B
Lua
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 = "Steak",
|
|
description = "Ein perfekt gegrilltes Steak",
|
|
item = "cooked_bbq_ribeye",
|
|
icon = "fa-solid fa-drumstick-bite",
|
|
requires = {
|
|
{item = "ribeye_steak", amount = 1},
|
|
}
|
|
},
|
|
{
|
|
label = "Bratwurst",
|
|
description = "Eine leckere Bratwurst",
|
|
item = "cooked_bbq_sausages",
|
|
icon = "fa-solid fa-hotdog",
|
|
requires = {
|
|
{item = "raw_sausage", amount = 1},
|
|
}
|
|
},
|
|
}
|