So, I have somewhat working code. I just keep running out of time. my code is posted below.
My Code
# This level is intended to be for advanced players. The solution should be pretty complex with a lot of moving parts. It might also be a bit of a gear check unless you use creative methods.
# You need to make your way to the first trial (Oasis of Marr) defeating enemies along the way. When you reach it, pick all the mushrooms to trigger the trial to begin. If you survive the onslaught, make your way to the next Oasis for the second trial, then the Temple. When all trials are complete you will have to face the final boss. Good luck!
# HINT: Glasses with a high visual range help tremendously on this level so buy the best you can get.
# HINT: the unit 'type' for the oasis guardians is 'oasis-guardian'
while True:
enemy = hero.findNearestEnemy()
if enemy:
hero.attack(enemy)
if hero.isReady("bash"):
hero.bash(enemy)
Tips: Use a wizard with lightning stick. The long range plus flags can destroy the boss at the end because your range is longer than the boss’s. It also destroys the light enemies(munchkins, throwers etc…) Hope this helps😉!