Files
Witchybun 378af4b07c Stardew Valley: Fix magic altar logic (#3417)
* Fix magic altar logic

* Force a tuple (really?)

* Fix received and force progression on all spells

* Reversing the tuple change (?yllaer)
2024-05-29 20:16:19 +02:00

31 lines
913 B
Python

all_spells = []
def spell(name: str) -> str:
all_spells.append(name)
return name
class MagicSpell:
clear_debris = spell("Spell: Clear Debris")
till = spell("Spell: Till")
water = spell("Spell: Water")
blink = spell("Spell: Blink")
evac = spell("Spell: Evac")
haste = spell("Spell: Haste")
heal = spell("Spell: Heal")
buff = spell("Spell: Buff")
shockwave = spell("Spell: Shockwave")
fireball = spell("Spell: Fireball")
frostbite = spell("Spell: Frostbolt")
teleport = spell("Spell: Teleport")
lantern = spell("Spell: Lantern")
tendrils = spell("Spell: Tendrils")
photosynthesis = spell("Spell: Photosynthesis")
descend = spell("Spell: Descend")
meteor = spell("Spell: Meteor")
bloodmana = spell("Spell: Bloodmana")
lucksteal = spell("Spell: Lucksteal")
spirit = spell("Spell: Spirit")
rewind = spell("Spell: Rewind")