cannamatch/profiles.py
2026-07-30 19:27:09 +02:00

116 lines
3.9 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"
},
"Apricot Mimosa": {
"values": [27, 69, 65, 42, 41, 60],
"info_text0": "9%",
"info_text1": "8%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "fruity, orange, creamy",
"info_text4": "calming, relaxing, inspiring"
},
"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"
},
"Cleopatra's Milk": {
"values": [29, 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"
},
"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"
},
"Grape Waves": {
"values": [24, 75, 45, 45, 35, 45],
"info_text0": "18%",
"info_text1": "<1%",
"info_text2": "Indica-dominant Hybrid",
"info_text3": "creamy, heavy, raisins",
"info_text4": "calming, inspiring"
},
"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"
}
}