Back to 'addons' Return to characters Go to 'arena_team_member'
This table holds the main ArenaTeam information. All created teams or all teams in the process of being created have a record in this table.
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
|---|---|---|---|---|---|---|---|
| arenaTeamId | int | unsigned | PRI | NO | 0 | ||
| name | varchar(24) | NO | |||||
| captainGuid | int | unsigned | NO | 0 | |||
| type | tinyint | unsigned | NO | 0 | |||
| rating | smallint | unsigned | NO | 0 | |||
| seasonGames | smallint | unsigned | NO | 0 | |||
| seasonWins | smallint | unsigned | NO | 0 | |||
| weekGames | smallint | unsigned | NO | 0 | |||
| weekWins | smallint | unsigned | NO | 0 | |||
| rank | int | unsigned | NO | 0 | |||
| backgroundColor | int | unsigned | NO | 0 | |||
| emblemStyle | tinyint | unsigned | NO | 0 | |||
| emblemColor | int | unsigned | NO | 0 | |||
| borderStyle | tinyint | unsigned | NO | 0 | |||
| borderColor | int | unsigned | NO | 0 |
The ID of the ArenaTeam. This number is unique to each team and is the main method to identify a team.
Name of the Arena team
The character guid of the ArenaTeam's creator.
Defines the ArenaType:
Rating of arena team.
Number of games played this season.
Number of games won this season.
Number of games played this week.
Number of games won this week.
Rank of teams in the competition by rating.
ARGB color value.
alpha = (field & 0xFF000000) >> 48
red = (field & 0xFF0000) >> 32
green = (field & 0xFF00) >> 16
blue = (field & 0xFF)
file index to
Interface/PvPFrame/Icons/PVP-Banner-Emblem-<emblemStyle>.blp
ARGB color value.
file index to
Interface/PvPFrame/PVP-Banner-<2|3|5>-Border-<borderStyle>.blp
ARGB color value.
Back to 'addons' Return to characters Go to 'arena_team_member'