summaryrefslogblamecommitdiff
path: root/sql-files/item_db2.sql
blob: 88c1b329b8342dee21126eab07a8d2c8353648fc (plain) (tree)
1
2
3
4
5
6





                                      

























                                                       
                
 
#
# Table structure for table `item_db2`
#

DROP TABLE IF EXISTS `item_db2`;
CREATE TABLE `item_db2` (
   `id` smallint(5) unsigned NOT NULL DEFAULT '0',
   `name_english` varchar(50) NOT NULL DEFAULT '',
   `name_japanese` varchar(50) NOT NULL DEFAULT '',
   `type` tinyint(2) unsigned NOT NULL DEFAULT '0',
   `price_buy` mediumint(10) DEFAULT NULL,
   `price_sell` mediumint(10) DEFAULT NULL,
   `weight` smallint(5) unsigned DEFAULT NULL,
   `atk` smallint(5) unsigned DEFAULT NULL,
   `matk` smallint(5) unsigned DEFAULT NULL,
   `defence` smallint(5) unsigned DEFAULT NULL,
   `range` tinyint(2) unsigned DEFAULT NULL,
   `slots` tinyint(2) unsigned DEFAULT NULL,
   `equip_jobs` int(12) unsigned DEFAULT NULL,
   `equip_upper` tinyint(8) unsigned DEFAULT NULL,
   `equip_genders` tinyint(2) unsigned DEFAULT NULL,
   `equip_locations` smallint(4) unsigned DEFAULT NULL,
   `weapon_level` tinyint(2) unsigned DEFAULT NULL,
   `equip_level_min` smallint(5) unsigned DEFAULT NULL,
   `equip_level_max` smallint(5) unsigned DEFAULT NULL,
   `refineable` tinyint(1) unsigned DEFAULT NULL,
   `view` smallint(3) unsigned DEFAULT NULL,
   `bindonequip` tinyint(1) unsigned DEFAULT NULL,
   `script` text,
   `equip_script` text,
   `unequip_script` text,
 PRIMARY KEY (`id`)
) ENGINE=MyISAM;