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_model_info.md | 136 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 127 insertions(+), 9 deletions(-) (limited to 'docs/creature_model_info.md') diff --git a/docs/creature_model_info.md b/docs/creature_model_info.md index eebf866..dff4218 100644 --- a/docs/creature_model_info.md +++ b/docs/creature_model_info.md @@ -1,9 +1,127 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [creature_model_info](creature_model_info) - -Column | Type | Description ---- | --- | --- -DisplayID | mediumint(8) unsigned | -BoundingRadius | float | -CombatReach | float | -Gender | tinyint(3) unsigned | -DisplayID_Other_Gender | mediumint(8) unsigned | +# creature\_model\_info + +`Back-to:World` + +**The \`creature\_model\_info\` table** + +This table contains all models of mobs, their gender and other information that are model related. This means that when a creature uses another model, this information will change as well. + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

modelid

mediumint(8)

unsigned

PRI

NO

0


+


+

bounding_radius

float

signed


+

NO

0


+


+

combat_reach

float

signed


+

NO

0


+


+

gender

tinyint(3)

unsigned


+

NO

2


+


+

modelid_other_gender

mediumint(8)

unsigned


+

NO

0


+


+

+ +**Description of the fields** + +### modelid + +Display ID fromĀ [CreatureDisplayInfo.dbc](CreatureDisplayInfo) + +### bounding\_radius + +This field is unused. It's purpose is currently unknown. It may or may not be linked to path-finding. + +### combat\_reach + +This value is the unit's radius in term of game mechanics: The bigger this value is, the higher the unit's range is and also the further away it can get hit from. + +### gender + +Gender of the creature + +- 0: Male +- 1: Female +- 2: None + + Note: do not modify this field without sniffs or talking to Kinzcool before (ref commit: http://git.io/T7RLmA). + +### modelid\_other\_gender + +Point to Creature\_model\_info.modelid. +When the entry is gender male (0) or female (1), this value can point to the opposite gender counterpart. -- cgit