Local snapshot for Docker build (includes mod-ale)
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
-- MySQL dump 10.13 Distrib 8.4.3, for Win64 (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: acore_characters
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 8.4.3
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!50503 SET NAMES utf8mb4 */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!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 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_stats`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `character_stats`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `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;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `character_stats`
|
||||
--
|
||||
|
||||
LOCK TABLES `character_stats` WRITE;
|
||||
/*!40000 ALTER TABLE `character_stats` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_stats` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2026-03-15 20:39:45
|
||||
Reference in New Issue
Block a user