summaryrefslogtreecommitdiff
path: root/docs/character_aura.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/character_aura.md')
-rw-r--r--docs/character_aura.md78
1 files changed, 43 insertions, 35 deletions
diff --git a/docs/character_aura.md b/docs/character_aura.md
index 9b457a8..31c3e4f 100644
--- a/docs/character_aura.md
+++ b/docs/character_aura.md
@@ -8,35 +8,35 @@ Contains aura information that is loaded when a character is loaded, so the aura
**Structure**
-| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
-|-----------------------|--------------|------------|-----|------|---------|-------|-------------------------------|
-| [guid][1] | INT | UNSIGNED | PRI | NO | | | Global Unique Identifier |
-| [caster_guid][2] | BIGINT | UNSIGNED | PRI | NO | | | Full Global Unique Identifier |
-| [item_guid][3] | BIGINT | UNSIGNED | PRI | NO | | | |
-| [spell][4] | MEDIUMINT | UNSIGNED | PRI | NO | | | |
-| [effect_mask][5] | TINYINT | UNSIGNED | PRI | NO | | | |
-| [recalculate_mask][6] | TINYINT | UNSIGNED | | NO | | | |
-| [stackcount][7] | TINYINT | UNSIGNED | | NO | | | |
-| [amount0][8] | INT | SIGNED | | NO | | | |
-| [amount1][9] | INT | SIGNED | | NO | | | |
-| [amount2][10] | INT | SIGNED | | NO | | | |
-| [base_amount0][11] | INT | SIGNED | | NO | | | |
-| [base_amount1][12] | INT | SIGNED | | NO | | | |
-| [base_amount2][13] | INT | SIGNED | | NO | | | |
-| [maxduration][14] | INT | SIGNED | | NO | | | |
-| [remaintime][15] | INT | SIGNED | | NO | | | |
-| [remaincharges][16] | TINYINT | UNSIGNED | | NO | | | |
+| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
+|-----------------------|-----------|------------|-----|------|---------|-------|-------------------------------|
+| [guid][1] | INT | UNSIGNED | PRI | NO | 0 | | Global Unique Identifier |
+| [casterGuid][2] | BIGINT | UNSIGNED | PRI | NO | 0 | | Full Global Unique Identifier |
+| [itemGuid][3] | BIGINT | UNSIGNED | PRI | NO | 0 | | |
+| [spell][4] | MEDIUMINT | UNSIGNED | PRI | NO | 0 | | |
+| [effectMask][5] | TINYINT | UNSIGNED | PRI | NO | 0 | | |
+| [recalculateMask][6] | TINYINT | UNSIGNED | | NO | 0 | | |
+| [stackCount][7] | TINYINT | UNSIGNED | | NO | 1 | | |
+| [amount0][8] | INT | SIGNED | | NO | 0 | | |
+| [amount1][9] | INT | SIGNED | | NO | 0 | | |
+| [amount2][10] | INT | SIGNED | | NO | 0 | | |
+| [base_amount0][11] | INT | SIGNED | | NO | 0 | | |
+| [base_amount1][12] | INT | SIGNED | | NO | 0 | | |
+| [base_amount2][13] | INT | SIGNED | | NO | 0 | | |
+| [maxDuration][14] | INT | SIGNED | | NO | 0 | | |
+| [remainTime][15] | INT | SIGNED | | NO | 0 | | |
+| [remainCharges][16] | TINYINT | UNSIGNED | | NO | 0 | | |
[1]: #guid
-[2]: #caster_guid
-[3]: #item_guid
+[2]: #casterguid
+[3]: #itemguid
[4]: #spell
-[5]: #effect_mask
-[6]: #recalculate_mask
+[5]: #effectmask
+[6]: #recalculatemask
[7]: #stackcount
-[8]: #amount0
-[9]: #amount1
-[10]: #amount2
+[8]: #amount
+[9]: #amount
+[10]: #amount
[11]: #base_amount0
[12]: #base_amount1
[13]: #base_amount2
@@ -48,25 +48,25 @@ Contains aura information that is loaded when a character is loaded, so the aura
### guid
-The GUID of the target affected by the aura. See characters.guid
+The GUID of the target affected by the aura. See [characters.guid](characters#guid).
-### caster\_guid
+### casterGuid
-The GUID of the player who casted the aura. See characters.guid
+The GUID of the player who casted the aura. See [characters.guid](characters#guid).
-### item\_guid
+### itemGuid
-The GUID of the item which casted the aura. See item\_instance.guid
+The GUID of the item which casted the aura. See [item\_instance.guid](item\_instance#guid).
### spell
-The spell from which the aura was applied. See Spell.dbc column 1
+The spell from which the aura was applied. See [Spell.dbc](spell) column 1.
-### effect\_mask
+### effectMask
The effect index of the spell from which the aura came from. A spell has up to three effects, with the index being 0, 1, or 2.
-### recalculate\_mask
+### recalculateMask
`field-no-description|5`
@@ -78,9 +78,17 @@ Determines how many stacks of the spell the character has.
The modifier value associated with the aura.
-### base\_amount
+### base\_amount0
-`field-no-description|8`
+`field-no-description|11`
+
+### base\_amount1
+
+`field-no-description|12`
+
+### base\_amount2
+
+`field-no-description|13`
### maxduration