Jump to content
  • 0
Sign in to follow this  
karazu

Oblivion Chance of inflicting (GX skill)

Question

Hello can anyone tell me how much is the chance (%) to a player with 130 int getting inflicted with it?

Edited by karazu

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Target has a chance of resisting Oblivion Curse poison. If this number
is represented by a, 100% - (100 - 0.8 x INT) = a, where if a < 5%,
poison resistance is set to 5%.

 

status.c

 

    case SC_OBLIVIONCURSE: // 100% - (100 - 0.8 x INT)        sc_def = 100 - ( 100 - st->int_* 8 / 10 );        sc_def = max(sc_def, 5); // minimum of 5%        break;

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.