landsandboat/sql/automaton_abilities.sql
2021-07-14 13:11:50 -04:00

69 lines
3.5 KiB
SQL

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `automaton_abilities`
--
DROP TABLE IF EXISTS `automaton_abilities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `automaton_abilities` (
`abilityid` smallint(4) unsigned NOT NULL,
`abilityname` varchar(40) CHARACTER SET latin1 NOT NULL,
`reqframe` smallint(3) unsigned NOT NULL DEFAULT '0',
`skilllevel` smallint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`abilityid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AVG_ROW_LENGTH=14;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `automaton_spells`
--
LOCK TABLES `automaton_abilities` WRITE;
/*!40000 ALTER TABLE `automaton_abilities` DISABLE KEYS */;
INSERT INTO `automaton_abilities` VALUES (1940, "chimera_ripper", 21, 0);
INSERT INTO `automaton_abilities` VALUES (1941, "string_clipper", 21, 0);
INSERT INTO `automaton_abilities` VALUES (1942, "arcuballista", 22, 0);
INSERT INTO `automaton_abilities` VALUES (1943, "slapstick", 23, 0);
INSERT INTO `automaton_abilities` VALUES (1944, "shield_bash", 21, 0);
INSERT INTO `automaton_abilities` VALUES (1945, "provoke", 0, 0);
INSERT INTO `automaton_abilities` VALUES (1946, "shock_absorber", 0, 0);
INSERT INTO `automaton_abilities` VALUES (1947, "flashbulb", 0, 0);
INSERT INTO `automaton_abilities` VALUES (1948, "mana_converter", 0, 0);
INSERT INTO `automaton_abilities` VALUES (1949, "ranged_attack", 22, 0);
INSERT INTO `automaton_abilities` VALUES (2021, "eraser", 0, 0);
INSERT INTO `automaton_abilities` VALUES (2031, "reactive_shield", 0, 0);
INSERT INTO `automaton_abilities` VALUES (2065, "cannibal_blade", 21, 150);
INSERT INTO `automaton_abilities` VALUES (2066, "daze", 22, 150);
INSERT INTO `automaton_abilities` VALUES (2067, "knockout", 23, 145);
INSERT INTO `automaton_abilities` VALUES (2068, "economizer", 0, 0);
INSERT INTO `automaton_abilities` VALUES (2132, "replicator", 0, 0);
INSERT INTO `automaton_abilities` VALUES (2299, "bone_crusher", 21, 245);
INSERT INTO `automaton_abilities` VALUES (2300, "armor_piercer", 22, 245);
INSERT INTO `automaton_abilities` VALUES (2301, "magic_mortar", 23, 225);
INSERT INTO `automaton_abilities` VALUES (2743, "string_shredder", 21, 324);
INSERT INTO `automaton_abilities` VALUES (2744, "armor_shatterer", 22, 324);
INSERT INTO `automaton_abilities` VALUES (2745, "heat_capacitor", 0, 0);
INSERT INTO `automaton_abilities` VALUES (2747, "disruptor", 0, 0);
/*!40000 ALTER TABLE `automaton_abilities` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;