diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-28 20:40:36 +0300 |
commit | 1817623d516aa66384e3a79b78b871cc5204daa5 (patch) | |
tree | 3f0d332f56550b0e63a0f9e35ee58624c5ba5858 /sql-files/mob_db2.sql | |
parent | 2f4e758b6b40f31831d33f78bd03f459e0e06918 (diff) | |
download | hercules-1817623d516aa66384e3a79b78b871cc5204daa5.tar.gz hercules-1817623d516aa66384e3a79b78b871cc5204daa5.tar.bz2 hercules-1817623d516aa66384e3a79b78b871cc5204daa5.tar.xz hercules-1817623d516aa66384e3a79b78b871cc5204daa5.zip |
Remove conf dir.
Diffstat (limited to 'sql-files/mob_db2.sql')
-rw-r--r-- | sql-files/mob_db2.sql | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/sql-files/mob_db2.sql b/sql-files/mob_db2.sql deleted file mode 100644 index 5ed77d174..000000000 --- a/sql-files/mob_db2.sql +++ /dev/null @@ -1,89 +0,0 @@ --- This file is part of Hercules. --- http://herc.ws - http://github.com/HerculesWS/Hercules --- --- Copyright (C) 2013-2016 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. - --- --- Table structure for table `mob_db2` --- - -DROP TABLE IF EXISTS `mob_db2`; -CREATE TABLE `mob_db2` ( - `ID` MEDIUMINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Sprite` TEXT NOT NULL, - `kName` TEXT NOT NULL, - `iName` TEXT NOT NULL, - `LV` TINYINT(6) UNSIGNED NOT NULL DEFAULT '0', - `HP` INT(9) UNSIGNED NOT NULL DEFAULT '0', - `SP` MEDIUMINT(9) UNSIGNED NOT NULL DEFAULT '0', - `EXP` MEDIUMINT(9) UNSIGNED NOT NULL DEFAULT '0', - `JEXP` MEDIUMINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Range1` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `ATK1` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `ATK2` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `DEF` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `MDEF` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `STR` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `AGI` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `VIT` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `INT` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `DEX` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `LUK` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `Range2` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `Range3` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `Scale` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `Race` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `Element` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0', - `Mode` INT(11) UNSIGNED NOT NULL DEFAULT '0', - `Speed` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `aDelay` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `aMotion` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `dMotion` SMALLINT(6) UNSIGNED NOT NULL DEFAULT '0', - `MEXP` MEDIUMINT(9) UNSIGNED NOT NULL DEFAULT '0', - `MVP1id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `MVP1per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `MVP2id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `MVP2per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `MVP3id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `MVP3per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop1id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop1per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop2id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop2per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop3id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop3per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop4id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop4per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop5id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop5per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop6id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop6per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop7id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop7per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop8id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop8per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop9id` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `Drop9per` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `DropCardid` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - `DropCardper` SMALLINT(9) UNSIGNED NOT NULL DEFAULT '0', - PRIMARY KEY (`ID`) -) ENGINE=MyISAM; - |