Table Structure
This table contains the base values for creature health, mana, armor, attack power, ranged attack power, damage, and experience.
| Field | Type | Attributes | Null | Default | Extra | Comment |
|---|---|---|---|---|---|---|
| level | TINYINT | UNSIGNED | NO | |||
| class | TINYINT | UNSIGNED | NO | |||
| basehp0 | SMALLINT | UNSIGNED | NO | |||
| basehp1 | SMALLINT | UNSIGNED | NO | |||
| basehp2 | SMALLINT | UNSIGNED | NO | |||
| basemana | SMALLINT | UNSIGNED | NO | |||
| basearmor | SMALLINT | UNSIGNED | NO | |||
| attackpower | SMALLINT | UNSIGNED | NO | |||
| rangedattackpower | SMALLINT | UNSIGNED | NO | |||
| damage_base | FLOAT | NO | ||||
| damage_exp1 | FLOAT | NO | ||||
| damage_exp2 | FLOAT | NO | ||||
| Strength | INT | NO | 0 | |||
| Agility | INT | NO | 0 | |||
| Stamina | INT | NO | 0 | |||
| Intellect | INT | NO | 0 | |||
| Spirit | INT | NO | 0 | |||
| comment | text | YES | NULL |
Field Descriptions
Level of the creature.
Class of the creature. This is a reference to the unit_class field in the creature_template table.
Base health for the creature if creature_template.exp value is set to 0. This value is multiplied by creature_template.Health_mod聽 to determine the creature's final health.
Base health for the creature if creature_template.exp value is set to 1. This value is multiplied by creature_template.Health_mod聽 to determine the creature's final health.
Base health for the creature if creature_template.exp value is set to 2. This value is multiplied by creature_template.Health_mod聽 to determine the creature's final health.
Base mana for the creature. This value is multiplied by 聽creature_template.Mana_mod to determine the creature's final mana.
Base armor for the creature. This value is multiplied by creature_template.Armor_mod to determine the creature's final armor.
Base attack power for the creature.
Base ranged attack power for the creature.
Modifier used to calculate the damage output of a creature. This field is used if a creature's exp is set to 0. See DamageModifier for more information.
Modifier used to calculate the damage output of a creature. This field is used if a creature's exp is set to 1. See DamageModifier for more information.
Modifier used to calculate the damage output of a creature. This field is used if a creature's exp is set to 2. See DamageModifier for more information.
Base Strength for the creature at this level and class.
Base Agility for the creature at this level and class.
Base Stamina for the creature at this level and class.
Base Intellect for the creature at this level and class.
Base Spirit for the creature at this level and class.
A comment describing the purpose of the record (entry).