nc5432 940fed1170 Background and UI
- Got new backgrounds
- Added health bars
- Added in enemy wizard using the wizard spellbook rather than the old spellbook
- Made the cast indicator smaller since it seemed a bit large
- Started working on enemy AI systems
- Fixed rock throw animation
2024-05-07 21:43:09 -04:00

26 lines
264 B
GDScript

extends "res://Scripts/combatant.gd"
func _easyAI(delta):
if casting:
pass
else:
pass
func _normalAI(delta):
if casting:
pass
else:
pass
func _hardAI(delta):
if casting:
pass
else:
pass
func _gamerAI(delta):
if casting:
pass
else:
pass