The `character_pet` table
This table holds the pet data for each pet summoned by anyone in the game.
Table Structure
Field | Type | Attributes | Key | Null | Default | Extra | Comment |
---|---|---|---|---|---|---|---|
id | INT | UNSIGNED | PRI | NO | 0 | ||
entry | INT | UNSIGNED | NO | 0 | |||
owner | INT | UNSIGNED | NO | 0 | |||
modelid | INT | UNSIGNED | YES | 0 | |||
CreatedBySpell | MEDIUMINT | UNSIGNED | NO | 0 | |||
PetType | TINYINT | UNSIGNED | NO | 0 | |||
level | SMALLINT | UNSIGNED | NO | 0 | |||
exp | INT | UNSIGNED | NO | 1 | |||
Reactstate | TINYINT | UNSIGNED | NO | 0 | |||
name | VARCHAR(21) | SIGNED | NO | 0 | |||
renamed | TINYINT | UNSIGNED | NO | Pet | |||
slot | TINYINT | UNSIGNED | NO | 0 | |||
curhealth | INT | UNSIGNED | NO | 0 | |||
curmana | INT | UNSIGNED | NO | 1 | |||
curhappiness | INT | UNSIGNED | NO | 0 | |||
savetime | INT | UNSIGNED | NO | 0 | |||
abdata | TEXT | SIGNED | YES | 0 |
Description of the fields
The special pet ID. This is a unique identifier among all pets.
The creature entry of this pet. See creature_template.entry.
The GUID of the pet's owner. See characters.guid.
The model ID to use to display the pet.
The ID of the spell that has created this pet. For hunters, this is usually the Tame Beast spell. For warlocks or other classes (mages), it is the spell ID that summoned the creature. See Spell.dbc column 1.
The type of pet that this is. 0 = summoned pet, 1 = tamed pet
The current level of the pet.
The current experience that this pet has. For summoned pets, this field is always 0.
The current reaction state of the pet (passive, aggressive, etc).
The pet's name.
Boolean 1 or 0. 1 = Pet has been renamed, 0 = Pet has never been renamed and still uses the same name as the creature that was tamed.
The current pet health at the time it was saved to DB.
The current pet mana at the time it was saved to DB.
The current pet happiness.
The time when the pet was last saved, in Unix time.
field-no-description|17