cannamatch/profiles.py
2025-10-22 11:51:33 +02:00

108 lines
3.6 KiB
Python

# Predefined radar profiles
profiles = {
"Alpenglow": {
"values": [25, 35, 45, 70, 50, 25],
"info_text0": "15%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "spicy-fruity, sour apple",
"info_text4": "relaxing, sleep promoting"
},
"Amnesia Haze": {
"values": [35, 65, 40, 35, 30, 35],
"info_text0": "20%",
"info_text1": "<1%",
"info_text2": "Sativa-dominant Hybrid",
"info_text3": "incense, citrus fruits",
"info_text4": "energizing, calming"
},
"Blue Dream": {
"values": [25, 35, 40, 41, 75, 35],
"info_text0": "15%",
"info_text1": "<1%",
"info_text2": "Sativa-dominant Hybrid",
"info_text3": "berries, sweet, slighty hazy",
"info_text4": "focusing, relaxing, slightly sleep promoting"
},
"Bubba Kush": {
"values": [30, 61, 40, 41, 31, 35],
"info_text0": "15%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "lavender, cocoa, roasted coffee",
"info_text4": "calming, relaxing"
},
"Cherry Valley Cake": {
"values": [30, 59, 65, 35, 30, 55],
"info_text0": "18%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "creamy, spicy, fermented cherry",
"info_text4": "inspring, relaxing, calming"
},
"Ciskei": {
"values": [70, 40, 35, 39, 41, 40],
"info_text0": "5%",
"info_text1": "7.5%",
"info_text2": "Sativa",
"info_text3": "herbaceous, cheesy, spicy",
"info_text4": "energizing, focusing"
},
"Cleopatra's Milk": {
"values": [30, 65, 45, 35, 35, 55],
"info_text0": "18%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "cake, oriental spices, fruit",
"info_text4": "inspring, calming"
},
"Grape Waves": {
"values": [25, 75, 45, 45, 35, 45],
"info_text0": "20%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "creamy, heavy, raisins",
"info_text4": "calming, inspiring"
},
"JBT Kush": {
"values": [30, 55, 50, 55, 45, 41],
"info_text0": "20%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "gassy (fuel), cheesy, pungent",
"info_text4": "calming, relaxing, sleep promoting"
},
"Mother's Choice": {
"values": [35, 35, 55, 35, 50, 61],
"info_text0": "15%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "spicy-sweet, candy",
"info_text4": "inspiring, focusing, relaxing"
},
"Royal Feast": {
"values": [25, 50, 55, 70, 55, 45],
"info_text0": "15%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "earthy, sour, heavy apple aroma",
"info_text4": "focusing, calming, sleep promoting"
},
"Strawberry Sundae": {
"values": [28, 32, 50, 42, 41, 47],
"info_text0": "15%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "fruity-creamy, strawberry yogurt",
"info_text4": "inspiring, relaxing"
},
"Wedding Cake": {
"values": [25, 70, 60, 50, 41, 50],
"info_text0": "20%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "creamy, lemon, vanilla, pastry",
"info_text4": "calming, relaxing, inspiring"
}
}