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/spelldifficulty_dbc.md | 115 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 106 insertions(+), 9 deletions(-) (limited to 'docs/spelldifficulty_dbc.md') diff --git a/docs/spelldifficulty_dbc.md b/docs/spelldifficulty_dbc.md index 825a080..789be33 100644 --- a/docs/spelldifficulty_dbc.md +++ b/docs/spelldifficulty_dbc.md @@ -1,9 +1,106 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [spelldifficulty_dbc](spelldifficulty_dbc) - -Column | Type | Description ---- | --- | --- -Id | int(11) unsigned | -Spellid0 | int(11) unsigned | -Spellid1 | int(11) unsigned | -Spellid2 | int(11) unsigned | -Spellid3 | int(11) unsigned | +# spelldifficulty\_dbc + +`Back-to:World` + +**The \`spelldifficulty\_dbc\` table** + +This table contains spell data regarding cpp scripts. The id is called in the script, and depending on what version of the dungeon/raid the characters are in, the proper spell ID will be casted by the creature. + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

id

int(11)

unsigned

PRI

NO

0

 

 

spellid0

int(11)

unsigned

 

NO

0

 

 

spellid1

int(11)

unsigned

 

NO

0

 

 

spellid2

int(11)

unsigned

 

NO

0

 

 

spellid3

int(11)

unsigned

 

NO

0

 

 

+ +**Description of the fields** + +### id + +id referenced in the cpp script for the creature AI. + +### spellid0 + +Spell ID to be used in normal dungeon (or normal 10men raid). + +### spellid1 + +Spell ID to be used in heroic dungeon (or normal 25men raid). + +### spellid2 + +Spell ID to be used in heroic 10men raid. + +### spellid3 + +Spell ID to be used in heroic 25men raid. -- cgit