From b698f1ae91c570ad532ed935aeb47f69bd5c487c Mon Sep 17 00:00:00 2001 From: Walter Pagani Date: Fri, 8 Jan 2021 15:23:34 -0300 Subject: docs: Converting from HTML to Markdown part #6 (#335) --- docs/instance.md | 109 +++++++++++-------------------------------------------- 1 file changed, 21 insertions(+), 88 deletions(-) (limited to 'docs/instance.md') diff --git a/docs/instance.md b/docs/instance.md index 853fd6b..ae14845 100644 --- a/docs/instance.md +++ b/docs/instance.md @@ -8,90 +8,21 @@ This table holds static information on all current instances that have not yet b **Structure** - ---------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field

Type

Attributes

Key

Null

Default

Extra

Comment

id

int(10)

unsigned

PRI

NO

0

 

 

map

smallint(5)

unsigned

 

NO

0

 

 

resettime

int(10)

unsigned

 

NO

0

 

 

difficulty

tinyint(3)

unsigned

 

NO

0

 

 

completedEncounters

int(10)

unsigned

 

NO

0

 

 

data

tinytext

signed

 

NO

 

 

 

+| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +|--------------------------|-------------|------------|-----|------|---------|-------|---------| +| [id][1] | int(10) | unsigned | PRI | NO | 0 | | | +| [map][2] | smallint(5) | unsigned | | NO | 0 | | | +| [resettime][3] | int(10) | unsigned | | NO | 0 | | | +| [difficulty][4] | tinyint(3) | unsigned | | NO | 0 | | | +| [completedEncounters][5] | int(10) | unsigned | | NO | 0 | | | +| [data][6] | tinytext | signed | | NO | | | | + +[1]: #id +[2]: #map +[3]: #resettime +[4]: #difficulty +[5]: #completedencounters +[6]: #data **Description of the fields** @@ -112,10 +43,12 @@ The resettime of raid and heroic instances for every specific group is stored in The difficulty of the current instance. -- 0 = 10-man Normal -- 1 = 25-man Normal -- 2 = 10-man Heroic -- 3 = 25-man Heroic. +| Value | Description | +|-------|---------------| +| 0 | 10-man Normal | +| 1 | 25-man Normal | +| 2 | 10-man Heroic | +| 3 | 25-man Heroic | ### completedEncounters -- cgit