Bodhi Guide - Seed and Strain Discussion (Part 2)

Yes it can be added like this

When making the description of the strain add in this line

“Flower Time”: “8-9 weeks”,

    "Ancient OG": {
    "type": "Indica-dominant hybrid",
    "THC_content": "20-24%",
    "flavors": "Lemon, Earthy, Spicy",
    "flower time": "8-9 weeks",
    "effects": "Calm, Sleepy, Euphoric",
    "description": "Ancient OG is an indica-dominant strain with lemony and earthy flavors. It has strong sedative effects, perfect for evening relaxation."
},

and then in the bottom part you add that into this section

        if strain:
        return (f"Strain: {strain_name}\n"
                f"Type: {strain['type']}\n"
                f"THC Content: {strain['THC_content']}\n"
                f"Flavors: {strain['flavors']}\n"
                f"Flower Time: {strain['flower time']}\n"
                f"Effects: {strain['effects']}\n"
                f"Description: {strain['description']}")
    else:
9 Likes