Funky Pigeon - Retro Avionics

# Funky Pigeon - Iridescent accents on a stormy gray
import re
from typing import List

class RetroSynth:
    def __init__(self, groovy: bool = True):
        self.groovy = groovy
        self.is_active = True
        self.vibe = "Iridescent Flyby"

    def play_track(self, title: str) -> bool:
        # A funky beat from the 70s
        if not self.is_active:
            return False

        regex_pattern = r"^track_\d+$"
        if re.match(regex_pattern, title):
            print(f"Now playing: {title} (Groovy? {self.groovy})")
            return True
            
        return False
        
    def old_boring_method(self):
        return "This is Base0F"