From aaaeecc916cf567877fbf835fb9e805f5227e3f6 Mon Sep 17 00:00:00 2001 From: silinoron Date: Tue, 24 Aug 2010 15:04:34 -0700 Subject: Add support for vehicle scaling based on item level. Requires database data. Fixes issue #2754 --HG-- branch : trunk --- sql/base/world_database.sql | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'sql/base/world_database.sql') diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 5857baec290..7c9b38ecdb4 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -15801,6 +15801,31 @@ LOCK TABLES `vehicle_accessory` WRITE; /*!40000 ALTER TABLE `vehicle_accessory` DISABLE KEYS */; /*!40000 ALTER TABLE `vehicle_accessory` ENABLE KEYS */; UNLOCK TABLES; + +-- +-- Table structure for table `vehicle_scaling_info` +-- + +DROP TABLE IF EXISTS `vehicle_scaling_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `vehicle_scaling_info` ( + `entry` mediumint(8) unsigned NOT NULL default '0', + `baseItemLevel` float NOT NULL default '0', + `scalingFactor` float NOT NULL default '0', + PRIMARY KEY (`entry`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `vehicle_scaling_info` +-- + +LOCK TABLES `vehicle_scaling_info` WRITE; +/*!40000 ALTER TABLE `vehicle_scaling_info` DISABLE KEYS */; +/*!40000 ALTER TABLE `vehicle_scaling_info` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `version` -- -- cgit v1.2.3