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/character_spell_cooldown.md | 101 +++++++++++++++++++++++++++++++++++---- 1 file changed, 92 insertions(+), 9 deletions(-) (limited to 'docs/character_spell_cooldown.md') diff --git a/docs/character_spell_cooldown.md b/docs/character_spell_cooldown.md index 8e42bc4..b782afa 100644 --- a/docs/character_spell_cooldown.md +++ b/docs/character_spell_cooldown.md @@ -1,9 +1,92 @@ -[Database Structure](Database-Structure) > [Character-Database](Character-Database) > [character_spell_cooldown](character_spell_cooldown) - -Column | Type | Description ---- | --- | --- -Guid | int(10) unsigned | -Spell | mediumint(8) unsigned | -Item | int(10) unsigned | -Time | int(10) unsigned | -NeedSend | tinyint(3) unsigned | +# character\_spell\_cooldown + +`Back-to:Characters` + +**The \`character\_spell\_cooldown\` table** + +Holds the remaining cooldowns from either character spells or item spells for each character. + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

guid

int(10)

unsigned

PRI

NO

0

 

Global Unique Identifier, Low part

spell

mediumint(8)

unsigned

PRI

NO

0

 

Spell Identifier

item

int(10)

unsigned

 

NO

0

 

Item Identifier

time

int(10)

unsigned

 

NO

0

 

 

+ +**Description of the fields** + +### guid + +The GUID of the character. See characters.guid + +### spell + +The spell ID. See Spell.dbc column 1 + +### item + +If the spell was casted from an item, the item ID. See item\_template.entry + +### time + +The time when the spell cooldown will finish, measured in [Unix time](http://en.wikipedia.org/wiki/Unix_time) -- cgit