From 0b20add24a4fc1c0cecca8d92baf4afcd9707817 Mon Sep 17 00:00:00 2001 From: Artur David Date: Thu, 18 Jun 2026 10:04:59 +0200 Subject: [PATCH] add purge recipe (apple+grape+chili) --- scripts/SpellLibrary.gd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/SpellLibrary.gd b/scripts/SpellLibrary.gd index c611c9d..d1181b6 100644 --- a/scripts/SpellLibrary.gd +++ b/scripts/SpellLibrary.gd @@ -10,6 +10,7 @@ const FIREBALL = "FIREBALL" const FIRE_SWIRL = "FIRE_SWIRL" const TORNADO = "TORNADO" const LASER = "LASER" +const PURGE = "PURGE" var recipes: Dictionary = { FIREBALL: [APPLE], @@ -17,6 +18,7 @@ var recipes: Dictionary = { LASER: [CHILI], SHURIKEN: [APPLE, GRAPE], FIRE_SWIRL: [APPLE, CHILI], + PURGE: [APPLE, GRAPE, CHILI], } func identify(cauldron_slots: Array) -> String: