TDB 335.19071 - 2019/07/15

This commit is contained in:
TDB Release
2019-07-15 05:59:57 +00:00
parent 374597c8e9
commit f46644c925
136 changed files with 76 additions and 40 deletions
+33 -15
View File
@@ -623,20 +623,6 @@ CREATE TABLE `creature_template` (
`lootid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`pickpocketloot` mediumint(8) unsigned NOT NULL DEFAULT '0',
`skinloot` mediumint(8) unsigned NOT NULL DEFAULT '0',
`resistance1` smallint(6) NOT NULL DEFAULT '0',
`resistance2` smallint(6) NOT NULL DEFAULT '0',
`resistance3` smallint(6) NOT NULL DEFAULT '0',
`resistance4` smallint(6) NOT NULL DEFAULT '0',
`resistance5` smallint(6) NOT NULL DEFAULT '0',
`resistance6` smallint(6) NOT NULL DEFAULT '0',
`spell1` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell2` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell3` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell4` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell5` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell6` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell7` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell8` mediumint(8) unsigned NOT NULL DEFAULT '0',
`PetSpellDataId` mediumint(8) unsigned NOT NULL DEFAULT '0',
`VehicleId` mediumint(8) unsigned NOT NULL DEFAULT '0',
`mingold` mediumint(8) unsigned NOT NULL DEFAULT '0',
@@ -718,6 +704,38 @@ CREATE TABLE `creature_template_movement` (
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `creature_template_resistance`
--
DROP TABLE IF EXISTS `creature_template_resistance`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `creature_template_resistance` (
`CreatureID` mediumint(8) unsigned NOT NULL,
`School` tinyint(6) unsigned NOT NULL,
`Resistance` smallint(6) DEFAULT NULL,
`VerifiedBuild` smallint(5) DEFAULT '0',
PRIMARY KEY (`CreatureID`,`School`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `creature_template_spell`
--
DROP TABLE IF EXISTS `creature_template_spell`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `creature_template_spell` (
`CreatureID` mediumint(8) unsigned NOT NULL,
`Index` tinyint(6) unsigned NOT NULL DEFAULT '0',
`Spell` mediumint(8) unsigned DEFAULT NULL,
`VerifiedBuild` smallint(5) DEFAULT '0',
PRIMARY KEY (`CreatureID`,`Index`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `creature_text`
--
@@ -3826,4 +3844,4 @@ CREATE TABLE `waypoints` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2019-06-15 7:33:48
-- Dump completed on 2019-07-15 5:57:44