Jump to content
  • 0
PunkBuster

Cicada Skin Shedding

Question

The Ninja skill CCS. How does it determine which skill will or will not bypass it? What if I want to make X skill ignore it, where do I have to edit?

 

Also, would it be possible to make a skin_shedding.txt file, in which we can add and remove which skills are bypassed? I think that'd be a nice improvement.

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

battle.c

		if (((sce=sc->data[SC_NJ_UTSUSEMI]) || sc->data[SC_NJ_BUNSINJYUTSU])		&& flag&BF_WEAPON && !(skill->get_nk(skill_id)&NK_NO_CARDFIX_ATK)) {			skill->additional_effect (src, bl, skill_id, skill_lv, flag, ATK_BLOCK, timer->gettick() );			if( !status->isdead(src) )				skill->counter_additional_effect( src, bl, skill_id, skill_lv, flag, timer->gettick() );			if (sce) {				clif->specialeffect(bl, 462, AREA);				skill->blown(src,bl,sce->val3,-1,0);			}			//Both need to be consumed if they are active.			if (sce && --(sce->val2) <= 0)				status_change_end(bl, SC_NJ_UTSUSEMI, INVALID_TIMER);			if ((sce=sc->data[SC_NJ_BUNSINJYUTSU]) && --(sce->val2) <= 0)				status_change_end(bl, SC_NJ_BUNSINJYUTSU, INVALID_TIMER);			return 0;		}
normal damage and any physical skill that can modify with cards ... already explained in iro wiki lol

Share this post


Link to post
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
Answer this question...

×   Pasted as rich text.   Restore formatting

  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.

Loading...

×
×
  • Create New...

Important Information

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