Tropical Sorbet - Refreshing Chill

# Tropical Sorbet - Fresh and Zesty
import fruit
from freezer import Sorbet

class RefreshingBreak:
    def __init__(self, coldness: int = 10):
        self.temperature = coldness
        self.is_frozen = True
        self.flavor = "Orange & Teal"

    def serve(self, scoops: float) -> bool:
        # A high-energy burst of flavor
        if scoops > 3.0:
            return False

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