Jump to content
  • 0

Grand Cross


Question

Posted

Hi,

I found this at skill.c

case CR_GRANDCROSS:
case NPC_GRANDDARKNESS:
 //Chance to cause blind status vs demon and undead element, but not against players
 if(!dstsd && (battle_check_undead(tstatus->race,tstatus->def_ele) || tstatus->race == RC_DEMON))
  sc_start(bl,SC_BLIND,100,skilllv,skill_get_time2(skillid,skilllv));
 attack_type |= BF_WEAPON;
 break;

I need raise the Damage of Grand Cross, where i have to edit? Thanks Adv.

2 answers to this question

Recommended Posts

Posted

maybe it is this part ??

https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/battle.c

 if( skill_num == CR_GRANDCROSS || skill_num == NPC_GRANDDARKNESS )
 { //Apply the physical part of the skill's damage. [skotlex]
  struct Damage wd = battle_calc_weapon_attack(src,target,skill_num,skill_lv,mflag);
  ad.damage = battle_attr_fix(src, target, wd.damage + ad.damage, s_ele, tstatus->def_ele, tstatus->ele_lv) * (100 + 40*skill_lv)/100;
  if( src == target )
  {
   if( src->type == BL_PC )
 ad.damage = ad.damage/2;
   else
 ad.damage = 0;
  }
 }

Join the conversation

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

Guest
Answer this question...

×   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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...