Skip to content

Commit 199713b

Browse files
TheSCREWEDSoftwareheyitsbenchKitzunu
authored
Creation of player_shapeshift_model and player_totem_model (#1070)
* Created: player_shapeshift_model.md * Created: player_totem_model.md * Update player_shapeshift_model.md * Update docs/player_shapeshift_model.md Co-authored-by: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> * Update docs/player_shapeshift_model.md Co-authored-by: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> * Update docs/player_shapeshift_model.md Co-authored-by: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> * Update docs/player_shapeshift_model.md Co-authored-by: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> * Update player_shapeshift_model.md * Update player_shapeshift_model.md * Update player_shapeshift_model.md * Update player_totem_model.md * Update docs/player_totem_model.md Co-authored-by: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> * Removed extra newline * Added shapeshift_model and totem_model to world * Update docs/player_shapeshift_model.md Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com> * Updated --------- Co-authored-by: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
1 parent b574b8b commit 199713b

File tree

3 files changed

+100
-0
lines changed

3 files changed

+100
-0
lines changed

docs/database-world.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@
144144
- [player_factionchange_titles](player_factionchange_titles)
145145
- [player_loot_template](loot_template)
146146
- [player_race_stats](player_race_stats)
147+
- [player_shapeshift_model](player_shapeshift_model)
148+
- [player_totem_model](player_totem_model)
147149
- [player_xp_for_level](player_xp_for_level)
148150
- [playercreateinfo](playercreateinfo)
149151
- [playercreateinfo_action](playercreateinfo_action)

docs/player_shapeshift_model.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# player_shapeshift_model
2+
3+
[<-Back-to:World](database-world)
4+
5+
**The \`player_shapeshift_model\` table**
6+
7+
This table holds the information on what values are used for the druid shapeshift models, based on the shapeshift, race, character customization, and the gender of the player character.
8+
9+
**Table Structure**
10+
11+
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
12+
| ----------------------------------- | ------- | ---------- | --- | ---- | ------- | ----- | ------- |
13+
| [ShapeshiftID](#shapeshiftid) | TINYINT | UNSIGNED | PRI | NO | | | |
14+
| [RaceID](#raceid) | TINYINT | UNSIGNED | PRI | NO | | | |
15+
| [CustomizationID](#customizationid) | TINYINT | UNSIGNED | PRI | NO | | | |
16+
| [GenderID](#genderid) | TINYINT | UNSIGNED | PRI | NO | | | |
17+
| [ModelID](#modelid) | INT | UNSIGNED | | NO | | | |
18+
19+
**Description of the fields**
20+
21+
### ShapeshiftID
22+
23+
| FormID | Description |
24+
| ------ | ---------------- |
25+
| 1 | Cat Form |
26+
| 5 | Bear Form |
27+
| 8 | Dire Bear Form |
28+
| 27 | Epic Flight Form |
29+
| 29 | Flight Form |
30+
31+
### RaceID
32+
33+
| RaceID | Description |
34+
| ------ | ----------- |
35+
| 4 | Night Elf |
36+
| 6 | Tauren |
37+
38+
For `RaceID` you can refer to the [chrraces](chrraces) "ID" column.
39+
40+
### CustomizationID
41+
42+
If you're an Alliance character (only Night Elves with stock races), the customization ID is based off of [haircolor](characters#haircolor) of your character.
43+
44+
If you're a Horde character (only Tauren with stock races), the customization ID is based off of [skin colour](characters#skin) of your character.
45+
46+
### GenderID
47+
48+
| [GenderID](characters#gender) | Description |
49+
| ----------------------------- | ----------- |
50+
| 0 | Male |
51+
| 1 | Female |
52+
| 2 | Any gender |
53+
54+
### ModelID
55+
56+
Refer to [creature_model_info](#creature_model_info#displayid)

docs/player_totem_model.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# player_totem_model
2+
3+
[<-Back-to:World](database-world)
4+
5+
**The \`player_totem_model\` table**
6+
7+
This table holds the information on what values are used for the shaman totem models, based on the totem and race of the player character.
8+
9+
**Table Structure**
10+
11+
| Field | Type | Attributes | Key | Null | Default | Extra | Comment |
12+
| ------------------- | ------- | ---------- | --- | ---- | ------- | ----- | ------- |
13+
| [TotemID](#totemid) | TINYINT | UNSIGNED | PRI | NO | | | |
14+
| [RaceID](#raceid) | TINYINT | UNSIGNED | PRI | NO | | | |
15+
| [ModelID](#modelid) | INT | UNSIGNED | | NO | | | |
16+
17+
**Description of the fields**
18+
19+
### TotemID
20+
21+
| TotemID | Description |
22+
| ------- | ----------- |
23+
| 1 | Fire Totem |
24+
| 2 | Earth Totem |
25+
| 3 | Water Totem |
26+
| 4 | Air Totem |
27+
28+
### RaceID
29+
30+
| RaceID | Description |
31+
| ------ | :---------- |
32+
| 2 | Orc |
33+
| 3 | Dwarf |
34+
| 6 | Tauren |
35+
| 8 | Troll |
36+
| 11 | Draenei |
37+
38+
For `RaceID` you can refer to the [chrraces](chrraces) "ID" column.
39+
40+
### ModelID
41+
42+
Refer to [creature_model_info](#creature_model_info#displayid)

0 commit comments

Comments
 (0)