From a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3 Mon Sep 17 00:00:00 2001 From: FrancescoBorzi Date: Mon, 25 Feb 2019 19:24:20 +0100 Subject: Import DB wiki from TC 335 --- docs/pet_spell.md | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 77 insertions(+), 6 deletions(-) (limited to 'docs/pet_spell.md') diff --git a/docs/pet_spell.md b/docs/pet_spell.md index 2c9c1ff..b6e5ffe 100644 --- a/docs/pet_spell.md +++ b/docs/pet_spell.md @@ -1,7 +1,78 @@ -[Database Structure](Database-Structure) > [Character-Database](Character-Database) > [pet_spell](pet_spell) +# pet\_spell -Column | Type | Description ---- | --- | --- -Guid | int(10) unsigned | -Spell | mediumint(8) unsigned | -Active | tinyint(3) unsigned | +`Back-to:Characters` + +**The \`pet\_spell\` table** + +This table holds information on individual pet spells. + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

guid

int(10)

unsigned

PRI

NO

0

 

Global Unique Identifier

spell

mediumint(8)

unsigned

PRI

NO

0

 

Spell Identifier

active

tinyint(3)

unsigned

 

NO

0

 

 

+ +**Description of the fields** + +### guid + +The pet GUID. See character\_pet.id + +### spell + +The spell ID. See Spell.dbc column 1 + +### active + +Boolean 0 or 1 controlling if the spell is active or not. -- cgit