Props

Prop configuration (sh_props.lua)

Drug prop configuration

-- Main props configuration for drug-related objects
Config.Props = {
    -- Weed plant configuration with growth stages
    ["weed_plant"] = {
        canPickup = false, -- Whether the plant can be picked up and moved
        empty = "peuren_prop_pot_01", -- Model used for empty plant pot
        variations = {
            ["default"] = {
                -- Growth stages from smallest to largest
                [1] = {
                    model = "bkr_prop_weed_01_small_01c",
                    requiredGrowth = 0, -- Growth percentage needed
                },
                [2] = {
                    model = "bkr_prop_weed_01_small_01b",
                    requiredGrowth = 15,
                },
                [3] = {
                    model = "bkr_prop_weed_01_small_01a",
                    requiredGrowth = 30,
                },
                [4] = {
                    model = "bkr_prop_weed_med_01b",
                    requiredGrowth = 45,
                },
                [5] = {
                    model = "bkr_prop_weed_med_01a",
                    requiredGrowth = 60,
                },
                [6] = {
                    model = "bkr_prop_weed_lrg_01b",
                    requiredGrowth = 75,
                },
                [7] = {
                    model = "bkr_prop_weed_lrg_01a",
                    requiredGrowth = 90,
                },
            }
        }
    },

    -- Drying rack configuration for processing
    ["drying_rack"] = {
        canPickup = true, -- Can be moved around
        variations = {
            ["small"] = {
                model = "prop_bread_rack_01",
            },
            ["medium"] = {
                model = "v_club_rack",
            },
            ["large"] = {
                model = "v_club_rack",
            }
        }
    },

    -- Cocaine barrel configuration
    ["cocaine_barrel"] = {
        canPickup = true,
        model = "prop_barrel_03a",
    }
}

Last updated