part 3 of module 06

This commit is contained in:
2026-02-13 17:50:38 +01:00
parent aa8767f46d
commit 545da90c08
5 changed files with 80 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
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!"