Embershell Turtle Hatchling v1
70
ID:
532
Family ID:
Author:
Velex
Rarity:
uncommon
Element:
fire
Attack Type:
Decay
Attack Range:
800
Attack CD:
0.25
Damage:
50-49
Abil. Factor:
3.5
Status:
Approved

Description:

Embershell Turtles are volatile creatures who tend to sporadically attack just about everything. Luckily, they tend to run out of steam rather quickly.

Latest Upload Comment:

Restored from 1.10
Specials:
+0.5 mana/lvl
Overheat
Each attack costs 1 mana, which is regenerated at a rate of 1 mana per second.
Download

Toggle Triggers

On Attack

ONATTACK_chance: 1.0 ONATTACK_chanceLevelAdd: 0.0
function onAttack takes Tower tower returns nothing
   
  local unit towerUnit = tower.getUnit()
  local real mana = GetUnitState(towerUnit, UNIT_STATE_MANA)
  if (mana < 1) then
    call tower.orderStop()
  else
    call SetUnitState(towerUnit , UNIT_STATE_MANA, mana-1)
  endif
  set towerUnit = null
endfunction