mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-03 09:26:36 +00:00
ExtraAttackOptions (for npc special attacks) additions.
melee_damage_bonus_flat //(+/-) damage percent applied to out going damage skilldmgtaken_bonus_flat //(+/-) mitigation percent applied to out going damage *Note: These have not been applied to any ingame functions set.
This commit is contained in:
+5
-1
@@ -614,7 +614,8 @@ struct ExtraAttackOptions {
|
||||
: damage_percent(1.0f), damage_flat(0),
|
||||
armor_pen_percent(0.0f), armor_pen_flat(0),
|
||||
crit_percent(1.0f), crit_flat(0.0f),
|
||||
hate_percent(1.0f), hate_flat(0), hit_chance(0)
|
||||
hate_percent(1.0f), hate_flat(0), hit_chance(0),
|
||||
melee_damage_bonus_flat(0), skilldmgtaken_bonus_flat(0)
|
||||
{ }
|
||||
|
||||
float damage_percent;
|
||||
@@ -626,6 +627,9 @@ struct ExtraAttackOptions {
|
||||
float hate_percent;
|
||||
int hate_flat;
|
||||
int hit_chance;
|
||||
int melee_damage_bonus_flat;
|
||||
int skilldmgtaken_bonus_flat;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user