in games/athena.py [0:0]
def extract_move(text):
# Define the pattern to search for 'rock', 'paper', or 'scissors'
pattern = r"\b(rock|paper|scissors)\b"
match = re.search(pattern, text, re.IGNORECASE)
if match:
return match.group(0)
return None