* move archived files into old dir * auth * characters * world * mistake * revert some stuff * Squash time! * newline
62 lines
3 KiB
SQL
62 lines
3 KiB
SQL
-- --------------------------------------------------------
|
|
-- Host: 127.0.0.1
|
|
-- Server version: 8.1.0 - MySQL Community Server - GPL
|
|
-- Server OS: Win64
|
|
-- HeidiSQL Version: 12.3.0.6589
|
|
-- --------------------------------------------------------
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!50503 SET NAMES utf8mb4 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
-- Dumping structure for table acore_characters.character_stats
|
|
DROP TABLE IF EXISTS `character_stats`;
|
|
CREATE TABLE IF NOT EXISTS `character_stats` (
|
|
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
|
|
`maxhealth` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower1` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower2` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower3` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower4` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower5` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower6` int unsigned NOT NULL DEFAULT '0',
|
|
`maxpower7` int unsigned NOT NULL DEFAULT '0',
|
|
`strength` int unsigned NOT NULL DEFAULT '0',
|
|
`agility` int unsigned NOT NULL DEFAULT '0',
|
|
`stamina` int unsigned NOT NULL DEFAULT '0',
|
|
`intellect` int unsigned NOT NULL DEFAULT '0',
|
|
`spirit` int unsigned NOT NULL DEFAULT '0',
|
|
`armor` int unsigned NOT NULL DEFAULT '0',
|
|
`resHoly` int unsigned NOT NULL DEFAULT '0',
|
|
`resFire` int unsigned NOT NULL DEFAULT '0',
|
|
`resNature` int unsigned NOT NULL DEFAULT '0',
|
|
`resFrost` int unsigned NOT NULL DEFAULT '0',
|
|
`resShadow` int unsigned NOT NULL DEFAULT '0',
|
|
`resArcane` int unsigned NOT NULL DEFAULT '0',
|
|
`blockPct` float NOT NULL DEFAULT '0',
|
|
`dodgePct` float NOT NULL DEFAULT '0',
|
|
`parryPct` float NOT NULL DEFAULT '0',
|
|
`critPct` float NOT NULL DEFAULT '0',
|
|
`rangedCritPct` float NOT NULL DEFAULT '0',
|
|
`spellCritPct` float NOT NULL DEFAULT '0',
|
|
`attackPower` int unsigned NOT NULL DEFAULT '0',
|
|
`rangedAttackPower` int unsigned NOT NULL DEFAULT '0',
|
|
`spellPower` int unsigned NOT NULL DEFAULT '0',
|
|
`resilience` int unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`guid`),
|
|
CONSTRAINT `character_stats_chk_1` CHECK (((`blockPct` >= 0) and (`dodgePct` >= 0) and (`parryPct` >= 0) and (`critPct` >= 0) and (`rangedCritPct` >= 0) and (`spellCritPct` >= 0)))
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
-- Dumping data for table acore_characters.character_stats: ~0 rows (approximately)
|
|
DELETE FROM `character_stats`;
|
|
|
|
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
|
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
|