- Ordered up entries in skill_unit_db
- SC_REFLECTSHIELD will now be passed to devoted characters at cast-time. - Added a check to make a mob's level 1 if the read level from the db is less than it. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8615 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
5edbd7d5a7
commit
b081345d26
@ -4,6 +4,10 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
|
||||
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
||||
|
||||
2006/09/04
|
||||
* SC_REFLECTSHIELD will now be passed to devoted characters at cast-time.
|
||||
[Skotlex]
|
||||
* Added a check to make a mob's level 1 if the read level from the db is
|
||||
less than it. [Skotlex]
|
||||
* status_calc_misc will now be invoked in status_calc_bl even on the first
|
||||
call, since status could have gone up due to skill bonuses. [Skotlex]
|
||||
* Moved max HP/SP calculations to before invoking status_calc_misc
|
||||
|
@ -378,7 +378,6 @@
|
||||
970,22,228,1,7127,0,713,1,7033,5,905,5,1092,1
|
||||
//-- Embryo <-- AM_PHARMACY & Potion Creation Guide & 1 Seed of Life, 1 Morning Dew of Yggdrasil, 1 Glass Tube
|
||||
7142,22,228,1,7144,0,7140,1,7141,1,7143,1
|
||||
// ProduceItemID,ItemLV,RequireSkill,MaterialID1,MaterialAmount1,......
|
||||
//----------------------------------------------
|
||||
|
||||
//==============================================
|
||||
|
@ -89,7 +89,7 @@
|
||||
484,0xb8, , 2, 0,1000,enemy, 0x808 //HW_GRAVITATION
|
||||
488,0xb9, , 3, 0, -1,all, 0x200 //CG_HERMODE
|
||||
516,0xba, , 0, 3, 100,enemy, 0x000 //GS_DESPERADO
|
||||
538,0xbb,,1:1:1:2:2:2:3:3:3:4,0,-1,all,0x000 //NJ_SUITON
|
||||
521,0xbe, , 0, 1,1000,enemy, 0x006 //GS_GROUNDDRIFT
|
||||
527,0xbc, , -1, 0,2000,enemy, 0x000 //NJ_TATAMIGAESHI
|
||||
535,0xbd, , -1, 0, 200,enemy, 0x008 //NJ_KAENSIN
|
||||
521,0xbe, , 0, 1,1000,enemy, 0x006 //GS_GROUNDDRIFT
|
||||
538,0xbb,,1:1:1:2:2:2:3:3:3:4,0,-1,all,0x000 //NJ_SUITON
|
||||
|
@ -3172,6 +3172,9 @@ static int mob_readdb(void)
|
||||
memcpy(mob_db_data[class_]->jname, str[2], NAME_LENGTH-1);
|
||||
memcpy(mob_db_data[class_]->name, str[3], NAME_LENGTH-1);
|
||||
mob_db_data[class_]->lv = atoi(str[4]);
|
||||
if (mob_db_data[class_]->lv < 1)
|
||||
mob_db_data[class_]->lv = 1;
|
||||
|
||||
status = &mob_db_data[class_]->status;
|
||||
|
||||
status->max_hp = atoi(str[5]);
|
||||
@ -3870,6 +3873,9 @@ static int mob_read_sqldb(void)
|
||||
memcpy(mob_db_data[class_]->jname, TO_STR(2), NAME_LENGTH-1);
|
||||
memcpy(mob_db_data[class_]->name, TO_STR(3), NAME_LENGTH-1);
|
||||
mob_db_data[class_]->lv = TO_INT(4);
|
||||
if (mob_db_data[class_]->lv < 1)
|
||||
mob_db_data[class_]->lv = 1;
|
||||
|
||||
status = &mob_db_data[class_]->status;
|
||||
status->max_hp = TO_INT(5);
|
||||
status->max_sp = TO_INT(6);
|
||||
|
@ -4911,6 +4911,16 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val
|
||||
break;
|
||||
case SC_REFLECTSHIELD:
|
||||
val2=10+val1*3; //% Dmg reflected
|
||||
if (sd)
|
||||
{ //Pass it to devoted chars.
|
||||
struct map_session_data *tsd;
|
||||
int i;
|
||||
for (i = 0; i < 5; i++)
|
||||
{ //Pass the status to the other affected chars. [Skotlex]
|
||||
if (sd->devotion[i] && (tsd = map_id2sd(sd->devotion[i])))
|
||||
status_change_start(&tsd->bl,SC_AUTOGUARD,10000,val1,val2,0,0,tick,1);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case SC_STRIPWEAPON:
|
||||
if (bl->type != BL_PC) //Watk reduction
|
||||
|
Loading…
x
Reference in New Issue
Block a user