Adding Additional Grill Items

Additional food example GRILL

  • Check the props in the stream folder and their layout of the 5 cooking stages

  • Make your props with the same layout (for example: raw_fish, rare_fish etc.)

  • Add your food type to the config like this:

['grill-1'] = {
    name = "Grill 1",
    grill = true,
    recipes = {
        ['burgerpatty'] = {
            amount = 1,
            ingredients = {
                ['raw_burgerpatty'] = 1
            },
            icon = 'burger',
            time = 40000,
            propsName = '_burger', -- DONT TOUCH
        },
        ['bacon'] = {
            amount = 1,
            ingredients = {
                ['raw_bacon'] = 1
            },
            icon = 'bacon',
            time = 25000,
            propsName = '_bacon', -- DONT TOUCH
        },
        ------ adding fish
        ['fish'] = {
            amount = 1,
            ingredients = {
                ['raw_fish'] = 1
            },
            icon = 'fish',
            time = 25000,
            propsName = '_fish', -- DONT TOUCH           -- 'raw_fish', 'rare_fish', 'cooked_fish', 'overcooked_fish', 'burnt_fish'
        }
        ------ adding chicken
        ['chicken'] = {
            amount = 1,
            ingredients = {
                ['raw_chicken'] = 1
            },
            icon = 'chicken',
            time = 35000,
            propsName = 'chicken', -- DONT TOUCH           -- 'raw_chicken', 'rare_chicken', 'cooked_chicken', 'overcooked_chicken', 'burnt_chicken'
        }
    },
    max = 6
},

Last updated