Add category price minimums in the config

This commit is contained in:
NathanHandley
2025-01-20 12:34:10 -06:00
parent 700c41ca7a
commit 58abc4f94e
3 changed files with 162 additions and 55 deletions

View File

@@ -168,29 +168,44 @@ private:
uint32 ListProportionKey;
uint32 ListProportionMisc;
uint32 ListProportionGlyph;
double PriceMultiplierCategoryConsumable;
double PriceMultiplierCategoryContainer;
double PriceMultiplierCategoryWeapon;
double PriceMultiplierCategoryGem;
double PriceMultiplierCategoryArmor;
double PriceMultiplierCategoryReagent;
double PriceMultiplierCategoryProjectile;
double PriceMultiplierCategoryTradeGood;
double PriceMultiplierCategoryGeneric;
double PriceMultiplierCategoryRecipe;
double PriceMultiplierCategoryQuiver;
double PriceMultiplierCategoryQuest;
double PriceMultiplierCategoryKey;
double PriceMultiplierCategoryMisc;
double PriceMultiplierCategoryGlyph;
double PriceMultiplierQualityPoor;
double PriceMultiplierQualityNormal;
double PriceMultiplierQualityUncommon;
double PriceMultiplierQualityRare;
double PriceMultiplierQualityEpic;
double PriceMultiplierQualityLegendary;
double PriceMultiplierQualityArtifact;
double PriceMultiplierQualityHeirloom;
float PriceMultiplierCategoryConsumable;
float PriceMultiplierCategoryContainer;
float PriceMultiplierCategoryWeapon;
float PriceMultiplierCategoryGem;
float PriceMultiplierCategoryArmor;
float PriceMultiplierCategoryReagent;
float PriceMultiplierCategoryProjectile;
float PriceMultiplierCategoryTradeGood;
float PriceMultiplierCategoryGeneric;
float PriceMultiplierCategoryRecipe;
float PriceMultiplierCategoryQuiver;
float PriceMultiplierCategoryQuest;
float PriceMultiplierCategoryKey;
float PriceMultiplierCategoryMisc;
float PriceMultiplierCategoryGlyph;
float PriceMultiplierQualityPoor;
float PriceMultiplierQualityNormal;
float PriceMultiplierQualityUncommon;
float PriceMultiplierQualityRare;
float PriceMultiplierQualityEpic;
float PriceMultiplierQualityLegendary;
float PriceMultiplierQualityArtifact;
float PriceMultiplierQualityHeirloom;
uint32 PriceMinimumCenterBaseConsumable;
uint32 PriceMinimumCenterBaseContainer;
uint32 PriceMinimumCenterBaseWeapon;
uint32 PriceMinimumCenterBaseGem;
uint32 PriceMinimumCenterBaseArmor;
uint32 PriceMinimumCenterBaseReagent;
uint32 PriceMinimumCenterBaseProjectile;
uint32 PriceMinimumCenterBaseTradeGood;
uint32 PriceMinimumCenterBaseGeneric;
uint32 PriceMinimumCenterBaseRecipe;
uint32 PriceMinimumCenterBaseQuiver;
uint32 PriceMinimumCenterBaseQuest;
uint32 PriceMinimumCenterBaseKey;
uint32 PriceMinimumCenterBaseMisc;
uint32 PriceMinimumCenterBaseGlyph;
AHBConfig AllianceConfig;
AHBConfig HordeConfig;