landsandboat/sql/abilities_charges.sql
teschnei 5ac9e899c9 SCRIPTS: fixed missing accuracy bonus to quick draw
SQL: fixed quick draw charges on the wrong recastId
2013-11-23 07:21:47 +00:00

32 lines
1.2 KiB
SQL

/*
MySQL Data Transfer
Source Host: localhost
Source Database: dspdb
Target Host: localhost
Target Database: dspdb
Date: 5/12/2013 12:29:07 AM
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for abilities_charges
-- ----------------------------
DROP TABLE IF EXISTS `abilities_charges`;
CREATE TABLE `abilities_charges` (
`recastId` smallint(5) unsigned NOT NULL,
`job` tinyint(2) unsigned NOT NULL,
`level` tinyint(2) unsigned NOT NULL,
`maxCharges` tinyint(1) unsigned NOT NULL DEFAULT '0',
`chargeTime` smallint(4) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`recastId`,`job`,`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AVG_ROW_LENGTH=56;
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `abilities_charges` VALUES ('231', '20', '10', '1', '240');
INSERT INTO `abilities_charges` VALUES ('231', '20', '30', '2', '120');
INSERT INTO `abilities_charges` VALUES ('231', '20', '50', '3', '80');
INSERT INTO `abilities_charges` VALUES ('231', '20', '70', '4', '60');
INSERT INTO `abilities_charges` VALUES ('231', '20', '90', '5', '48');
INSERT INTO `abilities_charges` VALUES ('195', '17', '40', '2', '60');