PDA

View Full Version : Nullfire Blade and Mana combustion



PogS
08-29-2009, 01:35 PM
Hi HoNers,

I have a question :
looking at Nullfire Blade 's stats in the game files, I see:


actiontype="target_entity"
targetscheme="all_units"
range="600"
casttime="0"
castactiontime="0"
cooldowntime="12000"
cooldowntype="manaburn1"
casteffect="cast.effect"

What is this range means?

I thought the mana combustion was on impact as suggested by <onattackimpact> thus defined by the type and range of the Hero you have.

Tyrando
08-29-2009, 01:36 PM
Nullfire Blade can be used multiple times to cast the spell Purge, which will remove all Debuffs from an Ally/Self or All Buffs & Slow an Enemy.

Cursed Ground (Voodoo Jester) will never be removed.

PogS
08-29-2009, 01:52 PM
ok so this code does not apply to mana combustion but to the debuff spell ?

Osiris
08-29-2009, 01:56 PM
ok so this code does not apply to mana combustion but to the debuff spell ?

This.

The code that applies to mana combustion is this


<modifier key="manacombustion" modpriority="75" exclusive="true">
<onattackimpact effectdescription="true" propagatetoillusions="true">
<cantarget targetscheme="enemy_units" effecttype="Magic">
<takemana amount="27" />
<condition test="result gt 0">
<playeffect effect="manaburn.effect" source="source_entity" target="target_entity" />
<popup name="manaburn" source="target_entity" target="source_entity" a="result"/>
<damage effecttype="Physical" amount="0.75" b="result"/>
</condition>
</cantarget>
</onattackimpact>
</modifier>

PogS
08-29-2009, 02:45 PM
thx for answering :)

ok but there is
cooldowntype="manaburn1"