123456789101112131415161718192021222324252627282930313233343536373839 |
- CREATE TABLE IF NOT EXISTS `grandboss_data` (
- `boss_id` smallint(5) unsigned NOT NULL,
- `loc_x` mediumint(6) NOT NULL,
- `loc_y` mediumint(6) NOT NULL,
- `loc_z` mediumint(6) NOT NULL,
- `heading` mediumint(6) NOT NULL DEFAULT '0',
- `respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0',
- `currentHP` decimal(30,15) NOT NULL,
- `currentMP` decimal(30,15) NOT NULL,
- `status` tinyint(1) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`boss_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- INSERT IGNORE INTO `grandboss_data` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`currentHP`,`currentMP`) VALUES
- (29001, -21610, 181594, -5734, 0, 229898.48, 667.776), -- Queen Ant (40)
- (29006, 17726, 108915, -6480, 0, 622493.58388, 3793.536), -- Core (50)
- (29014, 55024, 17368, -5412, 10126, 622493.58388, 3793.536), -- Orfen (50)
- -- (29019, 185708, 114298, -8221, 32768, 17850000, 39960), -- Antharas (79)
- (29020, 116033, 17447, 10107, -25348, 4068372, 39960), -- Baium (75)
- -- (29022, 55312, 219168, -3223, 0, 858518.36, 399600), -- Zaken (60)
- -- (29025, 0, 0, 0, 0, 0, 0), -- Baium (Stone) (75)
- (29028, -105200, -253104, -15264, 0, 62041918, 2248572), -- Valakas (85)
- -- (29066, 185708, 114298, -8221,32768, 14518000, 3996000), -- Antharas Weak (79)
- -- (29067, 185708, 114298, -8221,32768, 16184000, 3996000), -- Antharas Normal (79)
- (29068, 185708, 114298, -8221,32768, 62802301, 1998000), -- Antharas Strong (85)
- (29118, 0, 0, 0, 0, 4109288, 1220547); -- Beleth (83)
- -- (29045, -87780, -155086, -9080, 16384, 1018821.42723286, 52001.06567747795), -- Frintezza (85)
- -- (29046, -87789, -153295, -9176, 16384, 1824900, 23310), -- Scarlet Van Halisha (85)
- -- (29047, -87789, -153295, -9176, 16384, 898044, 4519), -- Scarlet Van Halisha (85)
- -- (29099, 0, 0, 0, 0, 1703893, 111000), -- Baylor (83)
- -- (29150, 0, 0, 0, 0, 8727677, 204995), -- Ekimus (82)
- -- (29163, 0, 0, 0, 0, 8727677, 204995), -- Tiat (87)
- -- (29175, 0, 0, 0, 0, 8727677, 204995), -- Tiat (87)
- -- (29176, 0, 0, 0, 0, 0, 0), -- Zaken Day (60)
- -- (29177, 0, 0, 0, 0, 0, 0), -- Freya (Throne) (85)
- -- (29178, 0, 0, 0, 0, 0, 0), -- Freya (Spelling) (85)
- -- (29178, 0, 0, 0, 0, 0, 0), -- Freya (Stand) (85)
- -- (29178, 0, 0, 0, 0, 0, 0), -- Freya (Stand Hard) (85)
- -- (29179, 0, 0, 0, 0, 0, 0), -- Zaken Day (83)
|