Lesser Priest v1
90
|
ID: 590
Family ID:
Author: Boekie
Rarity: uncommon
Element: astral
Attack Type: Elemental
Attack Range: 1000
Attack CD: 2
Damage: 97-97
Status: Approved
|
Specials:
+3% attackspeed/lvl
Smite
When this tower damages a creep it has 5% chance to smite it, dealing 10 spelldamage. Level Bonus: +2% chance +18 spelldamage -0.6 permanent armor reduction (-0.2 on bosses) at level 25 |
Download
Toggle Triggers On Damage
ONDAMAGE_chance: 0.05
ONDAMAGE_chanceLevelAdd: 0.02
function onDamage takes Tower tower returns nothing
local Unit creep = Event.getTarget()
local integer level = tower.getLevel()
call tower.doSpellDamage(creep,10.0+(level*18.0),tower.calcSpellCritNoBonus())
call SFXOnUnit("Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl",creep.getUnit(),"origin")
if level == 25 then
if creep.getSize() < SIZE_BOSS then
call creep.modifyProperty(MOD_ARMOR, -0.6)
else
call creep.modifyProperty(MOD_ARMOR, -0.2)
endif
endif
endfunction
|
Priest v1
290
|
ID: 597
Family ID:
Author: Boekie
Rarity: uncommon
Element: astral
Attack Type: Elemental
Attack Range: 1000
Attack CD: 2
Damage: 301-301
Status: Approved
|
Description: This holy priest is able to smite creeps. It's very weak at the start but becomes a lot stronger when it gains experience.
Specials:
+3% attackspeed/lvl
Smite
When this tower damages a creep it has 5% chance to smite it, dealing 35 spelldamage. Level Bonus: +2% chance +63 spelldamage -0.9 permanent armor reduction (-0.3 on bosses) at level 25 |
Download
Toggle Triggers On Damage
ONDAMAGE_chance: 0.05
ONDAMAGE_chanceLevelAdd: 0.02
function onDamage takes Tower tower returns nothing
local Unit creep = Event.getTarget()
local integer level = tower.getLevel()
call tower.doSpellDamage(creep,35.0+(level*63.0),tower.calcSpellCritNoBonus())
call SFXOnUnit("Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl",creep.getUnit(),"origin")
if level == 25 then
if creep.getSize() < SIZE_BOSS then
call creep.modifyProperty(MOD_ARMOR, -0.9)
else
call creep.modifyProperty(MOD_ARMOR, -0.3)
endif
endif
endfunction
|
Experienced Priest v1
700
|
ID: 598
Family ID:
Author: Boekie
Rarity: uncommon
Element: astral
Attack Type: Elemental
Attack Range: 1000
Attack CD: 2
Damage: 668-668
Status: Approved
|
Description: This holy priest is able to smite creeps. It's very weak at the start but becomes a lot stronger when it gains experience.
Specials:
+3% attackspeed/lvl
Smite
When this tower damages a creep it has 5% chance to smite it, dealing 90 spelldamage. Level Bonus: +2% chance +162 spelldamage -1.2 permanent armor reduction (-0.4 on bosses) at level 25 |
Download
Toggle Triggers On Damage
ONDAMAGE_chance: 0.05
ONDAMAGE_chanceLevelAdd: 0.02
function onDamage takes Tower tower returns nothing
local Unit creep = Event.getTarget()
local integer level = tower.getLevel()
call tower.doSpellDamage(creep,90.0+(level*162.0),tower.calcSpellCritNoBonus())
call SFXOnUnit("Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl",creep.getUnit(),"origin")
if level == 25 then
if creep.getSize() < SIZE_BOSS then
call creep.modifyProperty(MOD_ARMOR, -1.2)
else
call creep.modifyProperty(MOD_ARMOR, -0.4)
endif
endif
endfunction
|
Holy Priest v1
1400
|
ID: 599
Family ID:
Author: Boekie
Rarity: uncommon
Element: astral
Attack Type: Elemental
Attack Range: 1000
Attack CD: 2
Damage: 1279-1279
Status: Approved
|
Description: This holy priest is able to smite creeps. It's very weak at the start but becomes a lot stronger when it gains experience.
Specials:
+3% attackspeed/lvl
Smite
When this tower damages a creep it has 5% chance to smite it, dealing 190 spelldamage. Level Bonus: +2% chance +342 spelldamage -1.5 permanent armor reduction (-0.5 on bosses) at level 25 |
Download
Toggle Triggers On Damage
ONDAMAGE_chance: 0.05
ONDAMAGE_chanceLevelAdd: 0.02
function onDamage takes Tower tower returns nothing
local Unit creep = Event.getTarget()
local integer level = tower.getLevel()
call tower.doSpellDamage(creep,190.0+(level*342.0),tower.calcSpellCritNoBonus())
call SFXOnUnit("Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl",creep.getUnit(),"origin")
if level == 25 then
if creep.getSize() < SIZE_BOSS then
call creep.modifyProperty(MOD_ARMOR, -1.5)
else
call creep.modifyProperty(MOD_ARMOR, -0.5)
endif
endif
endfunction
|
Divine Priest v1
2500
|
ID: 600
Family ID:
Author: Boekie
Rarity: uncommon
Element: astral
Attack Type: Elemental
Attack Range: 1000
Attack CD: 2
Damage: 2179-2179
Status: Approved
|
Description: This holy priest is able to smite creeps. It's very weak at the start but becomes a lot stronger when it gains experience.
Specials:
+3% attackspeed/lvl
Smite
When this tower damages a creep it has 5% chance to smite it, dealing 380 spelldamage. Level Bonus: +2% chance +684 spelldamage -1.8 permanent armor reduction (-0.6 on bosses) at level 25 |
Download
Toggle Triggers On Damage
ONDAMAGE_chance: 0.05
ONDAMAGE_chanceLevelAdd: 0.02
function onDamage takes Tower tower returns nothing
local Unit creep = Event.getTarget()
local integer level = tower.getLevel()
call tower.doSpellDamage(creep,380.0+(level*684.0),tower.calcSpellCritNoBonus())
call SFXOnUnit("Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl",creep.getUnit(),"origin")
if level == 25 then
if creep.getSize() < SIZE_BOSS then
call creep.modifyProperty(MOD_ARMOR, -1.8)
else
call creep.modifyProperty(MOD_ARMOR, -0.6)
endif
endif
endfunction
|
Description: