add purge recipe (apple+grape+chili)

main
Artur David 2026-06-18 10:04:59 +02:00
parent 66ad51820b
commit 0b20add24a
1 changed files with 2 additions and 0 deletions

View File

@ -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: