From 58854d415c5ab6b19fcd530edd7726f35cc143f4 Mon Sep 17 00:00:00 2001 From: Walter Pagani Date: Tue, 12 Jan 2021 07:02:37 -0300 Subject: refact(tables): converting from HTML to Markdown part #7 (#337) * Holidays.md * item_loot_items.md * game_weather.md * creature_classlevelstats.md * game_event_condition.md * game_event.md * item_instance.md * pet_aura.md * character_queststatus.md * gossip_menu_option_locale.md * arena_team.md * access_requirement.md * character_aura.md * guild_member.md * character_equipmentsets.md * character_pet.md * Spell.md * SkillLine.md * creature_addon.md * gm_ticket.md * character_stats.md * spell_area.md * gossip_menu_option.md * creature_text.md * quest_template_addon.md * Achievement_Criteria.md * fix powerType Spell.md * loot_template.md * Emotes.md * quest_template.md * npc_text.md * gameobject_template.md * spell_dbc.md * worldstates.md * FactionTemplate.md * Achievement.md * AreaTable.md * DBC-AreaTrigger.md --- docs/creature_classlevelstats.md | 146 ++++++++------------------------------- 1 file changed, 29 insertions(+), 117 deletions(-) (limited to 'docs/creature_classlevelstats.md') diff --git a/docs/creature_classlevelstats.md b/docs/creature_classlevelstats.md index b4305d3..683adad 100644 --- a/docs/creature_classlevelstats.md +++ b/docs/creature_classlevelstats.md @@ -1,124 +1,38 @@ # creature\_classlevelstats -`` - **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

level

tinyint(3)

unsigned

NO

NULL

class

tinyint(3)

unsigned

NO

NULL

basehp0

smallint(5)

unsigned

NO

1

basehp1

smallint(5)

unsigned

NO

1

basehp2

smallint(5)

unsigned

NO

1

basemana

smallint(5)

unsigned

NO

0

basearmor

smallint(5)

unsigned

NO

1

attackpowersmallint(5)unsignedNO0
rangedattackpowersmallint(5)unsignedNO0
damage_basefloat
-
NO0
damage_exp1float
-
NO0
damage_exp2float
-
NO0
commenttext
-
YESNULL
+| Field | Type | Attributes | Null | Default | Extra | Comment | +|------------------------|-------------|------------|------|---------|-------|---------| +| [level][1] | tinyint(3) | unsigned | NO | | | | +| [class][2] | tinyint(3) | unsigned | NO | | | | +| [basehp0][3] | smallint(5) | unsigned | NO | | | | +| [basehp1][4] | smallint(5) | unsigned | NO | | | | +| [basehp2][5] | smallint(5) | unsigned | NO | | | | +| [basemana][6] | smallint(5) | unsigned | NO | | | | +| [basearmor][7] | smallint(5) | unsigned | NO | | | | +| [attackpower][8] | smallint(5) | unsigned | NO | | | | +| [rangedattackpower][9] | smallint(5) | unsigned | NO | | | | +| [damage_base][10] | float | | NO | | | | +| [damage_exp1][11] | float | | NO | | | | +| [damage_exp2][12] | float | | NO | | | | +| [comment][13] | text | | YES | NULL | | | + +[1]: #level +[2]: #class +[3]: #basehp0 +[4]: #basehp1 +[5]: #basehp2 +[6]: #basemana +[7]: #basearmor +[8]: #attackpower +[9]: #rangedattackpower +[10]: #damage_base +[11]: #damage_exp1 +[12]: #damage_exp2 +[13]: #comment **Field Descriptions** @@ -173,5 +87,3 @@ Max damage This will increase/decrease by creature\_template.damagemodifier. ### comment A comment describing the purpose of the record (entry). - - -- cgit