2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// Custom Classes
|
|
|
|
#include "CDTable.h"
|
|
|
|
|
|
|
|
struct CDActivityRewards {
|
2024-01-09 07:54:14 +00:00
|
|
|
uint32_t objectTemplate; //!< The object template (?)
|
|
|
|
uint32_t ActivityRewardIndex; //!< The activity reward index
|
|
|
|
int32_t activityRating; //!< The activity rating
|
|
|
|
uint32_t LootMatrixIndex; //!< The loot matrix index
|
|
|
|
uint32_t CurrencyIndex; //!< The currency index
|
|
|
|
uint32_t ChallengeRating; //!< The challenge rating
|
2021-12-05 17:54:36 +00:00
|
|
|
std::string description; //!< The description
|
|
|
|
};
|
|
|
|
|
2024-02-09 13:37:58 +00:00
|
|
|
class CDActivityRewardsTable : public CDTable<CDActivityRewardsTable, std::vector<CDActivityRewards>> {
|
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<CDActivityRewards> Query(std::function<bool(CDActivityRewards)> predicate);
|
|
|
|
};
|