Core/BattlePets: Misc fixes

Port From (https://github.com/TrinityCore/TrinityCore/commit/de4eaa0de9565da604fa3b6e2b4b59efe117fd7a)
This commit is contained in:
hondacrx
2021-10-01 18:42:21 -04:00
parent 7ef98b794d
commit 9be431bb56
7 changed files with 100 additions and 6 deletions
+20
View File
@@ -2198,4 +2198,24 @@ namespace Framework.Constants
ContentTuningPvpLevelDamageScaling = 14,
ContentTuningPvpItemLevelDamageScaling = 15,
}
public enum BattlePetSpeciesFlags : ushort
{
NoRename = 0x01,
WellKnown = 0x02,
NotAccountWide = 0x04,
Capturable = 0x08,
NotTradable = 0x10,
HideFromJournal = 0x20,
LegacyAccountUnique = 0x40,
CantBattle = 0x80,
HordeOnly = 0x100,
AllianceOnly = 0x200,
Boss = 0x400,
RandomDisplay = 0x800,
NoLicenseRequired = 0x1000,
AddsAllowedWithBoss = 0x2000,
HideUntilLearned = 0x4000,
MatchPlayerHighPetLevel = 0x8000
}
}