Configuration
Strains
config.strains = {
['Northern Lights'] = {
joint = 'northern_lights_joint', -- Item name of the joint that player will receive
effect = 'stress', -- Effect that will be applied to player when smoking this joint
receive = 1, -- Amount of joints that player will receive
required = {
item = 'northern_lights_bag', -- Item name of the weed that is required to roll this joint (can be dry bud, bag of weed, whatever you want)
amount = 1, -- Amount of weed required to roll this joint
},
},
['Blue Dream'] = {
joint = 'blue_dream_joint',
effect = 'armor',
receive = 1,
required = {
item = 'blue_dream_bag',
amount = 1,
},
},
['Pineapple Express'] = {
joint = 'pineapple_express_joint',
effect = 'speed',
receive = 1,
required = {
item = 'pineapple_express_bag',
amount = 1,
},
},
['Sour Diesel'] = {
joint = 'sour_diesel_joint',
effect = 'stamina',
receive = 1,
required = {
item = 'sour_diesel_bag',
amount = 1,
},
},
['Strawberry Kush'] = {
joint = 'strawberry_kush_joint',
effect = 'health',
receive = 1,
required = {
item = 'strawberry_kush_bag',
amount = 1,
},
},
['Golden Goat'] = {
joint = 'golden_goat_joint',
effect = 'stress',
receive = 1,
required = {
item = 'golden_goat_bag',
amount = 1,
},
},
}Effects
Last updated