Enchanted Midnight - The Edge of the World

# Enchanted Midnight - We are the last humans on earth.
import stillness
from horizon import View

class CliffEdge:
    def __init__(self, fear: int = 0):
        self.fear = fear
        self.is_calm = True
        self.sky = "Deep, deep purple."

    def look_at_horizon(self, view: str) -> bool:
        # Look at that view.
        if self.fear > 0:
            return False

        regex_pattern = r"^glowing_embers_\d+$"
        if re.match(regex_pattern, view):
            print(f"Witnessing: {view}. We are alone.")
            return True
            
        return False
        
    def panic(self):
        return "This is Base0F"