2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
2024-03-07 05:45:24 +00:00
|
|
|
#include <cstdint>
|
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
struct CDObjectSkills {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t objectTemplate; //!< The LOT of the item
|
|
|
|
uint32_t skillID; //!< The Skill ID of the object
|
|
|
|
uint32_t castOnType; //!< ???
|
|
|
|
uint32_t AICombatWeight; //!< ???
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|
2024-02-09 13:37:58 +00:00
|
|
|
class CDObjectSkillsTable : public CDTable<CDObjectSkillsTable, std::vector<CDObjectSkills>> {
|
2021-12-05 17:54:36 +00:00
|
|
|
public:
|
2023-08-11 04:27:40 +00:00
|
|
|
void LoadValuesFromDatabase();
|
2023-03-17 14:36:21 +00:00
|
|
|
// Queries the table with a custom "where" clause
|
2021-12-05 17:54:36 +00:00
|
|
|
std::vector<CDObjectSkills> Query(std::function<bool(CDObjectSkills)> predicate);
|
|
|
|
};
|
|
|
|
|