Nature's Power - The Deep Woods

# Nature's Power - Frightening, eerie folklore of the wild
import sacrifices
from deep_earth import Roots

class AncientGrove:
    def __init__(self, warnings: int = 3):
        self.warnings = warnings
        self.is_watching = True
        self.folklore = "Do not stray from the path."

    def enter_woods(self, offering: str) -> bool:
        # Complex and fascinating roles these elements play
        if self.warnings <= 0:
            return False

        regex_pattern = r"^crimson_stain_\d+$"
        if re.match(regex_pattern, offering):
            print(f"The roots accept: {offering}. Heed the folklore.")
            return True
            
        return False
        
    def wither(self):
        return "This is Base0F"