About bonuses that contain 'Class'

KyleZ

New member
Messages
11
Points
0
bonus2 bAddDamageClass,n,x; +x% extra physical damage against monsters of class n
                                               Against players, n is their job id
bAddMagicDamageClass, bAddDefClass etc.

Job ID is a no brainer. But I couldn't find any description on class of monsters in item_bonus file.

Is there a reference at all ?

The only thing i can think of is boss/non-boss, probably not in the right direction
default_sad.png


 
Class for players is Job ID, for monsters it is mob_id.

i.e.

Assassin Cross = 4013

Poring = 1002

bonus2 bAddDamageClass,1002,50;  

+50% bonus damage against Poring class.

 
Thanks for the input~ 

It seems that I overthought it..  I was wondering if there was sth. like race2, you know like Goblins, Orc etc...

 
Thanks for the input~ 

It seems that I overthought it..  I was wondering if there was sth. like race2, you know like Goblins, Orc etc...
we got these too..

Code:
bonus2 bAddRace2,n,x;			Increase damage by x% vs. enemies of race n (Check db/mob_race2_db.txt)					y:	0=Don't show damage 1=Show damagebonus2 bSubRace2,n,x;			Damage x% reduction from enemies of race n (Check db/mob_race2_db.txt)
 
Back
Top