View Single Post
  #2  
Old 01-15-2012, 01:08 PM
Caryatis
Dragon
 
Join Date: May 2009
Location: Milky Way
Posts: 539
Default

The spells_new DB field "effect_limit_valueX" is the proc modifier for these spells.

and you are correct they only proc when dmg is dealt:

Code:
if (damage > 0)
	{
		// Give the opportunity to throw back a defensive proc, if we are successful in affecting damage on our target
		other->TriggerDefensiveProcs(this);
		
        return true;
	}
Reply With Quote