Core/BattlePets: Misc fixes
Port From (https://github.com/TrinityCore/TrinityCore/commit/de4eaa0de9565da604fa3b6e2b4b59efe117fd7a)
This commit is contained in:
@@ -51,7 +51,7 @@ namespace Framework.Constants
|
||||
/// </summary>
|
||||
public const int MaxBattlePetSpeciesId = 3159;
|
||||
public const int MaxPetBattleSlots = 3;
|
||||
public const int MaxBattlePetsPerSpecies = 3;
|
||||
public const int DefaultMaxBattlePetsPerSpecies = 3;
|
||||
public const int BattlePetCageItemId = 82800;
|
||||
public const int DefaultSummonBattlePetSpell = 118301;
|
||||
|
||||
@@ -2823,4 +2823,18 @@ namespace Framework.Constants
|
||||
|
||||
All = 0xFF
|
||||
}
|
||||
|
||||
public enum BattlePetDbFlags : ushort
|
||||
{
|
||||
None = 0x00,
|
||||
Favorite = 0x01,
|
||||
Converted = 0x02,
|
||||
Revoked = 0x04,
|
||||
LockedForConvert = 0x08,
|
||||
Ability0Selection = 0x10,
|
||||
Ability1Selection = 0x20,
|
||||
Ability2Selection = 0x40,
|
||||
FanfareNeeded = 0x80,
|
||||
DisplayOverridden = 0x100
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user