- All KA-spells are interruptable.
- Added a temporary SI_RUN state. Actual value needs to be found... git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6469 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
b30e1fdda7
commit
9ee1030fe9
@ -28,6 +28,7 @@
|
|||||||
=========================
|
=========================
|
||||||
|
|
||||||
05/04
|
05/04
|
||||||
|
* All KA-spells are interruptable. [Skotlex]
|
||||||
* Modified NPC_STUNATTACK: Max level is 5, stun duration is 1+lv seconds
|
* Modified NPC_STUNATTACK: Max level is 5, stun duration is 1+lv seconds
|
||||||
(these duration values are guessed, but they are better than the previous
|
(these duration values are guessed, but they are better than the previous
|
||||||
5+lv seconds) [Skotlex]
|
5+lv seconds) [Skotlex]
|
||||||
|
@ -481,11 +481,11 @@
|
|||||||
459,0,6,4,0,3,-1,1,1,no,0,8,0,weapon,0 //BS_ADRENALINE2#Full Adrenaline Rush#
|
459,0,6,4,0,3,-1,1,1,no,0,8,0,weapon,0 //BS_ADRENALINE2#Full Adrenaline Rush#
|
||||||
460,9,6,16,0,1,0,5,1,yes,0,0,0,magic,0 //SL_HUNTER#Spirit of the Hunter#
|
460,9,6,16,0,1,0,5,1,yes,0,0,0,magic,0 //SL_HUNTER#Spirit of the Hunter#
|
||||||
461,9,6,16,0,1,0,5,1,yes,0,512,0,magic,0 //SL_SOULLINKER#Spirit of the Soul Linker#
|
461,9,6,16,0,1,0,5,1,yes,0,512,0,magic,0 //SL_SOULLINKER#Spirit of the Soul Linker#
|
||||||
462,9,6,16,0,1,0,7,1,no,0,0,0,magic,0 //SL_KAIZEL#Kaizel#
|
462,9,6,16,0,1,0,7,1,yes,0,0,0,magic,0 //SL_KAIZEL#Kaizel#
|
||||||
463,9,6,16,0,1,0,7,1,no,0,0,0,magic,0 //SL_KAAHI#Kahai#
|
463,9,6,16,0,1,0,7,1,yes,0,0,0,magic,0 //SL_KAAHI#Kahai#
|
||||||
464,9,6,16,0,1,0,3,1,no,0,0,0,magic,0 //SL_KAUPE#Kauf#
|
464,9,6,16,0,1,0,3,1,yes,0,0,0,magic,0 //SL_KAUPE#Kauf#
|
||||||
465,9,6,16,0,1,0,7,1,no,0,0,0,magic,0 //SL_KAITE#Kaite#
|
465,9,6,16,0,1,0,7,1,yes,0,0,0,magic,0 //SL_KAITE#Kaite#
|
||||||
466,0,0,0,0,0,0,7,0,no,0,0,0,magic,0 //SL_KAINA#Kaina#
|
466,0,0,0,0,0,0,7,0,yes,0,0,0,magic,0 //SL_KAINA#Kaina#
|
||||||
467,9,6,1,-2,0,0,7,1,no,0,0,0,magic,2 //SL_STIN#Estin#
|
467,9,6,1,-2,0,0,7,1,no,0,0,0,magic,2 //SL_STIN#Estin#
|
||||||
468,9,6,1,-2,0,0,7,1,no,0,0,0,magic,0 //SL_STUN#Estern#
|
468,9,6,1,-2,0,0,7,1,no,0,0,0,magic,0 //SL_STUN#Estern#
|
||||||
469,9,8,1,-2,0,0,10,1:2:3:4:5:6:7:8:9:10,yes,0,0,0,magic,0 //SL_SMA#Esma#
|
469,9,8,1,-2,0,0,10,1:2:3:4:5:6:7:8:9:10,yes,0,0,0,magic,0 //SL_SMA#Esma#
|
||||||
|
@ -239,7 +239,7 @@ void initChangeTables(void) {
|
|||||||
set_sc(PF_FOGWALL, SC_FOGWALL, SI_BLANK);
|
set_sc(PF_FOGWALL, SC_FOGWALL, SI_BLANK);
|
||||||
set_sc(PF_SPIDERWEB, SC_SPIDERWEB, SI_BLANK);
|
set_sc(PF_SPIDERWEB, SC_SPIDERWEB, SI_BLANK);
|
||||||
set_sc(WE_BABY, SC_BABY, SI_BLANK);
|
set_sc(WE_BABY, SC_BABY, SI_BLANK);
|
||||||
set_sc(TK_RUN, SC_RUN, SI_BLANK);
|
set_sc(TK_RUN, SC_RUN, SI_RUN);
|
||||||
set_sc(TK_RUN, SC_SPURT, SI_SPURT);
|
set_sc(TK_RUN, SC_SPURT, SI_SPURT);
|
||||||
set_sc(TK_READYSTORM, SC_READYSTORM, SI_READYSTORM);
|
set_sc(TK_READYSTORM, SC_READYSTORM, SI_READYSTORM);
|
||||||
set_sc(TK_READYDOWN, SC_READYDOWN, SI_READYDOWN);
|
set_sc(TK_READYDOWN, SC_READYDOWN, SI_READYDOWN);
|
||||||
@ -3202,8 +3202,6 @@ int status_get_size(struct block_list *bl)
|
|||||||
nullpo_retr(1, bl);
|
nullpo_retr(1, bl);
|
||||||
switch (bl->type) {
|
switch (bl->type) {
|
||||||
case BL_MOB:
|
case BL_MOB:
|
||||||
if (((struct mob_data *)bl)->sc.data[SC_SWOO].timer != -1) // [marquis007]
|
|
||||||
return 0;
|
|
||||||
return ((struct mob_data *)bl)->db->size;
|
return ((struct mob_data *)bl)->db->size;
|
||||||
case BL_PET:
|
case BL_PET:
|
||||||
return ((struct pet_data *)bl)->db->size;
|
return ((struct pet_data *)bl)->db->size;
|
||||||
@ -5339,7 +5337,7 @@ int status_change_end( struct block_list* bl , int type,int tid )
|
|||||||
clif_changeoption(bl);
|
clif_changeoption(bl);
|
||||||
|
|
||||||
if (sd && calc_flag)
|
if (sd && calc_flag)
|
||||||
status_calc_pc((struct map_session_data *)bl,0); /* ステ?タス再計算 */
|
status_calc_pc(sd,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -341,6 +341,7 @@ enum {
|
|||||||
SI_READYTURN = 139,
|
SI_READYTURN = 139,
|
||||||
SI_READYCOUNTER = 141,
|
SI_READYCOUNTER = 141,
|
||||||
SI_DODGE = 143,
|
SI_DODGE = 143,
|
||||||
|
SI_RUN = 144,
|
||||||
SI_SPURT = 145,
|
SI_SPURT = 145,
|
||||||
SI_SHADOWWEAPON = 146,
|
SI_SHADOWWEAPON = 146,
|
||||||
SI_ADRENALINE2 = 147,
|
SI_ADRENALINE2 = 147,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user