mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-05 03:06:38 +00:00
Add spellscale and healscale to scaling data
This commit is contained in:
@@ -52,10 +52,41 @@ public:
|
||||
int max_dmg;
|
||||
int hp_regen_rate;
|
||||
int attack_delay;
|
||||
int spell_scale;
|
||||
int heal_scale;
|
||||
|
||||
std::string special_abilities;
|
||||
};
|
||||
|
||||
std::vector<std::string> scaling_stats = {
|
||||
"ac",
|
||||
"max_hp",
|
||||
"accuracy",
|
||||
"slow_mitigation",
|
||||
"atk",
|
||||
"str",
|
||||
"sta",
|
||||
"dex",
|
||||
"agi",
|
||||
"int",
|
||||
"wis",
|
||||
"cha",
|
||||
"mr",
|
||||
"cr",
|
||||
"fr",
|
||||
"pr",
|
||||
"dr",
|
||||
"cr",
|
||||
"pr",
|
||||
"min_hit",
|
||||
"max_hit",
|
||||
"hp_regen",
|
||||
"attack_delay",
|
||||
"spell_scale",
|
||||
"heal_scale",
|
||||
"special_abilities"
|
||||
};
|
||||
|
||||
void ScaleMob(Mob *mob);
|
||||
bool LoadScaleData();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user