cannamatch/profiles.py
2026-07-08 19:08:41 +02:00

92 lines
3.0 KiB
Python

# Predefined radar profiles
profiles = {
"Amnesia Haze": {
"values": [47, 52, 30, 30, 40, 31],
"info_text0": "20%",
"info_text1": "<1%",
"info_text2": "Sativa-dominant Hybrid",
"info_text3": "incense, citrus fruits",
"info_text4": "energizing, calming"
},
"Black Cherry": {
"values": [27, 32, 32, 60, 45, 30],
"info_text0": "20%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "black cherry, berries, creamy",
"info_text4": "focusing, relaxing"
},
"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"
},
"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"
},
"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"
},
"Sherb Cream Pie": {
"values": [27, 57, 50, 37, 38, 60],
"info_text0": "15%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "vanilla, earthy, sweet",
"info_text4": "inspiring, calming, relaxing"
},
"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"
},
"Trop Cherry": {
"values": [27, 56, 43, 32, 33, 50],
"info_text0": "15%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "tea, tropical, berries",
"info_text4": "inspiring, calming, 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"
}
}