Jump to content

Questions about mechanics behind a few spells


Brexgem

Recommended Posts

I was reading the source code for BoE, and noticed this:

case eSpell::STUMBLE:
   store_m_type = 8;
   victim->curse(4 + bonus);
   store_sound = 24;
   break;
case eSpell::CURSE:
   store_m_type = 8;
   victim->curse(2 + bonus);
   store_sound = 24;
   break;            

 

Does this mean that the Lvl 1 spell 'Stumble' is more effective than the Lvl 2 spell 'Curse'?

 

Also, what affects the chances of Sleep Cloud/Paralysis/Mass Paralyze/Mass Charm affecting an enemy?

Edited by Celtic Minstrel
Reformatted code with code tags
Link to comment
Share on other sites

Also, what affects the chances of Sleep Cloud/Paralysis/Mass Paralyze/Mass Charm affecting an enemy?

 

The main factors are their level and their magic resistance. Higher-level enemies are harder to land status effects on. Magic-resistant enemies seem less likely to be affected and magic-immune enemies are, well, immune.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...