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/creature_equip_template.md | 120 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 110 insertions(+), 10 deletions(-) (limited to 'docs/creature_equip_template.md') diff --git a/docs/creature_equip_template.md b/docs/creature_equip_template.md index 99980d4..d6407f1 100644 --- a/docs/creature_equip_template.md +++ b/docs/creature_equip_template.md @@ -1,10 +1,110 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [creature_equip_template](creature_equip_template) - -Column | Type | Description ---- | --- | --- -CreatureID | mediumint(8) unsigned | -ID | tinyint(3) unsigned | -ItemID1 | mediumint(8) unsigned | -ItemID2 | mediumint(8) unsigned | -ItemID3 | mediumint(8) unsigned | -VerifiedBuild | smallint(6) | +# creature\_equip\_template + +`Back-to:World` + +## **Table: creature\_equip\_template** + +This table contains all the equipment combinations that can be sent for each creature. + +## Structure + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

CreatureID

mediumint(8)

unsigned

PRI

NO

0


+

Unique entry

ID

tinyint(3)

unsigned

PRI

NO

1


+

Unique entry

ItemID1

mediumint(8)

unsigned


+

NO

0


+


+

ItemID2

mediumint(8)

unsigned


+

NO

0


+


+

ItemID3

mediumint(8)unsigned
+
NO0
+

+
+ +** +** + +## Description of the fields + +### CreatureID + +The direct corresponding [id](creature_2130009.html#creature-id) in [creature](creature) table or [entry](creature_template_2130008.html#creature_template-entry) in [creature\_template](creature_template) table. + +### ID + +An additional identifier for each individual entry, enabling multiple equipment for one creature entry. Counter **must** start with 1 and grow accordingly. + +### ItemID1 + +This is the item number of the equipment used in the right hand from [Item.dbc](https://trinitycore.atlassian.net/wiki/display/tc/Item). + +### ItemID2 + +This is the item number of the equipment used in the left hand from [Item.dbc](https://trinitycore.atlassian.net/wiki/display/tc/Item). + +### ItemID3 + +This is the item number of the equipment used in the ranged slot from [Item.dbc](https://trinitycore.atlassian.net/wiki/display/tc/Item). -- cgit