diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-03-11 21:55:00 +0300 |
commit | 2f6d4516113059d9edbe71b085540c9cda92fa03 (patch) | |
tree | 4b9a4d9d3ddbff7d478f3f7363f395fd44036ecc /sql-files/mob_db2.sql | |
parent | d8215077643025d10527cbab22d6949a59d3258c (diff) | |
download | hercules-2f6d4516113059d9edbe71b085540c9cda92fa03.tar.gz hercules-2f6d4516113059d9edbe71b085540c9cda92fa03.tar.bz2 hercules-2f6d4516113059d9edbe71b085540c9cda92fa03.tar.xz hercules-2f6d4516113059d9edbe71b085540c9cda92fa03.zip |
Remove conf dir.
Diffstat (limited to 'sql-files/mob_db2.sql')
-rw-r--r-- | sql-files/mob_db2.sql | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/sql-files/mob_db2.sql b/sql-files/mob_db2.sql deleted file mode 100644 index e602db599..000000000 --- a/sql-files/mob_db2.sql +++ /dev/null @@ -1,91 +0,0 @@ --- This file is part of Hercules. --- http://herc.ws - http://github.com/HerculesWS/Hercules --- --- Copyright (C) 2013-2019 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_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; - |