hercules/sql-files/mob_skill_db2.sql
hwsapibot 2af0800d43
Update mob_db SQL data
Signed-off-by: hwsapibot <dev@herc.ws>
2024-02-04 01:32:11 +00:00

52 lines
1.7 KiB
SQL

-- This file is part of Hercules.
-- http://herc.ws - http://github.com/HerculesWS/Hercules
--
-- Copyright (C) 2013-2024 Hercules Dev Team
--
-- Hercules is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
-- NOTE: This file was auto-generated and should never be manually edited,
-- as it will get overwritten. If you need to modify this file,
-- please consider modifying the corresponding .conf file inside
-- the db folder, and then re-run the db2sql plugin.
-- GENERATED FILE DO NOT EDIT --
--
-- Table structure for table `mob_skill_db2`
--
DROP TABLE IF EXISTS `mob_skill_db2`;
CREATE TABLE `mob_skill_db2` (
`MOB_ID` smallint NOT NULL,
`INFO` text NOT NULL,
`STATE` text NOT NULL,
`SKILL_ID` smallint NOT NULL,
`SKILL_LV` tinyint NOT NULL,
`RATE` smallint NOT NULL,
`CASTTIME` mediumint NOT NULL,
`DELAY` int NOT NULL,
`CANCELABLE` text NOT NULL,
`TARGET` text NOT NULL,
`CONDITION` text NOT NULL,
`CONDITION_VALUE` text,
`VAL1` int DEFAULT NULL,
`VAL2` int DEFAULT NULL,
`VAL3` int DEFAULT NULL,
`VAL4` int DEFAULT NULL,
`VAL5` int DEFAULT NULL,
`EMOTION` TEXT,
`CHAT` TEXT
) ENGINE=MyISAM;