2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDSkillBehavior {
|
|
|
|
unsigned int skillID; //!< The Skill ID of the skill
|
|
|
|
UNUSED(unsigned int locStatus); //!< ??
|
|
|
|
unsigned int behaviorID; //!< The Behavior ID of the skill
|
|
|
|
unsigned int imaginationcost; //!< The imagination cost of the skill
|
|
|
|
unsigned int cooldowngroup; //!< The cooldown group ID of the skill
|
|
|
|
float cooldown; //!< The cooldown time of the skill
|
|
|
|
UNUSED(bool isNpcEditor); //!< ???
|
|
|
|
UNUSED(unsigned int skillIcon); //!< The Skill Icon ID
|
|
|
|
UNUSED(std::string oomSkillID); //!< ???
|
|
|
|
UNUSED(unsigned int oomBehaviorEffectID); //!< ???
|
|
|
|
UNUSED(unsigned int castTypeDesc); //!< The cast type description(?)
|
|
|
|
UNUSED(unsigned int imBonusUI); //!< The imagination bonus of the skill
|
|
|
|
UNUSED(nsigned int lifeBonusUI); //!< The life bonus of the skill
|
|
|
|
UNUSED(unsigned int armorBonusUI); //!< The armor bonus of the skill
|
|
|
|
UNUSED(unsigned int damageUI); //!< ???
|
|
|
|
UNUSED(bool hideIcon); //!< Whether or not to show the icon
|
|
|
|
UNUSED(bool localize); //!< ???
|
|
|
|
UNUSED(std::string gate_version); //!< ???
|
|
|
|
UNUSED(unsigned int cancelType); //!< The cancel type (?)
|
|
|
|
};
|
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
class CDSkillBehaviorTable : public CDTable<CDSkillBehaviorTable> {
|
2021-12-05 17:54:36 +00:00
|
|
|
private:
|
|
|
|
std::map<unsigned int, CDSkillBehavior> entries;
|
|
|
|
CDSkillBehavior m_empty;
|
|
|
|
|
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-03-17 14:36:21 +00:00
|
|
|
// Gets an entry by skillID
|
2021-12-05 17:54:36 +00:00
|
|
|
const CDSkillBehavior& GetSkillByID(unsigned int skillID);
|
|
|
|
};
|
|
|
|
|