# Configuration

> 1. Smokables
>
> ```lua
> Config.Smoke = { -- Item = 
>     {Item = "cubancigar",  Prop = 'prop_cigar_01', Armor = 0, Stress = 100, Size = 20, Type = 'cigar', Time = 120},
>     {Item = "davidoffcigar",  Prop = 'prop_cigar_01', Armor = 0, Stress = 100, Size = 20, Type = 'cigar', Time = 120},
>     {Item = "newportcig",  Prop = 'ng_proc_cigarette01a', Armor = 0, Stress = 15, Size = 20, Type = 'cigarette', Time = 120},
>     {Item = "marlborocig",  Prop = 'ng_proc_cigarette01a', Armor = 0, Stress = 15, Size = 20, Type = 'cigarette', Time = 120},
>     {Item = "vape",  Prop = 'ba_prop_battle_vape_01', Armor = 0, Stress = 5, Size = 0, Type = 'vape', Time = 0},
>     {Item = "bong",  Prop = 'prop_bong_01', Armor = 25, Stress = 5, Size = 0, Type = 'bong', Time = 0},
>     {Item = "bananakush_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40, Size = 20, Type = 'joint', Time = 120},
>     {Item = "bbgelato_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40, Size = 20, Type = 'joint', Time = 120},
>     {Item = "bluedream_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40,Size = 20, Type = 'joint', Time = 120},
>     {Item = "gmocookies_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40, Size = 20, Type = 'joint', Time = 120},
>     {Item = "ogkush_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40, Size = 20, Type = 'joint', Time = 120},
>     {Item = "orangecrush_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40, Size = 20, Type = 'joint', Time = 120},
>     {Item = "purplehaze_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40,Size = 20, Type = 'joint', Time = 120},
>     {Item = "sourdiesel_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40, Size = 20, Type = 'joint', Time = 120},
>     {Item = "stickybuns_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40,Size = 20, Type = 'joint', Time = 120},
>     {Item = "whiteruntz_joint",  Prop = 'prop_sh_joint_01', Armor = 10, Stress = 40, Size = 20, Type = 'joint', Time = 120},
>     {Item = "cyberkush_joint",  Prop = 'prop_sh_joint_01', Armor = 5, Stress = 25, Size = 20, Type = 'joint', Time = 120},
>     {Item = "uwuruntz_joint",  Prop = 'prop_sh_joint_01', Armor = 5, Stress = 25, Size = 20, Type = 'joint', Time = 120},
> }
> ```

> 2. Bong Items
>
> ```lua
> Config.BongReloadItems = {
>     {Items = "bananakush"},
>     {Items = "bbgelato"},
>     {Items = "bluedream"},
>     {Items = "gmocookies"},
>     {Items = "ogkush"},
>     {Items = "orangecrush"},
>     {Items = "purplehaze"},
>     {Items = "sourdiesel"},
>     {Items = "stickybuns"},
>     {Items = "whiteruntz"},
>     {Items = "cyberkush"},
>     {Items = "uwuruntz"},
> }
> ```

> 3. Joint Rolling
>
> ```lua
> Config.RollingJoints = {  -- Weed bag -- amount = How many joints you get
>     {Item = "bananakush",  GiveJoint = 'bananakush_joint', Amount = 1},
>     {Item = "bbgelato",  GiveJoint = 'bbgelato_joint', Amount = 1},
>     {Item = "bluedream",  GiveJoint = 'bluedream_joint', Amount = 1},
>     {Item = "gmocookies",  GiveJoint = 'gmocookies_joint', Amount = 1},
>     {Item = "ogkush",  GiveJoint = 'ogkush_joint', Amount = 1},
>     {Item = "orangecrush",  GiveJoint = 'orangecrush_joint', Amount = 1},
>     {Item = "purplehaze",  GiveJoint = 'purplehaze_joint', Amount = 1},
>     {Item = "sourdiesel",  GiveJoint = 'sourdiesel_joint', Amount = 1},
>     {Item = "stickybuns",  GiveJoint = 'stickybuns_joint', Amount = 1},
>     {Item = "whiteruntz",  GiveJoint = 'whiteruntz_joint', Amount = 1},
>     {Item = "uwuruntz",  GiveJoint = 'uwuruntz_joint', Amount = 1},
>     {Item = "cyberkush",  GiveJoint = 'cyberkush_joint', Amount = 1},
> }
> ```
