mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-13 20:56:54 +01:00
12 lines
281 B
Python
12 lines
281 B
Python
from .basic import lead_to_gold
|
||
from ..potions import healing_potion
|
||
|
||
|
||
def philosophers_stone() -> str:
|
||
return f"Philosopher’s stone created using {lead_to_gold()}\
|
||
and {healing_potion()}"
|
||
|
||
|
||
def elixir_of_life() -> str:
|
||
return f"Elixir of life: eternal youth achieved!"
|