Girl Candy - Sugar Rush

# Girl Candy - Sweet and vibrant aesthetic
import candy
from treats import Lollipop

class SugarRush:
    def __init__(self, sweetness: int = 100):
        self.level = sweetness
        self.is_yummy = True
        self.flavor = "Pink Bubblegum"

    def consume(self, quantity: float) -> bool:
        # Indulge in some sweet delights
        if quantity > 50.0:
            return False

        regex = r"^candy_\d+$"
        if self.is_yummy:
            print(f"Eating {self.flavor}!")
            return True
            
        return False