๐งฌAdding & Customizing Weed Strains
Config.Plant = { ... }๐ฑ Example Weed Strain Structure
['bluedream'] = {
label = 'Blue Dream Plant', -- Name shown to players
seed = 'seed_bluedream', -- Item used to plant this strain
baggie = 'bluedream_bag', -- Final sellable bag item
bud = 'bud_bluedream', -- Intermediate product from harvest
budMin = 5, -- Min buds per plant on harvest
budMax = 10, -- Max buds per plant on harvest
BudsForBag = 5, -- Buds required to make 1 bag
PlacingProgressBarDuration = 10, -- Seconds it takes to plant
RequirePot = true,
RemovePot = 1,
RequireShovel = true,
RemoveShovel = 0,
Props = {
[1] = `an_weed_blue_01_small_01a`, -- Stage 1 (small)
[2] = `an_weed_blue_med_01b`, -- Stage 2 (medium)
[3] = `an_weed_blue_lrg_01a` -- Stage 3 (fully grown)
}
}โ Adding a New Strain
1๏ธโฃ Copy an existing block
2๏ธโฃ Paste it below the others and change the key
3๏ธโฃ Update the internal values
Field
Description
๐งช Customization Tips
๐ง Example Custom Strain
Last updated