Files
2026-02-13 17:50:38 +01:00

12 lines
281 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from .basic import lead_to_gold
from ..potions import healing_potion
def philosophers_stone() -> str:
return f"Philosophers stone created using {lead_to_gold()}\
and {healing_potion()}"
def elixir_of_life() -> str:
return f"Elixir of life: eternal youth achieved!"