diff options
| author | Shauren <shauren.trinity@gmail.com> | 2015-06-23 00:05:51 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2015-06-23 00:05:51 +0200 |
| commit | 73384e56d48cd0495c4926f163e435d75660624f (patch) | |
| tree | 0bf711497a4012c1a10d52c9b93723e5ad64d0e0 /sql | |
| parent | 812fa65c613ecaa603dafc708df0088f3b50a90e (diff) | |
Core/Garrisons: Implemented spawning "Finalize Garrison Plot" gameobjects when building under construction is ready
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2015_06_23_00_world.sql | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sql/updates/world/2015_06_23_00_world.sql b/sql/updates/world/2015_06_23_00_world.sql new file mode 100644 index 00000000000..45e0b362ef1 --- /dev/null +++ b/sql/updates/world/2015_06_23_00_world.sql @@ -0,0 +1,38 @@ +-- +-- Table structure for table `garrison_plot_finalize_info` +-- + +DROP TABLE IF EXISTS `garrison_plot_finalize_info`; +CREATE TABLE `garrison_plot_finalize_info` ( + `garrPlotInstanceId` int(10) unsigned NOT NULL, + `hordeGameObjectId` int(10) unsigned NOT NULL DEFAULT '0', + `hordeX` float NOT NULL DEFAULT '0', + `hordeY` float NOT NULL DEFAULT '0', + `hordeZ` float NOT NULL DEFAULT '0', + `hordeO` float NOT NULL DEFAULT '0', + `hordeAnimKitId` smallint(5) unsigned NOT NULL DEFAULT '0', + `allianceGameObjectId` int(10) unsigned NOT NULL DEFAULT '0', + `allianceX` float NOT NULL DEFAULT '0', + `allianceY` float NOT NULL DEFAULT '0', + `allianceZ` float NOT NULL DEFAULT '0', + `allianceO` float NOT NULL DEFAULT '0', + `allianceAnimKitId` smallint(5) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`garrPlotInstanceId`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Dumping data for table `garrison_plot_finalize_info` +-- + +INSERT INTO `garrison_plot_finalize_info` (`garrPlotInstanceId`, `hordeGameObjectId`, `hordeX`, `hordeY`, `hordeZ`, `hordeO`, `hordeAnimKitId`, `allianceGameObjectId`, `allianceX`, `allianceY`, `allianceZ`, `allianceO`, `allianceAnimKitId`) VALUES +(18,233248,5642.37,4514.43,119.27,1.88088,1696,0,0,0,0,0,0), +(19,231964,5652.18,4539.69,119.27,3.74629,1696,0,0,0,0,0,0), +(20,236186,5623.58,4516.67,119.27,0.97567,1696,0,0,0,0,0,0), +(22,233249,5547.58,4522.44,131.393,0.0108777,1696,0,0,0,0,0,0), +(23,231217,5589.08,4480.11,130.349,1.05262,1696,0,0,0,0,0,0), +(24,236187,5643.26,4463.4,130.525,1.9379,1696,0,0,0,0,0,0), +(25,236188,5679.95,4486.13,131.107,2.4223,1696,0,0,0,0,0,0), +(59,236176,5475.8,4447.15,144.519,0.955649,1696,0,0,0,0,0,0), +(63,236177,5424.65,4567.79,137.431,0.112897,1696,0,0,0,0,0,0), +(67,236185,5476.71,4617.02,134.45,5.02338,1696,0,0,0,0,0,0), +(81,236175,5621.77,4652.88,142.448,4.39222,1696,0,0,0,0,0,0); |
