From 342bc7dbd3a7963bc796bfe4879fc0491c8d7aba Mon Sep 17 00:00:00 2001 From: Stefano Borzì Date: Sat, 27 Apr 2019 15:16:15 +0200 Subject: Updating wiki layout and missing contents (#34) * Added angle.png for creature_formations * Update creature_formations.md * Update creature_text.md * Added creature_text type images * Removed useless link in npc_vendor * Update quest_template.md * Fixed layout table in spell_dbc * Fixed headers in warden_checks * Fixed type values layout in logs * Fixed layout in character_stats * Fixed layout in characters (table) * Added new data in corpse.md * Fixed guild_rank text * Improved instance difficulty list values * Improved worldstates.md --- docs/corpse.md | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'docs/corpse.md') diff --git a/docs/corpse.md b/docs/corpse.md index d905bf7..d842395 100644 --- a/docs/corpse.md +++ b/docs/corpse.md @@ -1,22 +1,22 @@ [Database Structure](Database-Structure) > [Character-Database](Character-Database) > [corpse](corpse) -Column | Type | Description ---- | --- | --- -CorpseGuid | int(10) unsigned | -Guid | int(10) unsigned | -PosX | float | -PosY | float | -PosZ | float | -Orientation | float | -MapId | smallint(5) unsigned | -PhaseMask | int(10) unsigned | -DisplayId | int(10) unsigned | -ItemCache | text | -Bytes1 | int(10) unsigned | -Bytes2 | int(10) unsigned | -GuildId | int(10) unsigned | -Flags | tinyint(3) unsigned | -DynFlags | tinyint(3) unsigned | -Time | int(10) unsigned | -CorpseType | tinyint(3) unsigned | -InstanceId | int(10) unsigned | +| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +|-------------|-------------|------------|-----|------|---------|--------|------------------------------------| +| corpseGuid | int(10) | unsigned | PRI | NO | 0 | Unique | Global Unique Identifier | +| guid | int(10) | unsigned | | NO | 0 | | Character Global Unique Identifier | +| posX | float | signed | | NO | 0 | | | +| posY | float | signed | | NO | 0 | | | +| posZ | float | signed | | NO | 0 | | | +| orientation | float | signed | | NO | 0 | | | +| mapId | smallint(5) | unsigned | | NO | 0 | | Map Identifier | +| phaseMask | smallint(5) | unsigned | | NO | 0 | | | +| displayId | int(10) | unsigned | | NO | 0 | | | +| itemCache | text | signed | | NO | | | | +| bytes1 | int(10) | unsigned | | NO | 0 | | | +| bytes2 | int(10) | unsigned | | NO | 0 | | | +| guildId | int(10) | unsigned | | NO | 0 | | | +| flags | tinyint(3) | unsigned | | NO | 0 | | | +| dynFlags | tinyint(3) | unsigned | | NO | 0 | | | +| time | int(10) | unsigned | | NO | 0 | | | +| corpseType | tinyint(3) | unsigned | | NO | 0 | | | +| instanceId | int(10) | unsigned | | NO | 0 | | | -- cgit