Core/Entities: correct creature damage, offhand damage should work too

* todo: some creatures need dmg_multiplier update in creature_template
This commit is contained in:
joschiwald
2014-01-04 18:22:06 +01:00
parent ff61e4d79d
commit cd76d32907
22 changed files with 337 additions and 310 deletions

View File

@@ -0,0 +1,10 @@
ALTER TABLE `creature_classlevelstats`
CHANGE `level` `level` TINYINT(3) UNSIGNED NOT NULL,
CHANGE `class` `class` TINYINT(3) UNSIGNED NOT NULL,
CHANGE `basehp0` `basehp0` SMALLINT(5) UNSIGNED DEFAULT 1 NOT NULL,
CHANGE `basehp1` `basehp1` SMALLINT(5) UNSIGNED DEFAULT 1 NOT NULL,
CHANGE `basehp2` `basehp2` SMALLINT(5) UNSIGNED DEFAULT 1 NOT NULL,
CHANGE `basemana` `basemana` SMALLINT(5) UNSIGNED DEFAULT 0 NOT NULL,
CHANGE `basearmor` `basearmor` SMALLINT(5) UNSIGNED DEFAULT 1 NOT NULL,
CHANGE `attackpower` `attackpower` SMALLINT(5) UNSIGNED DEFAULT 0 NOT NULL,
CHANGE `rangedattackpower` `rangedattackpower` SMALLINT(5) UNSIGNED DEFAULT 0 NOT NULL;