-
Notifications
You must be signed in to change notification settings - Fork 47
Player_levelstats
Schmoozerd edited this page Apr 17, 2013
·
1 revision
Back to world database list of tables.
This table holds information on what stats are gained by characters when they level up. Each race-class combination has different level stats. All of the values in this table signify only the base stats of the race-class combination at a specific level.
Field | Type | Null | Key | Default | Extra |
race | tinyint(3) unsigned | NO | PRI | ||
class | tinyint(3) unsigned | NO | PRI | ||
level | tinyint(3) unsigned | NO | PRI | ||
str | tinyint(3) unsigned | NO | |||
agi | tinyint(3) unsigned | NO | |||
sta | tinyint(3) unsigned | NO | |||
inte | tinyint(3) unsigned | NO | |||
spi | tinyint(3) unsigned | NO |
The character race. This field along with class defines what stats to be applied on the character.
The character class. This field along with race defines what stats to be applied on the character.
The level at which the stats should be applied.
The base strength of the character.
The base agility of the character.
The base stamina of the character.
The base intellect of the character.
The base spirit of the character.