DROP TABLE IF EXISTS `cdb_czwauction`;
CREATE TABLE IF NOT EXISTS `cdb_czwauction` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `username` varchar(20) NOT NULL default '',
  `itemname` varchar(20) NOT NULL default '',
  `startmoney` int(10) unsigned NOT NULL default '0',
  `addmoney` int(10) unsigned NOT NULL default '10',
  `money` bigint(15) unsigned NOT NULL default '0',
  `starttime` int(10) unsigned NOT NULL default '0',
  `validtime` int(10) unsigned NOT NULL default '0',
  `auctionuser` varchar(15) NOT NULL default '',
  `gettag` tinyint(1) unsigned NOT NULL default '0',
  `overtag` tinyint(1) unsigned NOT NULL default '0',
  `itemnums` smallint(5) unsigned NOT NULL default '1',
  `auctetype` tinyint(1) unsigned NOT NULL default '1',
  `delaytag` tinyint(1) unsigned NOT NULL default '1',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;


DROP TABLE IF EXISTS `cdb_czwauctionlog`;
CREATE TABLE IF NOT EXISTS `cdb_czwauctionlog` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `username` varchar(20) NOT NULL default '0',
  `auctionid` mediumint(8) unsigned NOT NULL default '0',
  `money` int(10) unsigned NOT NULL default '0',
  `dotime` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;


DROP TABLE IF EXISTS `cdb_czwbuyitem`;
CREATE TABLE IF NOT EXISTS `cdb_czwbuyitem` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `username` varchar(15) NOT NULL,
  `itemname` varchar(20) NOT NULL,
  `itemnums` smallint(5) NOT NULL,
  `buymoney` int(10) unsigned NOT NULL default '0',
  `buytype` tinyint(1) unsigned NOT NULL default '1',
  `buytime` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `itemname` (`itemname`,`username`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;


DROP TABLE IF EXISTS `cdb_czwcompose`;
CREATE TABLE IF NOT EXISTS `cdb_czwcompose` (
  `id` smallint(5) unsigned NOT NULL auto_increment,
  `itemarr` varchar(255) NOT NULL default '',
  `itemnumarr` varchar(255) NOT NULL default '',
  `composeitem` varchar(20) NOT NULL default '',
  `costcwb` int(10) unsigned NOT NULL default '0',
  `randnum` tinyint(3) unsigned NOT NULL default '100',
  `itemarr2` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=9 ;


INSERT INTO `cdb_czwcompose` (`id`, `itemarr`, `itemnumarr`, `composeitem`, `costcwb`, `randnum`, `itemarr2`) VALUES
(1, 'bhpitem', '5', 'sbhpitem', 1000, 100, ''),
(2, 'bmpitem', '6', 'sbmpitem', 1000, 100, ''),
(3, 'sbssp', '6', 'sbs', 3000, 50, ''),
(4, 'sbs', '6', 'jpsbs', 30000, 30, ''),
(5, 'abssp', '10', 'abs', 3000, 50, ''),
(6, 'abs', '6', 'jpabs', 30000, 30, ''),
(7, 'xbssp', '10', 'xbs', 3000, 50, ''),
(8, 'xbs', '6', 'jpxbs', 30000, 30, '');


DROP TABLE IF EXISTS `cdb_czwerrors`;
CREATE TABLE IF NOT EXISTS `cdb_czwerrors` (
  `username` varchar(15) character set gbk NOT NULL,
  `index` varchar(15) character set gbk NOT NULL,
  `errtype` varchar(15) character set gbk NOT NULL,
  `errmore` text character set gbk,
  `timestamp` int(10) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


DROP TABLE IF EXISTS `cdb_czwfamily`;
CREATE TABLE IF NOT EXISTS `cdb_czwfamily` (
  `familyid` mediumint(8) unsigned NOT NULL auto_increment,
  `familyname` varchar(20) NOT NULL default '',
  `username` varchar(20) NOT NULL default '',
  `username2` varchar(50) default NULL,
  `petlevel` smallint(5) unsigned NOT NULL default '0',
  `petjob` smallint(5) unsigned NOT NULL default '0',
  `daygivemoney` mediumint(8) unsigned NOT NULL default '10000',
  `familymoney` bigint(15) NOT NULL default '100000',
  `maxgivemoney` int(10) unsigned NOT NULL default '10000',
  `createtime` int(10) unsigned NOT NULL default '0',
  `agreetag` tinyint(1) unsigned NOT NULL default '1',
  `masters` varchar(255) NOT NULL default '',
  `notice` text NOT NULL,
  PRIMARY KEY  (`familyid`),
  UNIQUE KEY `familyname` (`familyname`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;

DROP TABLE IF EXISTS `cdb_czwfamilyrecord`;
CREATE TABLE IF NOT EXISTS `cdb_czwfamilyrecord` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `familyid` mediumint(8) unsigned NOT NULL default '0',
  `username` varchar(20) NOT NULL default '',
  `itemname` varchar(20) NOT NULL default '0',
  `nums` int(10) NOT NULL default '0',
  `dotype` tinyint(2) unsigned NOT NULL default '0',
  `dotime` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;

DROP TABLE IF EXISTS `cdb_czwfamilyshop`;
CREATE TABLE IF NOT EXISTS `cdb_czwfamilyshop` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `familyid` mediumint(8) unsigned NOT NULL default '0',
  `itemname` varchar(20) NOT NULL default '',
  `itemnums` smallint(5) NOT NULL default '0',
  `maxlevel` smallint(5) unsigned NOT NULL default '9999',
  `maxjob` tinyint(3) unsigned NOT NULL default '99',
  `minlevel` smallint(5) unsigned NOT NULL default '0',
  `minjob` tinyint(3) unsigned NOT NULL default '0',
  `maxnums` smallint(5) unsigned NOT NULL default '10',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `familyitem` (`familyid`,`itemname`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;


DROP TABLE IF EXISTS `cdb_czwhire`;
CREATE TABLE IF NOT EXISTS `cdb_czwhire` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `username` varchar(15) NOT NULL,
  `itemname` varchar(20) NOT NULL,
  `hiretype` tinyint(1) unsigned NOT NULL default '1',
  `hireuser` varchar(15) NOT NULL default '',
  `hiretime` int(10) NOT NULL default '0',
  `backtag` tinyint(1) NOT NULL default '1',
  `hiremoney` mediumint(8) NOT NULL default '0',
  `starttime` int(10) NOT NULL default '0',
  `overtime` int(10) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `username` (`username`),
  KEY `itemname` (`itemname`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;

DROP TABLE IF EXISTS `cdb_czwitem`;
CREATE TABLE IF NOT EXISTS `cdb_czwitem` (
  `id` smallint(5) unsigned NOT NULL auto_increment,
  `itemname` varchar(20) NOT NULL default '',
  `cname` varchar(30) NOT NULL default '',
  `exp` mediumint(9) NOT NULL default '0',
  `moretxt` mediumtext NOT NULL,
  `selltag` tinyint(1) unsigned NOT NULL default '0',
  `cwb` int(10) unsigned NOT NULL default '0',
  `yxb` mediumint(7) unsigned NOT NULL default '0',
  `pic` varchar(100) NOT NULL default '',
  `itemtype` tinyint(1) unsigned NOT NULL default '0',
  `requirejob` smallint(4) unsigned NOT NULL default '0',
  `maxjob` tinyint(2) unsigned NOT NULL default '0',
  `requirelevel` mediumint(6) unsigned NOT NULL default '0',
  `addnum` mediumint(6) unsigned NOT NULL default '0',
  `droptag` tinyint(1) unsigned NOT NULL default '0',
  `droplevel` smallint(6) unsigned NOT NULL default '0',
  `droprange` tinyint(3) unsigned NOT NULL default '100',
  `addname` varchar(15) default NULL,
  `itemsex` tinyint(1) unsigned NOT NULL default '0',
  `career` tinyint(1) unsigned NOT NULL default '0',
  `str` smallint(5) NOT NULL default '0',
  `agi` smallint(5) NOT NULL default '0',
  `kno` smallint(5) NOT NULL default '0',
  `vit` smallint(5) NOT NULL default '0',
  `dex` smallint(5) NOT NULL default '0',
  `maxmp` smallint(5) NOT NULL default '0',
  `maxhp` smallint(5) NOT NULL default '0',
  `criring` smallint(5) NOT NULL default '0',
  `killrange` smallint(5) NOT NULL default '0',
  `upitemname` varchar(50) NOT NULL default '',
  `uprange` tinyint(3) unsigned NOT NULL default '10',
  `usetag` tinyint(1) unsigned NOT NULL default '0',
  `multiple` tinyint(3) unsigned NOT NULL default '0',
  `sellnum` smallint(6) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `itemname` (`itemname`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=167 ;

INSERT INTO `cdb_czwitem` (`id`, `itemname`, `cname`, `exp`, `moretxt`, `selltag`, `cwb`, `yxb`, `pic`, `itemtype`, `requirejob`, `maxjob`, `requirelevel`, `addnum`, `droptag`, `droplevel`, `droprange`, `addname`, `itemsex`, `career`, `str`, `agi`, `kno`, `vit`, `dex`, `maxmp`, `maxhp`, `criring`, `killrange`, `upitemname`, `uprange`, `usetag`, `multiple`, `sellnum`) VALUES
(1, 'hpitem', 'HP药水', 0, '增加宠物的HP点数', 1, 50, 0, 'item/other/hp.gif', 11, 0, 99, 0, 100, 1, 0, 100, 'mypethp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(2, 'mpitem', 'MP药水', 0, '增加宠物的MP点数', 1, 50, 0, 'item/other/mp.gif', 11, 0, 99, 0, 120, 1, 0, 100, 'mypetmp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(3, 'spitem', 'SP药水', 0, '补满宠物的SP', 1, 100, 0, 'item/other/sp.gif', 11, 0, 99, 0, 0, 1, 10, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 1, 0, 0),
(5, 'bhpitem', '大型HP药水', 0, '增加宠物的HP点数', 1, 500, 0, 'item/other/bhp.gif', 11, 0, 99, 0, 500, 1, 12, 100, 'mypethp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(6, 'bmpitem', '大型MP药水', 0, '增加宠物的MP点数', 0, 500, 0, 'item/other/bmp.gif', 11, 0, 99, 0, 500, 1, 20, 100, 'mypetmp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(7, 'liveitem', '复活宝石', 0, '使你的宠物复活', 1, 800, 0, 'item/other/live.gif', 12, 0, 99, 0, 0, 1, 50, 50, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 1, 0, 0),
(8, 'noitem', '忠诚之心', 0, '当宠物不理你的时候，使用这东西，他将对你百依百顺!', 1, 300, 0, 'item/other/heart.gif', 12, 0, 99, 0, 0, 1, 100, 50, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 1, 0, 0),
(11, 'sword1', '烈炎之剑', 0, '', 0, 600, 0, 'item/sword/23.gif', 1, 0, 99, 0, 23, 1, 20, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword025', 100, 0, 0, 0),
(12, 'sword2', '赤血之剑', 0, '', 0, 1200, 0, 'item/sword/46.gif', 1, 0, 99, 0, 40, 1, 60, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword3', 10, 0, 0, 0),
(13, 'sword3', '暗云巨剑', 0, '', 0, 4000, 0, 'item/sword/88.gif', 1, 0, 99, 50, 88, 1, 70, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword4', 10, 0, 0, 0),
(14, 'sword4', '雷坎特之剑', 0, '', 0, 6000, 0, 'item/sword/120.gif', 1, 0, 99, 70, 120, 1, 100, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword10', 10, 0, 0, 0),
(15, 'sword5', '冰封神剑(冰)', 0, '攻击时随机施放属性攻击', 0, 8000, 0, 'item/sword/125.gif', 1, 0, 99, 100, 125, 1, 150, 30, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(16, 'sword6', '黑帝斯巨剑', 0, '', 0, 10000, 0, 'item/sword/377.gif', 1, 0, 99, 140, 377, 1, 160, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword7', 10, 0, 0, 0),
(17, 'eqd1', '骨片胸甲', 0, '', 0, 100, 0, 'item/body/13.gif', 4, 0, 99, 0, 13, 1, 20, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'body015', 10, 0, 0, 0),
(18, 'eqd2', '圣青铜胸甲', 0, '', 0, 200, 0, 'item/body/18.gif', 4, 0, 99, 0, 18, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'body018', 10, 0, 0, 0),
(19, 'eqd3', '米索莉护甲', 0, '', 0, 800, 0, 'item/body/25.gif', 4, 0, 99, 0, 25, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'body025', 10, 0, 0, 0),
(20, 'eqd4', '超合金鳞甲', 0, '', 0, 2000, 0, 'item/body/32.gif', 4, 0, 99, 0, 32, 1, 80, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'body034', 10, 0, 0, 0),
(21, 'eqd5', '狂暴盔甲', 0, '', 0, 4000, 0, 'item/body/63.gif', 4, 0, 99, 0, 63, 1, 120, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'kingb', 1, 0, 0, 0),
(22, 'lets1', '蓝钻项链', 0, '', 0, 4000, 0, 'item/necklace/50.gif', 2, 0, 99, 30, 50, 1, 100, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(23, 'lets2', '古森林项链', 0, '', 0, 8000, 0, 'item/necklace/100.gif', 2, 0, 99, 50, 100, 1, 150, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(24, 'kingh', '王者头盔', 0, '', 0, 0, 0, 'item/head/350.gif', 3, 1, 99, 100, 350, 1, 350, 15, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(25, 'kingw', '王者之剑', 0, 'HP最大值+1300', 0, 0, 0, 'item/sword/1000.gif', 1, 1, 99, 100, 1000, 1, 500, 10, '', 0, 0, 0, 0, 0, 0, 0, 0, 1300, 0, 0, '', 10, 0, 0, 0),
(26, 'kingb', '王者圣甲', 0, '', 0, 0, 0, 'item/body/500.gif', 4, 1, 99, 100, 500, 1, 400, 10, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(27, 'kingl', '王者之坠', 0, '', 0, 0, 0, 'item/necklace/300.gif', 2, 1, 99, 100, 300, 1, 300, 20, '', 0, 0, 0, 0, 0, 0, 0, 500, 0, 0, 0, '', 10, 0, 0, 0),
(28, 'kings', '王者疾靴', 0, '', 0, 0, 0, 'item/foot/350.gif', 5, 1, 99, 100, 350, 1, 400, 10, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(29, 'hbook', '治疗术领悟之书', 0, '记载治疗术知识及咒语的魔法书！', 1, 500, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 10, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(30, 'sbook', '催眠术领悟之书', 0, '记载催眠术知识及咒语的魔法书！', 1, 500, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 10, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(31, 'tbook', '大地术领悟之书', 0, '记载大地防御术知识及咒语的魔法书！', 1, 1000, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(32, 'pbook', '气血术领悟之书', 0, '记载气血强身术知识及咒语的魔法书！', 0, 3000, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 100, 80, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(33, 'lbook', '复活术领悟之书', 0, '记载复活返生术知识及咒语的魔法书！', 1, 5000, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 150, 50, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(34, 'fbook', '炎爆术领悟之书', 0, '记载火属性魔法攻击术知识及咒语的魔法书！', 1, 2500, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(35, 'ibook', '寒冰术领悟之书', 0, '记载水属性魔法攻击术知识及咒语的魔法书！', 1, 5000, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 80, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(36, 'fwbook', '地爆术领悟之书', 0, '记载土属性魔法攻击术知识及咒语的魔法书！', 1, 7000, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 120, 80, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(37, 'lbbook', '光爆术领悟之书', 0, '记载光属性魔法攻击术知识及咒语的魔法书！', 0, 10000, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 160, 50, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(38, 'chbook', '召唤术领悟之书', 0, '记载召唤暗属性地狱使者知识及咒语的魔法书！', 0, 10000, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 200, 25, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(39, 'k2book', '分身术领悟之书', 0, '记载刺客分身术知识及咒语的魔法书！', 0, 10000, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 130, 80, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(40, 'points2', '红宝石', 0, '魔法师的最爱，施展魔法必备工具！ ', 1, 50, 0, 'item/other/hbaoshi.gif', 12, 0, 99, 0, 0, 1, 10, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(41, 'yxtk', '英雄头盔', 0, '', 0, 0, 0, 'item/head/850.gif', 3, 0, 99, 100, 850, 1, 500, 3, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(42, 'yxzx', '英雄之靴', 0, '刺客专用装备!', 0, 0, 0, 'item/foot/650.gif', 5, 0, 99, 100, 650, 1, 500, 8, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(43, 'yxzj', '英雄之剑', 0, '', 0, 0, 0, 'item/sword/2500.gif', 1, 2, 99, 150, 2500, 0, 600, 8, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(44, 'yxhj', '英雄护甲', 0, '', 0, 0, 0, 'item/body/1500.gif', 4, 2, 99, 150, 1500, 0, 500, 8, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(45, 'yxzz', '英雄之坠', 0, '', 0, 0, 0, 'item/necklace/850.gif', 2, 2, 99, 150, 850, 1, 500, 8, '', 0, 0, 0, 0, 0, 0, 0, 1000, 0, 0, 0, '', 10, 0, 0, 0),
(46, 'sqsj', '圣骑士剑', 0, '传说中的骑士终极武器，往往是可遇而不可求的!', 0, 0, 0, 'item/sword/5000.gif', 1, 3, 99, 300, 5000, 0, 700, 5, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(47, 'sqskj', '圣骑士盔甲', 0, 'HP最大值+5000\r\n', 0, 0, 0, 'item/body/5000.gif', 4, 3, 99, 350, 5000, 0, 700, 5, '', 0, 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, '', 10, 0, 0, 0),
(48, 'sqstk', '圣骑士头盔', 0, 'MP最大值+2000', 0, 0, 0, 'item/head/4500.gif', 3, 0, 99, 250, 4500, 0, 700, 5, '', 0, 0, 0, 0, 0, 0, 0, 2000, 0, 0, 0, '', 10, 0, 0, 0),
(49, 'sqsxl', '圣骑士项链', 0, '体质+300,HP最大值+2700', 0, 0, 0, 'item/necklace/3500.gif', 2, 3, 99, 350, 3500, 1, 700, 5, '', 0, 0, 0, 0, 0, 300, 0, 0, 2700, 0, 0, '', 10, 0, 0, 0),
(50, 'sqsx', '圣骑士靴', 0, '敏捷+200', 0, 0, 0, 'item/foot/3500.gif', 5, 0, 99, 250, 3500, 1, 700, 5, '', 0, 0, 0, 200, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(51, 'tstk', '天使头盔', 0, '智慧+500', 0, 0, 0, 'item/head/4000.gif', 3, 4, 99, 300, 4000, 0, 950, 2, '', 0, 0, 0, 0, 500, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(52, 'tsqz', '天使权杖', 0, 'MP+5000,传说中的法师的利器，往往是可遇而不可求的', 0, 0, 0, 'item/sword/5500.gif', 1, 3, 99, 350, 5500, 0, 900, 2, '', 0, 0, 0, 0, 0, 0, 0, 5000, 0, 0, 0, '', 10, 0, 0, 0),
(53, 'tsfp', '天使法袍', 0, 'HP+8000', 0, 0, 0, 'item/body/6000.gif', 4, 4, 99, 400, 6000, 0, 900, 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 8000, 0, 0, '', 10, 0, 0, 0),
(54, 'tsjz', '天使戒指', 0, '体质+500', 0, 0, 0, 'item/necklace/4000.gif', 2, 4, 99, 400, 4000, 0, 900, 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 4500, 0, 0, '', 10, 0, 0, 0),
(55, 'tszx', '天使之靴', 0, '耐力+500', 0, 0, 0, 'item/foot/4000.gif', 5, 4, 99, 300, 4000, 0, 900, 2, '', 0, 0, 0, 0, 0, 0, 500, 0, 0, 0, 0, '', 10, 0, 0, 0),
(56, 'sword005', '短剑', 0, '', 1, 30, 0, 'item/sword/5.gif', 1, 0, 99, 0, 5, 1, 10, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword010', 10, 0, 0, 0),
(57, 'sword010', '狩猎剑', 0, '', 1, 60, 0, 'item/sword/10.gif', 1, 0, 99, 0, 10, 1, 20, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword015', 10, 0, 0, 0),
(58, 'sword015', '强力剑', 0, '', 1, 120, 0, 'item/sword/15.gif', 1, 0, 99, 0, 15, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword018', 10, 0, 0, 0),
(59, 'sword018', '正义剑', 0, '', 1, 240, 0, 'item/sword/18.gif', 1, 0, 99, 0, 18, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(60, 'sword020', '男爵剑', 0, '', 1, 480, 0, 'item/sword/20.gif', 1, 0, 99, 0, 20, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword1', 10, 0, 0, 0),
(61, 'sword025', '烈焰剑', 0, '', 1, 960, 0, 'item/sword/25.gif', 1, 0, 99, 0, 25, 1, 40, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword028', 10, 0, 0, 0),
(62, 'sword028', '青钢剑', 0, '', 1, 1500, 0, 'item/sword/28.gif', 1, 0, 99, 0, 28, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword030', 10, 0, 0, 0),
(63, 'sword030', '多刃剑', 0, '', 1, 2500, 0, 'item/sword/30.gif', 1, 0, 99, 0, 30, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword034', 10, 0, 0, 0),
(64, 'sword034', '战神剑', 0, '', 1, 4000, 0, 'item/sword/34.gif', 1, 0, 99, 0, 34, 1, 60, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword2', 10, 0, 0, 0),
(65, 'necklace005', '普通项链', 0, '', 1, 150, 0, 'item/necklace/5.gif', 2, 0, 99, 0, 5, 1, 10, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'necklace020', 10, 0, 0, 0),
(66, 'necklace010', '宝石项链', 0, '', 1, 300, 0, 'item/necklace/10.gif', 2, 0, 99, 0, 10, 1, 20, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'necklace020', 20, 0, 0, 0),
(67, 'necklace015', '绿宝石项链', 0, '', 1, 450, 0, 'item/necklace/15.gif', 2, 0, 99, 0, 15, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'necklace020', 40, 0, 0, 0),
(68, 'necklace018', '蓝宝石项链', 0, '', 1, 600, 0, 'item/necklace/18.gif', 2, 0, 99, 0, 18, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(69, 'necklace020', '红宝石项链', 0, '', 1, 750, 0, 'item/necklace/20.gif', 2, 0, 99, 0, 20, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(70, 'necklace025', '精致项链', 0, '', 1, 900, 0, 'item/necklace/25.gif', 2, 0, 99, 0, 25, 1, 40, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(71, 'necklace028', '无暇之链', 0, '', 1, 1050, 0, 'item/necklace/28.gif', 2, 0, 99, 0, 28, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(72, 'necklace030', '优雅之链', 0, '', 1, 1200, 0, 'item/necklace/30.gif', 2, 0, 99, 0, 30, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(73, 'necklace034', '祝福之链', 0, '', 1, 1350, 0, 'item/necklace/34.gif', 2, 0, 99, 0, 34, 1, 60, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(74, 'head005', '棉质头盔', 0, '', 1, 25, 0, 'item/head/5.gif', 3, 0, 99, 0, 5, 1, 10, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(75, 'head010', '皮质头盔', 0, '', 1, 50, 0, 'item/head/10.gif', 3, 0, 99, 0, 10, 1, 20, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(76, 'head015', '兽骨头盔', 0, '', 1, 100, 0, 'item/head/15.gif', 3, 0, 99, 0, 15, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(77, 'head018', '特制兽骨头盔', 0, '', 1, 200, 0, 'item/head/18.gif', 3, 0, 99, 0, 18, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(78, 'head020', '全怠头盔', 0, '', 1, 400, 0, 'item/head/20.gif', 3, 0, 99, 0, 20, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(79, 'head025', '黄金头盔', 0, '', 1, 800, 0, 'item/head/25.gif', 3, 0, 99, 0, 25, 1, 40, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(80, 'head028', '优雅之头盔', 0, '', 1, 1200, 0, 'item/head/28.gif', 3, 0, 99, 0, 28, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(81, 'head030', '高贵之头盔', 0, '', 1, 1800, 0, 'item/head/30.gif', 3, 0, 99, 0, 30, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(82, 'head034', '飞翔之头盔', 0, '', 1, 3000, 0, 'item/head/34.gif', 3, 0, 99, 0, 34, 1, 60, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(83, 'body005', '棉质甲', 0, '', 1, 20, 0, 'item/body/5.gif', 4, 0, 99, 0, 5, 1, 10, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'body010', 10, 0, 0, 0),
(84, 'body010', '皮质甲', 0, '', 1, 40, 0, 'item/body/10.gif', 4, 0, 99, 0, 10, 1, 20, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(85, 'body015', '兽骨软甲', 0, '', 1, 80, 0, 'item/body/15.gif', 4, 0, 99, 0, 15, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'eqd2', 10, 0, 0, 0),
(86, 'body018', '兽骨铠甲', 0, '', 1, 160, 0, 'item/body/18.gif', 4, 0, 99, 0, 18, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'body020', 10, 0, 0, 0),
(87, 'body020', '全怠铠甲', 0, '', 1, 320, 0, 'item/body/20.gif', 4, 0, 99, 0, 20, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'eqd3', 10, 0, 0, 0),
(88, 'body025', '黄金铠甲', 0, '', 1, 640, 0, 'item/body/25.gif', 4, 0, 99, 0, 25, 1, 40, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'body028', 10, 0, 0, 0),
(89, 'body028', '优雅之甲胄装', 0, '', 1, 1280, 0, 'item/body/28.gif', 4, 0, 99, 0, 28, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'body030', 10, 0, 0, 0),
(90, 'body030', '高贵之甲胄装', 0, '', 1, 1600, 0, 'item/body/30.gif', 4, 0, 99, 0, 30, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'eqd4', 10, 0, 0, 0),
(91, 'body034', '神秘之甲胄装', 0, '', 1, 2200, 0, 'item/body/34.gif', 4, 0, 99, 0, 34, 1, 60, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'eqd5', 10, 0, 0, 0),
(92, 'foot005', '棉质鞋子', 0, '', 1, 10, 0, 'item/foot/5.gif', 5, 0, 99, 0, 5, 1, 10, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(93, 'foot010', '皮质鞋子', 0, '', 1, 20, 0, 'item/foot/10.gif', 5, 0, 99, 0, 10, 1, 20, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(94, 'foot015', '兽骨鞋子', 0, '', 1, 40, 0, 'item/foot/15.gif', 5, 0, 99, 0, 15, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(95, 'foot018', '特制兽骨鞋子', 0, '', 1, 80, 0, 'item/foot/18.gif', 5, 0, 99, 0, 18, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(96, 'foot020', '全怠鞋子', 0, '', 1, 160, 0, 'item/foot/20.gif', 5, 0, 99, 0, 20, 1, 30, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(97, 'foot025', '黄金鞋子', 0, '', 1, 320, 0, 'item/foot/25.gif', 5, 0, 99, 0, 25, 1, 40, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(98, 'foot028', '优雅之靴', 0, '', 1, 640, 0, 'item/foot/28.gif', 5, 0, 99, 0, 28, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(99, 'foot030', '高贵之靴', 0, '', 1, 1000, 0, 'item/foot/30.gif', 5, 0, 99, 0, 30, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(100, 'foot034', '神秘之靴', 0, '', 1, 1600, 0, 'item/foot/34.gif', 5, 0, 99, 0, 34, 1, 60, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(101, 'sword10', '玉具剑', 0, '', 0, 8000, 0, 'item/sword/250.gif', 1, 0, 99, 120, 250, 1, 140, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword6', 10, 0, 0, 0),
(103, 'killring', '天谴之戒', 0, '打劫某玩家宠物身上10％的宠物币\r\n成功几率：28％', 0, 0, 0, 'item/necklace/criring.gif', 6, 1, 99, 0, 100, 0, 1000, 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(104, 'mring', '财富戒指', 0, '野战怪物掉落金币随机增加,送MM好东西哦', 0, 0, 0, 'item/necklace/mring.jpg', 6, 0, 99, 200, 50, 1, 400, 5, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(105, 'sword7', '太康剑', 0, '', 0, 12000, 0, 'item/sword/413.gif', 1, 0, 99, 160, 413, 1, 180, 80, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword8', 10, 0, 0, 0),
(106, 'sword9', '昆吾剑', 0, '', 0, 16000, 0, 'item/sword/593.gif', 1, 0, 99, 200, 593, 1, 220, 40, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'kingw', 1, 0, 0, 0),
(107, 'sword8', '越五剑', 0, '', 0, 14000, 0, 'item/sword/512.gif', 1, 0, 99, 180, 512, 1, 200, 60, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'sword9', 10, 0, 0, 0),
(108, 'ppx_foot1', '力量之靴', 0, '增加力量50点,两转前才能装备', 0, 2000, 0, 'item/foot/ppx_foot1.jpg', 5, 0, 1, 50, 60, 1, 80, 50, '', 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(109, 'ppx_foot2', '敏捷之靴', 0, '增加敏捷50点,两转前才能装备', 0, 2600, 0, 'item/foot/ppx_foot2.jpg', 5, 0, 1, 50, 70, 1, 80, 50, '', 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(110, 'ppx_foot3', '智慧之靴', 0, '增加智慧50点,两转前才能装备', 0, 2400, 0, 'item/foot/ppx_foot3.jpg', 5, 0, 1, 50, 50, 1, 80, 50, '', 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(111, 'ppx_foot4', '耐力之靴', 0, '增加耐力50点,两转前才能装备', 0, 3000, 0, 'item/foot/ppx_foot4.jpg', 5, 0, 1, 50, 80, 1, 80, 50, '', 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, '', 10, 0, 0, 0),
(112, 'ppx_head1', '力量之头盔', 0, '增加力量100点,两转前才能装备', 0, 4200, 0, 'item/head/ppx_head1.jpg', 3, 1, 1, 100, 170, 1, 130, 50, '', 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(113, 'ppx_head2', '智慧之头盔', 0, '增加智慧100点,两转前才能装备', 0, 4400, 0, 'item/head/ppx_head2.jpg', 3, 1, 1, 100, 100, 1, 130, 50, '', 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(114, 'ppx_head3', '敏捷之头盔', 0, '增加敏捷100点,两转前才能装备', 0, 4600, 0, 'item/head/ppx_head3.jpg', 3, 1, 1, 100, 150, 1, 130, 50, '', 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(115, 'ppx_head4', '耐力之头盔', 0, '增加耐力100点,两转前才能装备', 0, 4800, 0, 'item/head/ppx_head4.jpg', 3, 1, 1, 100, 125, 1, 130, 50, '', 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, '', 10, 0, 0, 0),
(116, 'killsword', '必杀之剑', 0, '在攻击怪物有机会施展一击必杀之技能', 2, 0, 10, 'item/sword/killsword.jpg', 1, 0, 99, 0, 10, 1, 600, 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'kingw', 1, 0, 0, 0),
(117, 'card_jf', '劫富卡', 0, '无视怪物攻击,防御,一击必杀\r\n有效时间每天12：00－13：00', 0, 0, 0, 'item/other/card_jf.gif', 13, 0, 99, 0, 0, 1, 20, 20, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 1, 0, 0),
(141, 'sbhpitem', '超大瓶HP药水', 0, '增加宠物的HP点数', 0, 0, 0, 'item/other/bhp.gif', 11, 0, 99, 0, 5000, 0, 0, 0, 'mypethp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(119, 'atkitem2', '攻击升级卷轴', 0, '用来升级宠物攻击性装备', 0, 100, 0, 'item/other/upatk2.gif', 15, 0, 99, 0, 0, 1, 50, 60, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(120, 'defitem2', '防御升级卷轴', 0, '用来升级宠物防御性装备', 0, 100, 0, 'item/other/updef2.gif', 15, 0, 99, 0, 0, 1, 50, 60, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(121, 'hongbao', '红包', 0, '恭喜发财，红包拿来！', 0, 8000, 0, 'item/other/hb.gif', 15, 0, 99, 0, 0, 1, 300, 5, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 0, 0),
(122, 'xitang', '喜糖', 0, '吃吃看，感觉如何？', 0, 10000, 0, 'item/other/xt.jpg', 15, 0, 99, 0, 0, 0, 500, 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 1, 0, 0),
(123, 'rose', '玫瑰花', 0, '送MM的好东西', 0, 0, 0, 'item/other/rose.gif', 15, 0, 99, 0, 0, 1, 10, 1, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(124, 'expcard', '双倍经验卡', 0, '野战过程中，怪物经验双倍，30分钟内有效', 1, 100000, 0, 'item/other/card_jf.gif', 13, 0, 99, 0, 30, 1, 600, 1, 'exp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 2, 0),
(125, 'expcard3', '三倍经验卡', 0, '野战过程中，怪物经验三倍，30分钟内有效', 2, 0, 3, 'item/other/card_jf.gif', 13, 0, 99, 0, 30, 1, 800, 1, 'exp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 3, 0),
(126, 'atkcard', '双倍攻击卡', 0, '野战过程中，宠物攻击双倍，30分钟内有效', 2, 0, 2, 'item/other/card_jf.gif', 13, 0, 99, 0, 30, 1, 500, 1, 'atk', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 2, 0),
(127, 'goldcard', '双倍金钱卡', 0, '野战过程中，怪物掉钱双倍，30分钟内有效', 2, 0, 2, 'item/other/card_jf.gif', 13, 0, 99, 0, 30, 0, 600, 1, 'gold', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 2, 0),
(137, 'expitem', 'EXP药水', 0, '增加宠物的EXP点数', 0, 200, 0, 'item/other/exp.gif', 11, 0, 99, 0, 50, 0, 0, 100, 'mypetexp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(138, 'knoitem', '智慧药水', 0, '增加宠物的智慧点', 2, 0, 5, 'item/other/exp.gif', 11, 0, 99, 0, 5, 0, 0, 0, 'kno', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(139, 'stritem', '力量药水', 0, '增加宠物的力量点', 2, 0, 5, 'item/other/exp.gif', 11, 0, 99, 5, 0, 0, 0, 0, 'str', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(140, 'expitem2', 'EXP药水', 0, '增加宠物的EXP点数', 0, 0, 0, 'item/other/exp.gif', 11, 0, 99, 0, 5000, 0, 200, 2, 'mypetexp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(142, 'sbmpitem', '超大瓶MP药水', 0, '增加宠物的MP点数', 0, 0, 0, 'item/other/bmp.gif', 11, 0, 99, 0, 5000, 0, 0, 0, 'mypetmp', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(143, 'sbssp', '圣宝石碎片', 0, '合成骑士装备的材料', 0, 80, 0, 'item/other/sbssp.jpg', 12, 0, 99, 0, 0, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(144, 'sbs', '圣宝石', 0, '合成骑士装备的材料', 0, 0, 0, 'item/other/sbs.jpg', 12, 0, 99, 0, 0, 1, 50, 10, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(145, 'jpsbs', '极品圣宝石', 0, '合成骑士装备的材料', 0, 0, 0, 'item/other/jpsbs.jpg', 12, 0, 99, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(146, 'abs', '暗宝石', 0, '合成刺客装备的材料', 0, 0, 0, 'item/other/abs.jpg', 12, 0, 99, 0, 0, 1, 50, 10, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(147, 'abssp', '暗宝石碎片', 0, '合成刺客装备的材料', 0, 80, 0, 'item/other/abssp.jpg', 12, 0, 99, 0, 0, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(148, 'jpabs', '极品暗宝石', 0, '合成刺客装备的材料', 0, 0, 0, 'item/other/jpabs.jpg', 12, 0, 99, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(149, 'xbssp', '血宝石碎片', 0, '合成法师装备的材料', 0, 80, 0, 'item/other/xbssp.jpg', 12, 0, 99, 0, 0, 1, 50, 100, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(150, 'xbs', '血宝石', 0, '合成法师装备的材料', 0, 0, 0, 'item/other/xbs.jpg', 12, 0, 99, 0, 0, 1, 50, 10, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(151, 'jpxbs', '极品血宝石', 0, '合成法师装备的材料', 0, 0, 0, 'item/other/jpxbs.jpg', 12, 0, 99, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(152, 'box', '百宝箱', 0, '百宝箱', 0, 0, 0, 'item/other/bbaox.jpg', 15, 0, 99, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(154, 'thbook', '二连击领悟之书', 0, '记载二连击知识及咒语的魔法书！', 1, 500, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 10, 12, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(155, 'lhbook', '多重攻击领悟之书', 0, '记载刺客多重攻击知识及咒语的魔法书！', 0, 3000, 0, 'item/other/book.gif', 14, 0, 99, 0, 0, 1, 100, 6, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 10, 0, 0, 0),
(156, 'prison', '小铁锤', 0, '越狱专用工具，一次性用品\r\n成功概率25%', 0, 2000, 0, 'item/sword/88.gif', 1, 0, 99, 0, 0, 0, 999, 20, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(157, 'qhjz', '求婚戒指', 0, '求婚必备物品', 0, 20000, 500, 'item/ring/qhjz.gif', 6, 22, 99, 0, 0, 0, 9999, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(158, 'expring2', '经验钻戒', 0, '野战怪物经验增加50%', 0, 0, 20000, 'item/ring/expring.jpg', 6, 50, 99, 2500, 0, 0, 9999, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(159, 'cfzj', '财富钻戒', 0, '野战怪物掉落金币3倍', 0, 0, 20000, 'item/ring/cfjz.gif', 6, 30, 99, 1500, 0, 0, 9999, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(160, 'card_djbank', '打劫卡（银行）', 0, '成功几率：28％', 0, 10000, 0, 'item/other/card_jf.gif', 13, 12, 99, 600, 0, 1, 100, 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 0, 0),
(161, 'card_djfamily', '打劫卡（家族）', 0, '成功几率：28％', 0, 10000, 0, 'item/other/card_jf.gif', 13, 12, 99, 600, 0, 1, 100, 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 0, 0),
(162, 'card_dj01', '博彩卡', 0, '想和宠物币第一的玩家博一博吗？\r\n45%概率赢得您宠物身上相同宠物币\r\n55%概率输掉您宠物身上全部宠物币', 0, 1000, 0, 'item/other/card_jf.gif', 13, 2, 99, 100, 0, 1, 100, 3, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 0, 0),
(163, 'expring', '经验之戒', 0, '野战怪物经验增加20%', 0, 0, 6000, 'item/ring/expring.jpg', 6, 32, 99, 1600, 0, 0, 4444, 2, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(164, 'wing', '初生的翅膀', 0, '初生的翅膀', 0, 0, 0, 'item/wing/wing.gif', 7, 0, 99, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(165, 'livewing', '天使之翼', 0, '战斗过程中宠物死亡瞬间复活，而且不扣减经验', 0, 0, 0, 'item/wing/wing.gif', 7, 12, 99, 0, 0, 0, 0, 0, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0),
(166, 'mapring', '占地之戒', 0, '家族占领地图必备物品', 0, 20000, 100, 'item/ring/mapring.gif', 6, 0, 99, 0, 0, 0, 9999, 3, '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 0);


DROP TABLE IF EXISTS `cdb_czwitemmarket`;
CREATE TABLE IF NOT EXISTS `cdb_czwitemmarket` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `itemname` varchar(20) NOT NULL default '',
  `itemnums` smallint(5) NOT NULL default '0',
  `sellmoney` int(10) unsigned NOT NULL default '0',
  `username` varchar(30) NOT NULL default '',
  `selltime` int(10) unsigned NOT NULL default '0',
  `selltype` tinyint(1) unsigned NOT NULL default '1',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `marketitem` (`username`,`itemname`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;

DROP TABLE IF EXISTS `cdb_czwitemsuit`;
CREATE TABLE IF NOT EXISTS `cdb_czwitemsuit` (
  `id` smallint(5) NOT NULL auto_increment,
  `item1` varchar(15) NOT NULL default '',
  `item2` varchar(15) NOT NULL default '',
  `item3` varchar(15) NOT NULL default '',
  `item4` varchar(15) NOT NULL default '',
  `item5` varchar(15) NOT NULL default '',
  `suitname` varchar(15) NOT NULL default '',
  `skillname` varchar(15) NOT NULL default '',
  `atk1` smallint(5) unsigned NOT NULL default '0',
  `atk2` smallint(5) unsigned NOT NULL default '0',
  `randnum` tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=5 ;

INSERT INTO `cdb_czwitemsuit` (`id`, `item1`, `item2`, `item3`, `item4`, `item5`, `suitname`, `skillname`, `atk1`, `atk2`, `randnum`) VALUES
(1, 'kingw', 'kingl', 'kingh', 'kingb', 'kings', '王者套装', '王者之击', 15, 25, 25),
(2, 'yxzj', 'yxzz', 'yxtk', 'yxhj', 'yxzx', '英雄套装', '英雄之击', 20, 30, 30),
(3, 'tsqz', 'tsjz', 'tstk', 'tsfp', 'tszx', '天使套装', '天使之击', 50, 50, 5),
(4, 'sqsj', 'sqsxl', 'sqstk', 'sqskj', 'sqsx', '圣骑士套装', '圣骑士之击', 50, 50, 5);

DROP TABLE IF EXISTS `cdb_czwmagic`;
CREATE TABLE IF NOT EXISTS `cdb_czwmagic` (
  `magicname` varchar(50) NOT NULL,
  `cname` varchar(50) NOT NULL,
  `bookname` varchar(50) NOT NULL,
  `career` tinyint(1) unsigned NOT NULL default '0',
  `requirejob` tinyint(2) unsigned NOT NULL default '0',
  `requirelevel` smallint(5) unsigned NOT NULL default '10',
  `pic` varchar(50) NOT NULL default '',
  `magictype` varchar(20) NOT NULL default 'atk',
  PRIMARY KEY  (`magicname`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk;

INSERT INTO `cdb_czwmagic` (`magicname`, `cname`, `bookname`, `career`, `requirejob`, `requirelevel`, `pic`, `magictype`) VALUES
('mcallhell', '召唤术', 'chbook', 3, 2, 160, 'callhell.jpg', 'ajax'),
('msleep', '催眠术', 'sbook', 3, 0, 10, 'sleep.jpg', 'ajax'),
('mlightbomb', '光爆术', 'lbbook', 3, 1, 120, 'lightbomb.jpg', 'atk'),
('mice', '寒冰术', 'ibook', 3, 0, 50, 'ice.jpg', 'atk'),
('mfirewind', '地爆术', 'fwbook', 3, 0, 80, 'firewind.jpg', 'atk'),
('mfire', '炎爆术', 'fbook', 3, 0, 20, 'fire.jpg', 'atk'),
('mkiller2', '幻影分身', 'k2book', 2, 0, 50, 'killer2.jpg', 'ajax'),
('mlothit', '多重攻击', 'lhbook', 2, 0, 90, 'lothit.jpg', 'atk'),
('mtwohit', '二连击', 'thbook', 2, 0, 20, 'twohit.jpg', 'auto'),
('mheal', '治疗术', 'hbook', 1, 0, 10, 'heal.jpg', 'ajax'),
('mlive', '复活术', 'lbook', 1, 0, 50, 'live.jpg', 'ajax'),
('mpower', '气血术', 'pbook', 1, 0, 80, 'power.jpg', 'ajax'),
('mtitan', '大地术', 'tbook', 1, 0, 40, 'titan.jpg', 'ajax');


DROP TABLE IF EXISTS `cdb_czwmap`;
CREATE TABLE IF NOT EXISTS `cdb_czwmap` (
  `mapid` smallint(4) unsigned NOT NULL auto_increment,
  `mapname` varchar(20) NOT NULL default '',
  `mainmapid` int(2) NOT NULL default '1',
  `x` int(3) NOT NULL default '1',
  `y` int(3) NOT NULL default '1',
  `maxlevel` smallint(6) unsigned NOT NULL default '9999',
  `requirejob` smallint(6) unsigned NOT NULL default '0',
  `maxpeople` smallint(6) unsigned NOT NULL default '30',
  `moretxt` varchar(100) NOT NULL default '',
  `minlevel` smallint(5) unsigned NOT NULL default '0',
  `maxjob` smallint(3) unsigned NOT NULL default '99',
  `introduction` varchar(20) default NULL,
  `familyid` smallint(5) unsigned NOT NULL default '0',
  `validtime` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`mapid`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=19 ;

INSERT INTO `cdb_czwmap` (`mapid`, `mapname`, `mainmapid`, `x`, `y`, `maxlevel`, `requirejob`, `maxpeople`, `moretxt`, `minlevel`, `maxjob`, `introduction`, `familyid`, `validtime`) VALUES
(1, '新手村', 1, 215, 409, 10, 0, 50, '适合10级以下新手', 0, 99, '', 0, 0),
(2, '矿山', 1, 281, 328, 200, 0, 30, '适合10级~50级', 0, 99, '矿山 - 适合10级~50级', 0, 0),
(3, '怪兽之家', 1, 335, 180, 9999, 0, 30, '适合50级~90级', 0, 99, '怪兽之家 - 适合50级~', 0, 0),
(4, '海盗船', 1, 467, 234, 9999, 0, 30, '适合90级~130级', 0, 99, '海盗船 - 适合90级~13', 0, 0),
(5, '沙漠绿洲', 1, 148, 168, 9999, 0, 30, '适合130级~170级', 0, 99, '沙漠绿洲 - 适合130级', 0, 0),
(6, '暗黑魔堡', 1, 235, 197, 9999, 0, 30, '适合170~220级', 0, 99, '暗黑魔堡 - 适合170~2', 0, 0),
(7, '火焰山', 1, 294, 86, 9999, 1, 30, '适合220~270级', 0, 99, '火焰山 - 适合220~270', 0, 0),
(8, '雪原仙宫', 1, 354, 30, 9999, 2, 30, '适合270级以上', 0, 99, '雪原仙宫 - 适合270级', 0, 0),
(10, '梦幻之岛', 1, 530, 155, 9999, 4, 30, '适合400级以上', 0, 99, '梦幻之岛 - 适合400级', 0, 0),
(11, '南洋之底', 1, 40, 225, 9999, 5, 30, '适合450级以上', 0, 99, '南洋之底 - 适合450级', 0, 0),
(12, '缥缈幻境', 1, 228, 26, 9999, 6, 30, '适合500级以上', 0, 99, '缥缈幻境 - 适合500级', 0, 0),
(13, 'MM写真馆', 1, 1, 1, 9999, 7, 10, '10转宠物地图', 200, 99, '', 0, 0),
(14, '冥界', 1, 1, 1, 9999, 10, 100, '冥界', 0, 99, '', 0, 0),
(15, '红楼幽宫', 1, 1, 1, 9999, 12, 100, '红楼幽宫', 0, 99, '', 0, 0),
(16, '黄金十二宫', 1, 1, 1, 9999, 15, 50, '黄金十二宫', 0, 99, '', 0, 0);


DROP TABLE IF EXISTS `cdb_czwmarry`;
CREATE TABLE IF NOT EXISTS `cdb_czwmarry` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `username` varchar(15) NOT NULL,
  `touser` varchar(15) NOT NULL,
  `dotime` int(10) unsigned NOT NULL default '0',
  `statue` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;

DROP TABLE IF EXISTS `cdb_czwmaster`;
CREATE TABLE IF NOT EXISTS `cdb_czwmaster` (
  `id` mediumint(7) unsigned NOT NULL auto_increment,
  `username` varchar(15) NOT NULL default '',
  `mastername` varchar(15) NOT NULL default '',
  `dotime` int(10) unsigned NOT NULL default '0',
  `agreetag` tinyint(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;


DROP TABLE IF EXISTS `cdb_czwnpcdata`;
CREATE TABLE IF NOT EXISTS `cdb_czwnpcdata` (
  `npcid` mediumint(8) unsigned NOT NULL auto_increment,
  `npcname` varchar(20) NOT NULL,
  `npcpic` varchar(30) NOT NULL,
  `npclevel` smallint(5) unsigned NOT NULL default '0',
  `npchp` int(10) unsigned NOT NULL default '0',
  `npcmaxhp` int(10) unsigned NOT NULL default '0',
  `npcexp` int(10) unsigned NOT NULL default '0',
  `npcatk` mediumint(8) unsigned NOT NULL default '0',
  `npcdef` mediumint(8) unsigned NOT NULL default '0',
  `npcsx` varchar(4) NOT NULL,
  `mapid` smallint(5) unsigned NOT NULL default '1',
  `pktime` int(10) unsigned NOT NULL default '0',
  `npctalk` varchar(100) default NULL,
  `npcgold` smallint(5) unsigned NOT NULL default '0',
  `npcitem` varchar(20) default NULL,
  `npctime` smallint(5) unsigned NOT NULL default '0',
  PRIMARY KEY  (`npcid`),
  KEY `mapid` (`mapid`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=1072 ;

INSERT INTO `cdb_czwnpcdata` (`npcid`, `npcname`, `npcpic`, `npclevel`, `npchp`, `npcmaxhp`, `npcexp`, `npcatk`, `npcdef`, `npcsx`, `mapid`, `pktime`, `npctalk`, `npcgold`, `npcitem`, `npctime`) VALUES
(1, '波利', 'm1.gif', 11, 500, 500, 2, 10, 10, '土', 2, 1205005698, NULL, 0, NULL, 0),
(2, '绿棉虫', 'm2.gif', 13, 550, 550, 3, 13, 12, '土', 2, 1206599366, NULL, 0, NULL, 0),
(3, '小鸡', 'm3.gif', 15, 0, 600, 4, 16, 14, '火', 2, 1205231807, NULL, 0, NULL, 0),
(4, '疯兔', 'm4.gif', 17, 650, 650, 5, 19, 16, '木', 2, 1206599414, NULL, 0, NULL, 0),
(5, '圣诞波利', 'm5.gif', 19, 0, 700, 6, 22, 18, '光', 2, 1205004606, NULL, 0, NULL, 0),
(6, '树精', 'm6.gif', 21, 750, 750, 7, 25, 20, '木', 2, 1205724951, NULL, 0, NULL, 0),
(7, '苍蝇', 'm7.gif', 23, 0, 800, 8, 28, 22, '水', 2, 1205231745, NULL, 0, NULL, 0),
(8, '秃鹰', 'm8.gif', 25, 850, 850, 9, 31, 24, '火', 2, 1205231707, NULL, 0, NULL, 0),
(9, '罗达蛙', 'm9.gif', 27, 900, 900, 10, 34, 26, '水', 2, 1206348559, NULL, 0, NULL, 0),
(10, '蝙蝠', 'm10.gif', 29, 0, 950, 11, 37, 28, '暗', 2, 1206599387, NULL, 0, NULL, 0),
(11, '蜂兵', 'm11.gif', 31, 0, 1000, 12, 40, 30, '木', 2, 1205231751, NULL, 0, NULL, 0),
(12, '沙漠幼狼', 'm12.gif', 33, 0, 1100, 13, 43, 32, '土', 2, 1205231985, NULL, 0, NULL, 0),
(13, '蘑菇', 'm13.gif', 35, 0, 1200, 14, 46, 34, '木', 2, 1205724986, NULL, 0, NULL, 0),
(14, '摇滚蝗虫', 'm14.gif', 37, 0, 1300, 15, 49, 36, '金', 2, 1205005059, NULL, 0, NULL, 0),
(15, '蛙王', 'm15.gif', 39, 5000, 5000, 25, 52, 100, '水', 2, 1205231951, NULL, 0, NULL, 0),
(16, '狼', 'm16.gif', 41, 0, 1400, 17, 55, 40, '火', 2, 1204870181, NULL, 0, NULL, 0),
(17, '蜗牛', 'm17.gif', 43, 1411, 1500, 18, 58, 42, '水', 2, 1205301359, NULL, 0, NULL, 0),
(18, '大嘴鸟', 'm18.gif', 45, 0, 1600, 20, 61, 44, '火', 2, 1206599401, NULL, 0, NULL, 0),
(19, '海葵', 'm19.gif', 47, 0, 1700, 22, 64, 46, '水', 2, 1205725188, NULL, 0, NULL, 0),
(20, '腐尸', 'm20.gif', 49, 0, 1800, 23, 67, 48, '暗', 2, 1205231763, NULL, 0, NULL, 0),
(21, '青蛇', 'm21.gif', 51, 3800, 3800, 25, 70, 50, '木', 3, 1204542257, NULL, 0, NULL, 0),
(22, '克瑞米', 'm22.gif', 53, 0, 4000, 27, 73, 52, '光', 3, 1205096211, NULL, 0, NULL, 0),
(23, '松鼠', 'm23.gif', 55, 0, 4400, 29, 76, 54, '土', 3, 1205095778, NULL, 0, NULL, 0),
(24, '幽灵波利', 'm24.gif', 57, 0, 30000, 100, 150, 200, '暗', 3, 1205096265, NULL, 0, NULL, 0),
(25, '锹形虫', 'm25.gif', 59, 0, 4800, 31, 79, 56, '木', 3, 1205096216, NULL, 0, NULL, 0),
(26, '狸猫', 'm26.gif', 61, 0, 5200, 33, 82, 58, '木', 3, 1205095826, NULL, 0, NULL, 0),
(27, '溜溜猴', 'm27.gif', 63, 5600, 5600, 35, 85, 60, '火', 3, 1205006227, NULL, 0, NULL, 0),
(28, '螃蟹', 'm28.gif', 65, 5995, 6000, 37, 88, 62, '水', 3, 1207374649, NULL, 0, NULL, 0),
(29, '天使波利', 'm29.gif', 67, 0, 30000, 100, 200, 150, '光', 3, 1205095868, NULL, 0, NULL, 0),
(30, '长老树精', 'm30.gif', 67, 0, 6400, 39, 91, 64, '火', 3, 1205095786, NULL, 0, NULL, 0),
(31, '水母', 'm31.gif', 71, 7200, 7200, 42, 94, 66, '水', 3, 1205006011, NULL, 0, NULL, 0),
(32, '黄蛇', 'm32.gif', 73, 0, 8000, 44, 97, 68, '土', 3, 1205095794, NULL, 0, NULL, 0),
(33, '卡那多斯', 'm33.gif', 75, 0, 8800, 47, 100, 70, '金', 3, 1205094867, NULL, 0, NULL, 0),
(34, '红蝙蝠', 'm34.gif', 77, 0, 9600, 49, 103, 72, '火', 3, 1205094840, NULL, 0, NULL, 0),
(35, '兽人战士', 'm35.gif', 79, 0, 10400, 52, 106, 74, '木', 3, 1205006070, NULL, 0, NULL, 0),
(36, '转转蛋', 'm36.gif', 81, 0, 8600, 54, 109, 76, '火', 3, 1205095732, NULL, 0, NULL, 0),
(37, '蝎子', 'm37.gif', 83, 9000, 9000, 57, 112, 78, '火', 3, 1207374632, NULL, 0, NULL, 0),
(38, '狼王', 'm38.gif', 85, 0, 20000, 70, 115, 100, '火', 3, 1205096286, NULL, 0, NULL, 0),
(39, '大脚熊', 'm39.gif', 87, 9400, 9400, 59, 118, 80, '木', 3, 1205007433, NULL, 0, NULL, 0),
(40, '邪骸士兵', 'm40.gif', 89, 0, 9800, 62, 121, 82, '暗', 3, 1205096206, NULL, 0, NULL, 0),
(41, '伞蜥', 'm41.gif', 91, 0, 10200, 65, 124, 84, '土', 4, 1205096495, NULL, 0, NULL, 0),
(42, '僵尸', 'm42.gif', 93, 0, 10600, 68, 127, 86, '土', 4, 1204543104, NULL, 0, NULL, 0),
(43, '邪骸弓箭手', 'm43.gif', 95, 0, 11000, 71, 130, 88, '暗', 4, 1205096440, NULL, 0, NULL, 0),
(44, '乌贼', 'm44.gif', 97, 0, 11400, 74, 133, 90, '水', 4, 1204870580, NULL, 0, NULL, 0),
(45, '人鱼', 'm45.gif', 99, 0, 11800, 77, 136, 92, '水', 4, 1204870629, NULL, 0, NULL, 0),
(46, '鬼女', 'm46.gif', 101, 0, 9200, 80, 139, 94, '火', 4, 1204870610, NULL, 0, NULL, 0),
(47, '土人', 'm47.gif', 103, 0, 9600, 83, 142, 106, '土', 4, 1204870524, NULL, 0, NULL, 0),
(48, '白幽灵', 'm48.gif', 105, 10000, 10000, 86, 145, 108, '暗', 4, 1204549147, NULL, 0, NULL, 0),
(49, '马克', 'm49.gif', 107, 0, 10500, 89, 148, 110, '水', 4, 1204548462, NULL, 0, NULL, 0),
(50, '木乃伊', 'm50.gif', 109, 0, 11000, 92, 151, 112, '暗', 4, 1205096929, NULL, 0, NULL, 0),
(51, '南瓜先生', 'm51.gif', 111, 0, 11500, 95, 200, 150, '土', 4, 1205096893, NULL, 0, NULL, 0),
(52, '木乃伊犬', 'm52.gif', 113, 0, 12000, 98, 210, 160, '暗', 4, 1205096924, NULL, 0, NULL, 0),
(53, '绿腐尸', 'm53.gif', 115, 0, 12500, 102, 220, 180, '土', 4, 1204870563, NULL, 0, NULL, 0),
(54, '毕帝特地龙', 'm54.gif', 117, 0, 13000, 105, 230, 190, '土', 4, 1204544641, NULL, 0, NULL, 0),
(55, '艾吉欧蜈蚣', 'm55.gif', 119, 0, 13500, 109, 240, 200, '土', 4, 1205096473, NULL, 0, NULL, 0),
(56, '傀儡娃娃', 'm56.gif', 121, 0, 14000, 112, 250, 210, '木', 4, 1205096851, NULL, 0, NULL, 0),
(57, '蛇女伊丝', 'm57.gif', 123, 0, 14500, 116, 260, 220, '火', 4, 1204544214, NULL, 0, NULL, 0),
(58, '黑蛇', 'm58.gif', 125, 0, 15000, 119, 270, 230, '土', 4, 1204870516, NULL, 0, NULL, 0),
(59, '巫婆', 'm59.gif', 127, 0, 15500, 123, 280, 240, '金', 4, 1205096900, NULL, 0, NULL, 0),
(60, '毕帝特飞龙', 'm60.gif', 129, 0, 16000, 126, 290, 250, '光', 4, 1205096938, NULL, 0, NULL, 0),
(61, '小恶魔', 'm61.gif', 131, 0, 17000, 130, 300, 260, '暗', 5, 1204434926, NULL, 0, NULL, 0),
(62, '皮里恩', 'm62.gif', 133, 20000, 20000, 350, 1000, 800, '火', 5, 1183579443, NULL, 0, NULL, 0),
(63, '虎王', 'm63.gif', 135, 40000, 40000, 400, 1100, 850, '金', 5, 1183579947, NULL, 0, NULL, 0),
(64, '狄奥斯', 'm64.gif', 137, 12296, 35000, 350, 1000, 800, '金', 5, 1204324126, NULL, 0, NULL, 0),
(65, '梦魇', 'm65.gif', 139, 40000, 40000, 200, 700, 500, '火', 5, 1204325369, NULL, 0, NULL, 0),
(66, '小巴风特', 'm66.gif', 141, 23000, 23000, 250, 800, 600, '水', 5, 1204325361, NULL, 0, NULL, 0),
(67, '黄金虫', 'm67.gif', 143, 11000, 11000, 350, 1000, 800, '金', 5, 1183580016, NULL, 0, NULL, 0),
(68, '月夜猫', 'm68.gif', 145, 37000, 37000, 400, 1100, 850, '土', 5, 1183580114, NULL, 0, NULL, 0),
(69, '九尾狐', 'm69.gif', 147, 50000, 50000, 250, 800, 600, '火', 5, 1183578355, NULL, 0, NULL, 0),
(70, '蜂后', 'm70.gif', 149, 90000, 90000, 450, 1200, 1000, '木', 5, 1204325354, NULL, 0, NULL, 0),
(71, '幽灵剑士', 'm71.gif', 151, 60000, 60000, 300, 900, 700, '暗', 5, 1183579321, NULL, 0, NULL, 0),
(72, '海盗之王', 'm72.gif', 153, 80000, 80000, 400, 1100, 850, '水', 5, 1203909002, NULL, 0, NULL, 0),
(73, '裘卡', 'm73.gif', 155, 50000, 50000, 250, 800, 600, '木', 5, 1183578594, NULL, 0, NULL, 0),
(74, '神官', 'm74.gif', 157, 40000, 40000, 200, 700, 500, '火', 5, 1203953956, NULL, 0, NULL, 0),
(75, '死灵', 'm75.gif', 159, 90000, 90000, 450, 1200, 950, '暗', 5, 1183574648, NULL, 0, NULL, 0),
(76, '兽人英雄', 'm76.gif', 161, 90000, 90000, 450, 1200, 950, '土', 5, 1183567579, NULL, 0, NULL, 0),
(77, '腾讯企鹅', 'm77.gif', 161, 60000, 60000, 300, 900, 700, '水', 5, 1203704733, NULL, 0, NULL, 0),
(78, '欧几里斯', 'm78.gif', 165, 90000, 90000, 450, 1200, 950, '火', 5, 1183574645, NULL, 0, NULL, 0),
(79, '巴风特', 'm79.gif', 167, 32710, 43000, 400, 1100, 900, '火', 5, 1204261626, NULL, 0, NULL, 0),
(80, '凯美拉', 'm80.gif', 169, 50000, 50000, 600, 1500, 1300, '金', 5, 1204324114, NULL, 0, NULL, 0),
(81, '战神-天空', 'm81.gif', 250, 300000, 300000, 10000, 2000, 1700, '金', 5, 1206730730, NULL, 0, NULL, 0),
(82, '安达利尔', 'boss1.gif', 370, 55000, 55000, 550, 1800, 730, '暗', 6, 1203712967, NULL, 0, NULL, 0),
(83, '墨菲斯托', 'boss2.gif', 300, 42498, 63000, 770, 1013, 1302, '光', 6, 1203821200, NULL, 0, NULL, 0),
(84, '伊祖尔', 'boss3.gif', 320, 70000, 70000, 970, 1942, 1377, '土', 6, 1203846511, NULL, 0, NULL, 0),
(85, '破坏神', 'boss4.gif', 400, 99999, 99999, 1999, 4377, 3545, '火', 6, 1203712943, NULL, 0, NULL, 0),
(86, '加兹', 'boss5.gif', 330, 75000, 75000, 800, 1200, 1000, '火', 6, 1204548188, NULL, 0, NULL, 0),
(87, '伊伍兹', 'boss6.gif', 340, 63950, 80000, 950, 1000, 1500, '火', 6, 1204548247, NULL, 0, NULL, 0),
(88, '大米', 'boss7.gif', 350, 238363, 900000, 12000, 4600, 3500, '火', 6, 1204871071, NULL, 0, NULL, 0),
(89, '塔里克', 'm89.gif', 500, 0, 200000, 15000, 4500, 5000, '土', 7, 1203713897, NULL, 0, NULL, 0),
(90, '科里克', 'm90.gif', 500, 0, 230000, 16000, 4500, 4300, '土', 7, 1203714189, NULL, 0, NULL, 0),
(91, '马达乌斯', 'm91.gif', 500, 0, 250000, 18000, 4800, 4300, '土', 7, 1203714225, NULL, 0, NULL, 0),
(92, '恶魔精灵', 'm92.gif', 450, 120000, 120000, 12200, 3750, 3600, '火', 7, 1203714208, NULL, 0, NULL, 0),
(93, '邪恶女巫', 'm93.gif', 475, 97000, 97000, 9800, 3500, 3850, '暗', 7, 1203714195, NULL, 0, NULL, 0),
(94, '寒冰恐惧者', 'm94.gif', 450, 90000, 90000, 9500, 3600, 3600, '水', 7, 1203711920, NULL, 0, NULL, 0),
(95, '血腥之王', 'm95.gif', 545, 0, 81000, 8350, 3450, 3200, '暗', 8, 1204602618, NULL, 0, NULL, 0),
(96, '死亡拳手', 'm96.gif', 560, 205000, 205000, 9650, 3320, 3450, '木', 8, 1204602365, NULL, 0, NULL, 0),
(97, '杜里尔', 'm97.gif', 550, 0, 320000, 30000, 5000, 5300, '金', 8, 1204602665, NULL, 0, NULL, 0),
(98, '秤砣', 'm98.gif', 600, 450000, 450000, 20000, 6000, 6000, '暗', 8, 1204602657, '', 0, '', 0),
(99, '绿绵虫A', 'm2.gif', 1, 23, 23, 4, 5, 6, '土', 1, 1206710078, NULL, 0, NULL, 0),
(100, '绿绵虫B', 'm2.gif', 1, 0, 21, 4, 5, 6, '土', 1, 1209133996, '你是谁，咱从来没见过你啊？', 1000, '', 10),
(101, '绿绵虫C', 'm2.gif', 1, 24, 24, 4, 7, 6, '土', 1, 1209134508, NULL, 0, NULL, 0),
(102, '绿绵虫D', 'm2.gif', 1, 0, 25, 4, 8, 3, '土', 1, 1209134147, NULL, 0, NULL, 0),
(103, '绿绵虫E', 'm2.gif', 1, 0, 26, 4, 5, 8, '土', 1, 1206688791, NULL, 0, NULL, 0),
(104, '绿绵虫F', 'm2.gif', 1, 27, 27, 4, 2, 6, '土', 1, 1207374216, '妈妈叫我不要告诉别人，我身上带了888块宠物币', 888, '', 10),
(105, '绿绵虫G', 'm2.gif', 1, 0, 28, 4, 5, 8, '土', 1, 1209134029, NULL, 0, NULL, 0),
(106, '绿绵虫H', 'm2.gif', 1, 0, 29, 4, 5, 6, '土', 1, 1209134498, NULL, 0, NULL, 0),
(107, '绿绵虫I', 'm2.gif', 1, 0, 19, 4, 5, 6, '土', 1, 1209134150, NULL, 0, NULL, 0),
(108, '绿绵虫J', 'm2.gif', 1, 0, 20, 4, 5, 6, '土', 1, 1206709954, NULL, 0, NULL, 0),
(109, '波利', 'm1.gif', 11, 0, 500, 2, 10, 10, '土', 2, 1205231668, NULL, 0, NULL, 0),
(110, '绿棉虫', 'm2.gif', 13, 0, 550, 3, 13, 12, '土', 2, 1205724929, NULL, 0, NULL, 0),
(111, '小鸡', 'm3.gif', 15, 600, 600, 4, 16, 14, '火', 2, 1205005079, NULL, 0, NULL, 0),
(112, '疯兔', 'm4.gif', 17, 0, 650, 5, 19, 16, '木', 2, 1205231672, NULL, 0, NULL, 0),
(113, '圣诞波利', 'm5.gif', 19, 0, 700, 6, 22, 18, '光', 2, 1205231694, NULL, 0, NULL, 0),
(114, '树精', 'm6.gif', 21, 0, 750, 7, 25, 20, '木', 2, 1206599409, NULL, 0, NULL, 0),
(115, '苍蝇', 'm7.gif', 23, 664, 800, 8, 28, 22, '水', 2, 1209134059, NULL, 0, NULL, 0),
(116, '秃鹰', 'm8.gif', 25, 850, 850, 9, 31, 24, '火', 2, 1209134062, NULL, 0, NULL, 0),
(117, '罗达蛙', 'm9.gif', 27, 0, 900, 10, 34, 26, '水', 2, 1205231972, NULL, 0, NULL, 0),
(118, '蝙蝠', 'm10.gif', 29, 950, 950, 11, 37, 28, '金', 2, 1206347487, NULL, 0, NULL, 0),
(119, '蜂兵', 'm11.gif', 31, 0, 1000, 12, 40, 30, '木', 2, 1206504576, NULL, 0, NULL, 0),
(120, '沙漠幼狼', 'm12.gif', 33, 0, 1100, 13, 43, 32, '土', 2, 1205231965, NULL, 0, NULL, 0),
(121, '蘑菇', 'm13.gif', 35, 1200, 1200, 14, 46, 34, '木', 2, 1205231779, NULL, 0, NULL, 0),
(122, '摇滚蝗虫', 'm14.gif', 37, 0, 1300, 15, 49, 36, '金', 2, 1205725277, NULL, 0, NULL, 0),
(123, '蛙王', 'm15.gif', 39, 0, 5000, 25, 52, 100, '水', 2, 1205725259, NULL, 0, NULL, 0),
(124, '狼', 'm16.gif', 41, 0, 1400, 17, 55, 40, '火', 2, 1205231683, NULL, 0, NULL, 0),
(125, '蜗牛', 'm17.gif', 43, 1500, 1500, 18, 58, 42, '水', 2, 1206515250, NULL, 0, NULL, 0),
(126, '大嘴鸟', 'm18.gif', 45, 0, 1600, 20, 61, 44, '火', 2, 1206515245, NULL, 0, NULL, 0),
(127, '海葵', 'm19.gif', 47, 0, 1700, 22, 64, 46, '水', 2, 1205725222, NULL, 0, NULL, 0),
(128, '腐尸', 'm20.gif', 49, 0, 1800, 23, 67, 48, '土', 2, 1205231787, NULL, 0, NULL, 0),
(129, '青蛇', 'm21.gif', 51, 0, 3800, 25, 70, 50, '木', 3, 1205006032, NULL, 0, NULL, 0),
(130, '克瑞米', 'm22.gif', 53, 0, 4000, 27, 73, 52, '光', 3, 1204542278, NULL, 0, NULL, 0),
(131, '松鼠', 'm23.gif', 55, 0, 4400, 29, 76, 54, '土', 3, 1205096310, NULL, 0, NULL, 0),
(132, '幽灵波利', 'm24.gif', 57, 0, 30000, 100, 150, 200, '暗', 3, 1205096411, NULL, 0, NULL, 0),
(133, '锹形虫', 'm25.gif', 59, 4800, 4800, 31, 79, 56, '木', 3, 1206515228, NULL, 0, NULL, 0),
(134, '狸猫', 'm26.gif', 61, 0, 5200, 33, 82, 58, '木', 3, 1205095819, NULL, 0, NULL, 0),
(135, '溜溜猴', 'm27.gif', 63, 0, 5600, 35, 85, 60, '火', 3, 1205096227, NULL, 0, NULL, 0),
(136, '螃蟹', 'm28.gif', 65, 0, 6000, 37, 88, 62, '水', 3, 1205096306, NULL, 0, NULL, 0),
(137, '天使波利', 'm29.gif', 67, 0, 30000, 100, 200, 150, '光', 3, 1205096301, NULL, 0, NULL, 0),
(138, '长老树精', 'm30.gif', 67, 6400, 6400, 39, 91, 64, '火', 3, 1204188928, NULL, 0, NULL, 0),
(139, '水母', 'm31.gif', 71, 7200, 7200, 42, 94, 66, '水', 3, 1205095808, NULL, 0, NULL, 0),
(140, '黄蛇', 'm32.gif', 73, 0, 8000, 44, 97, 68, '土', 3, 1205096235, NULL, 0, NULL, 0),
(141, '卡那多斯', 'm33.gif', 75, 0, 8800, 47, 100, 70, '金', 3, 1205007673, NULL, 0, NULL, 0),
(142, '红蝙蝠', 'm34.gif', 77, 0, 9600, 49, 103, 72, '火', 3, 1205095742, NULL, 0, NULL, 0),
(143, '兽人战士', 'm35.gif', 79, 0, 10400, 52, 106, 74, '木', 3, 1205096199, NULL, 0, NULL, 0),
(144, '转转蛋', 'm36.gif', 81, 0, 8600, 54, 109, 76, '火', 3, 1205096342, NULL, 0, NULL, 0),
(145, '蝎子', 'm37.gif', 83, 0, 9000, 57, 112, 78, '火', 3, 1205094980, NULL, 0, NULL, 0),
(146, '狼王', 'm38.gif', 85, 0, 20000, 70, 115, 100, '火', 3, 1205096334, NULL, 0, NULL, 0),
(147, '大脚熊', 'm39.gif', 87, 0, 9400, 59, 118, 80, '木', 3, 1205096320, NULL, 0, NULL, 0),
(148, '邪骸士兵', 'm40.gif', 89, 9800, 9800, 62, 121, 82, '暗', 3, 1204323673, NULL, 0, NULL, 0),
(149, '伞蜥', 'm41.gif', 91, 0, 10200, 65, 124, 84, '土', 4, 1204548297, NULL, 0, NULL, 0),
(150, '僵尸', 'm42.gif', 93, 0, 10600, 68, 127, 86, '土', 4, 1205096449, NULL, 0, NULL, 0),
(151, '邪骸弓箭手', 'm43.gif', 95, 0, 11000, 71, 130, 88, '暗', 4, 1205096507, NULL, 0, NULL, 0),
(152, '乌贼', 'm44.gif', 97, 0, 11400, 74, 133, 90, '水', 4, 1204870545, NULL, 0, NULL, 0),
(153, '人鱼', 'm45.gif', 99, 0, 11800, 77, 136, 92, '水', 4, 1204548333, NULL, 0, NULL, 0),
(154, '鬼女', 'm46.gif', 101, 0, 9200, 80, 139, 94, '火', 4, 1205096879, NULL, 0, NULL, 0),
(155, '土人', 'm47.gif', 103, 0, 9600, 83, 142, 106, '土', 4, 1204870589, NULL, 0, NULL, 0),
(156, '白幽灵', 'm48.gif', 105, 0, 10000, 86, 145, 108, '暗', 4, 1205096918, NULL, 0, NULL, 0),
(157, '马克', 'm49.gif', 107, 10500, 10500, 89, 148, 110, '水', 4, 1204870538, NULL, 0, NULL, 0),
(158, '木乃伊', 'm50.gif', 109, 0, 11000, 92, 151, 112, '暗', 4, 1205096841, NULL, 0, NULL, 0),
(159, '南瓜先生', 'm51.gif', 111, 0, 11500, 95, 200, 150, '土', 4, 1205096913, NULL, 0, NULL, 0),
(160, '木乃伊犬', 'm52.gif', 113, 0, 12000, 98, 210, 160, '暗', 4, 1205096836, NULL, 0, NULL, 0),
(161, '绿腐尸', 'm53.gif', 115, 0, 12500, 102, 220, 180, '土', 4, 1204549342, NULL, 0, NULL, 0),
(162, '毕帝特地龙', 'm54.gif', 117, 0, 13000, 105, 230, 190, '土', 4, 1205096859, NULL, 0, NULL, 0),
(163, '艾吉欧蜈蚣', 'm55.gif', 119, 0, 13500, 109, 240, 200, '土', 4, 1204548398, NULL, 0, NULL, 0),
(164, '傀儡娃娃', 'm56.gif', 121, 0, 14000, 112, 250, 210, '木', 4, 1204544022, NULL, 0, NULL, 0),
(165, '蛇女伊丝', 'm57.gif', 123, 0, 14500, 116, 260, 220, '火', 4, 1205096828, NULL, 0, NULL, 0),
(166, '黑蛇', 'm58.gif', 125, 0, 15000, 119, 270, 230, '土', 4, 1205096908, NULL, 0, NULL, 0),
(167, '巫婆', 'm59.gif', 127, 0, 15500, 123, 280, 240, '金', 4, 1204549336, NULL, 0, NULL, 0),
(168, '毕帝特飞龙', 'm60.gif', 129, 16000, 16000, 126, 290, 250, '光', 4, 1205096887, NULL, 0, NULL, 0),
(169, '小恶魔', 'm61.gif', 131, 12618, 17000, 130, 300, 260, '暗', 5, 1204259861, NULL, 0, NULL, 0),
(170, '皮里恩', 'm62.gif', 133, 20000, 20000, 350, 1000, 800, '火', 5, 1203908959, NULL, 0, NULL, 0),
(171, '虎王', 'm63.gif', 135, 40000, 40000, 400, 1100, 850, '金', 5, 1183579861, NULL, 0, NULL, 0),
(172, '狄奥斯', 'm64.gif', 137, 35000, 35000, 350, 1000, 800, '金', 5, 1204325382, NULL, 0, NULL, 0),
(173, '梦魇', 'm65.gif', 139, 40000, 40000, 200, 700, 500, '火', 5, 1204325315, NULL, 0, NULL, 0),
(174, '小巴风特', 'm66.gif', 141, 23000, 23000, 250, 800, 600, '水', 5, 1183580124, NULL, 0, NULL, 0),
(175, '黄金虫', 'm67.gif', 143, 11000, 11000, 350, 1000, 800, '金', 5, 1204325325, NULL, 0, NULL, 0),
(176, '月夜猫', 'm68.gif', 145, 37000, 37000, 400, 1100, 850, '土', 5, 1183579756, NULL, 0, NULL, 0),
(177, '九尾狐', 'm69.gif', 147, 0, 50000, 250, 800, 600, '火', 5, 1204544728, NULL, 0, NULL, 0),
(178, '蜂后', 'm70.gif', 149, 90000, 90000, 450, 1200, 1000, '木', 5, 1183574687, NULL, 0, NULL, 0),
(179, '幽灵剑士', 'm71.gif', 151, 51712, 60000, 300, 900, 700, '暗', 5, 1183578137, NULL, 0, NULL, 0),
(180, '海盗之王', 'm72.gif', 153, 79985, 80000, 400, 1100, 850, '水', 5, 1204543471, NULL, 0, NULL, 0),
(181, '裘卡', 'm73.gif', 155, 50000, 50000, 250, 800, 600, '木', 5, 1183574601, NULL, 0, NULL, 0),
(182, '神官', 'm74.gif', 157, 0, 40000, 200, 700, 500, '暗', 5, 1204547989, NULL, 0, NULL, 0),
(183, '死灵', 'm75.gif', 159, 90000, 90000, 450, 1200, 950, '暗', 5, 1183574698, NULL, 0, NULL, 0),
(184, '兽人英雄', 'm76.gif', 161, 90000, 90000, 450, 1200, 950, '土', 5, 1203908924, NULL, 0, NULL, 0),
(185, '腾讯企鹅', 'm77.gif', 161, 60000, 60000, 300, 900, 700, '水', 5, 1204324673, NULL, 0, NULL, 0),
(186, '欧几里斯', 'm78.gif', 165, 88721, 90000, 450, 1200, 950, '火', 5, 1203945178, NULL, 0, NULL, 0),
(187, '巴风特', 'm79.gif', 167, 8170, 43000, 400, 1100, 900, '火', 5, 1204325393, NULL, 0, NULL, 0),
(188, '凯美拉', 'm80.gif', 169, 50000, 50000, 600, 1500, 1300, '金', 5, 1183580034, NULL, 0, NULL, 0),
(189, '战神-天空', 'm81.gif', 250, 208580, 300000, 10000, 2000, 1700, '光', 5, 1204435011, NULL, 0, NULL, 0),
(190, '安达利尔', 'boss1.gif', 370, 55000, 55000, 550, 1800, 730, '暗', 6, 1203713026, NULL, 0, NULL, 0),
(191, '墨菲斯托', 'boss2.gif', 300, 63000, 63000, 770, 1013, 1302, '金', 6, 1203713004, NULL, 0, NULL, 0),
(192, '伊祖尔', 'boss3.gif', 320, 70000, 70000, 970, 1942, 1377, '土', 6, 1203712970, NULL, 0, NULL, 0),
(193, '破坏神', 'boss4.gif', 400, 99999, 99999, 1999, 4377, 3545, '火', 6, 1203712973, NULL, 0, NULL, 0),
(194, '加兹', 'boss5.gif', 330, 74995, 75000, 1800, 1200, 1000, '火', 6, 1204460820, NULL, 0, NULL, 0),
(195, '伊伍兹', 'boss6.gif', 340, 80000, 80000, 1850, 1000, 1500, '火', 6, 1203912297, NULL, 0, NULL, 0),
(196, '大米', 'boss7.gif', 350, 0, 150000, 9000, 4600, 3500, '火', 6, 1204871024, NULL, 0, NULL, 0),
(197, '塔里克', 'm89.gif', 500, 134293, 200000, 15000, 4500, 5000, '土', 7, 1203714229, NULL, 0, NULL, 0),
(198, '科里克', 'm90.gif', 500, 0, 230000, 16000, 4500, 4300, '土', 7, 1203713979, NULL, 0, NULL, 0),
(199, '马达乌斯', 'm91.gif', 500, 250000, 250000, 18000, 4800, 4300, '土', 7, 1203714010, NULL, 0, NULL, 0),
(200, '恶魔精灵', 'm92.gif', 450, 0, 120000, 9200, 3750, 3600, '火', 7, 1203714134, NULL, 0, NULL, 0),
(201, '邪恶女巫', 'm93.gif', 475, 97000, 97000, 8800, 3500, 3850, '暗', 7, 1203714141, NULL, 0, NULL, 0),
(202, '寒冰恐惧者', 'm94.gif', 450, 0, 90000, 8500, 3600, 3600, '水', 7, 1203714114, NULL, 0, NULL, 0),
(203, '血腥之王', 'm95.gif', 545, 0, 81000, 5350, 3450, 3200, '暗', 8, 1204602635, NULL, 0, NULL, 0),
(204, '死亡拳手', 'm96.gif', 560, 0, 205000, 10650, 3320, 3450, '木', 8, 1204602589, NULL, 0, NULL, 0),
(205, '杜里尔', 'm97.gif', 550, 0, 320000, 40000, 5000, 5300, '金', 8, 1204602670, NULL, 0, NULL, 0),
(206, '秤砣', 'm98.gif', 600, 0, 450000, 60000, 6000, 6000, '暗', 8, 1204602574, '', 0, '', 10),
(207, '绿绵虫A', 'm2.gif', 1, 23, 23, 3, 5, 6, '土', 1, 1208870618, NULL, 0, NULL, 0),
(208, '绿绵虫B', 'm2.gif', 1, 21, 21, 3, 5, 6, '土', 1, 1207374302, NULL, 0, NULL, 0),
(209, '绿绵虫C', 'm2.gif', 1, 0, 24, 3, 7, 6, '土', 1, 1209134034, NULL, 0, NULL, 0),
(210, '绿绵虫D', 'm2.gif', 1, 0, 25, 3, 8, 3, '土', 1, 1209134501, NULL, 0, NULL, 0),
(211, '绿绵虫E', 'm2.gif', 1, 0, 26, 3, 5, 8, '土', 1, 1208870658, NULL, 0, NULL, 0),
(212, '绿绵虫F', 'm2.gif', 1, 0, 27, 3, 2, 6, '土', 1, 1206688797, NULL, 0, NULL, 0),
(213, '绿绵虫G', 'm2.gif', 1, 0, 28, 3, 5, 8, '土', 1, 1209133998, NULL, 0, NULL, 0),
(214, '绿绵虫H', 'm2.gif', 1, 29, 29, 3, 5, 6, '土', 1, 1207374608, NULL, 0, NULL, 0),
(215, '绿绵虫I', 'm2.gif', 1, 0, 19, 3, 5, 6, '土', 1, 1206709971, NULL, 0, NULL, 0),
(216, '绿绵虫J', 'm2.gif', 1, 0, 20, 3, 5, 6, '土', 1, 1209134503, NULL, 0, NULL, 0),
(217, '论坛巡检', 'police.gif', 9999, 6869384, 9999999, 1, 999999, 999999, '光', 0, 1209134156, '休息一会吧，到论坛上看看帖子，点点广告，^_^', 0, '', 0),
(1032, '妙玉', 'hlyg/miaoy.jpg', 1984, 0, 20000000, 2111111, 228888, 208888, '土', 15, 0, '\r\n', 0, '', 0),
(1031, '李纨', 'hlyg/liw.jpg', 1983, 0, 22222222, 2222222, 120000, 300000, '火', 15, 0, '\r\n', 0, '', 0),
(1030, '可卿', 'hlyg/keq.jpg', 1982, 0, 22000000, 1999999, 88888, 333333, '水', 15, 0, '\r\n', 0, '', 0),
(1029, '黛玉', 'hlyg/daiy.jpg', 1981, 0, 21870000, 1888888, 333333, 88888, '木', 15, 0, '\r\n', 0, '', 0),
(224, '鬼火', 'm307.gif', 710, 0, 990000, 55000, 6000, 6200, '光', 10, 1183577594, NULL, 0, NULL, 0),
(225, '老妖猴', 'm308.gif', 750, 0, 650000, 30000, 6000, 6700, '木', 10, 1183577725, NULL, 0, NULL, 0),
(226, '梦幻之犬', 'm309.gif', 770, 850000, 850000, 40000, 7000, 6000, '土', 10, 1183577010, NULL, 0, NULL, 0),
(227, '梦幻岛主', 'm310.gif', 780, 0, 1450000, 60000, 8000, 8000, '暗', 10, 1183577120, NULL, 0, NULL, 0),
(228, 'Karen', 'm311.gif', 755, 0, 905000, 52000, 8000, 8000, '火', 10, 1183577558, NULL, 0, NULL, 0),
(229, '大J', 'm312.gif', 760, 0, 2050000, 60000, 9000, 4500, '光', 10, 1183576609, NULL, 0, NULL, 0),
(230, '温柔', 'm313.gif', 750, 0, 750000, 46000, 5600, 7500, '暗', 10, 1183577547, NULL, 0, NULL, 0),
(231, 'Patiker', 'm314.gif', 740, 860000, 860000, 53000, 7600, 6700, '土', 10, 1183576538, NULL, 0, NULL, 0),
(232, '恶贯满盈', 'm315.gif', 780, 0, 670000, 45000, 6000, 5000, '木', 10, 1183577039, NULL, 0, NULL, 0),
(233, '无名', 'm316.gif', 750, 0, 450000, 25000, 4500, 5000, '水', 10, 1183577599, NULL, 0, NULL, 0),
(234, 'Peda', 'm317.gif', 820, 0, 950000, 45000, 5000, 5000, '暗', 11, 1204599997, NULL, 0, NULL, 0),
(235, 'Hakal', 'm318.gif', 830, 0, 850000, 40000, 6500, 6200, '光', 11, 1204599905, NULL, 0, NULL, 0),
(236, 'Garay', 'm319.gif', 830, 0, 800000, 35000, 4000, 4500, '土', 11, 1204602429, NULL, 0, NULL, 0),
(237, 'Ladel', 'm320.gif', 850, 450000, 450000, 20000, 4300, 5200, '水', 11, 1204600346, NULL, 0, NULL, 0),
(238, 'Tual', 'm321.gif', 850, 0, 1050000, 48000, 5500, 6000, '金', 11, 1204599884, NULL, 0, NULL, 0),
(239, 'Matil', 'm322.gif', 870, 0, 750000, 44000, 5000, 6000, '暗', 11, 1204602488, NULL, 0, NULL, 0),
(240, 'Kaleway', 'm323.gif', 810, 0, 990000, 55000, 6000, 6200, '光', 11, 1204602458, NULL, 0, NULL, 0),
(241, 'Olami', 'm324.gif', 850, 0, 650000, 30000, 6000, 6700, '木', 11, 1204600402, NULL, 0, NULL, 0),
(242, 'Rupi', 'm325.gif', 870, 250680, 850000, 40000, 7000, 6000, '土', 11, 1204600427, NULL, 0, NULL, 0),
(243, 'Sala', 'm326.gif', 910, 0, 1450000, 60000, 8000, 8000, '暗', 12, 1183579914, NULL, 0, NULL, 0),
(244, 'Neken', 'm327.gif', 905, 0, 905000, 52000, 8000, 8000, '火', 12, 1183580134, NULL, 0, NULL, 0),
(245, 'Zufay', 'm328.gif', 950, 0, 2050000, 60000, 9000, 4500, '光', 12, 1183580015, NULL, 0, NULL, 0),
(246, 'Adefy', 'm329.gif', 950, 0, 750000, 46000, 5600, 7500, '暗', 12, 1183579672, NULL, 0, NULL, 0),
(247, 'Badbug', 'm330.gif', 960, 0, 860000, 53000, 7600, 6700, '土', 12, 1183579733, NULL, 0, NULL, 0),
(248, 'Dally', 'm331.gif', 970, 0, 670000, 45000, 6000, 5000, '木', 12, 1183580122, NULL, 0, NULL, 0),
(249, 'Yamaha', 'm332.gif', 990, 0, 860000, 53000, 7600, 6700, '水', 12, 1183580129, NULL, 0, NULL, 0),
(250, 'Jinzhu', 'm333.gif', 980, 0, 670000, 45000, 6000, 5000, '木', 12, 1183579887, NULL, 0, NULL, 0),
(251, 'Wudi', 'm334.gif', 950, 0, 450000, 25000, 4500, 5000, '水', 12, 1183579969, NULL, 0, NULL, 0),
(252, '安达利尔', 'boss1.gif', 370, 54043, 55000, 550, 1800, 730, '暗', 6, 1203841058, NULL, 0, NULL, 0),
(253, '墨菲斯托', 'boss2.gif', 300, 63000, 63000, 770, 1013, 1302, '金', 6, 1203712961, NULL, 0, NULL, 0),
(254, '伊祖尔', 'boss3.gif', 320, 70000, 70000, 970, 1942, 1377, '土', 6, 1203757176, NULL, 0, NULL, 0),
(255, '破坏神', 'boss4.gif', 400, 99999, 99999, 1999, 4377, 3545, '火', 6, 1203757096, NULL, 0, NULL, 0),
(256, '加兹', 'boss5.gif', 330, 74002, 75000, 1800, 1200, 1000, '火', 6, 1204020827, NULL, 0, NULL, 0),
(257, '伊伍兹', 'boss6.gif', 340, 80000, 80000, 1850, 1000, 1500, '火', 6, 1204127382, NULL, 0, NULL, 0),
(258, '大米', 'boss7.gif', 350, 0, 150000, 9000, 4600, 3500, '火', 6, 1204870876, NULL, 0, NULL, 0),
(259, '塔里克', 'm89.gif', 500, 0, 200000, 15000, 4500, 5000, '土', 7, 1203712021, NULL, 0, NULL, 0),
(260, '科里克', 'm90.gif', 500, 229996, 230000, 16000, 4500, 4300, '土', 7, 1204096610, NULL, 0, NULL, 0),
(261, '马达乌斯', 'm91.gif', 500, 0, 250000, 18000, 4800, 4300, '土', 7, 1203713844, NULL, 0, NULL, 0),
(262, '恶魔精灵', 'm92.gif', 450, 120000, 120000, 9200, 3750, 3600, '火', 7, 1203714202, NULL, 0, NULL, 0),
(263, '邪恶女巫', 'm93.gif', 475, 0, 97000, 8800, 3500, 3850, '暗', 7, 1203714071, NULL, 0, NULL, 0),
(264, '寒冰恐惧者', 'm94.gif', 450, 0, 90000, 8500, 3600, 3600, '水', 7, 1203714174, NULL, 0, NULL, 0),
(265, '血腥之王', 'm95.gif', 545, 0, 81000, 5350, 3450, 3200, '暗', 8, 1204602681, NULL, 0, NULL, 0),
(266, '死亡拳手', 'm96.gif', 560, 0, 205000, 10650, 3320, 3450, '木', 8, 1204602677, NULL, 0, NULL, 0),
(267, '杜里尔', 'm97.gif', 550, 0, 320000, 20000, 5000, 5300, '金', 8, 1204602626, NULL, 0, NULL, 0),
(268, '秤砣', 'm98.gif', 600, 0, 450000, 30000, 6000, 6000, '暗', 8, 1204602585, '', 0, '', 3),
(269, '血腥之王', 'm95.gif', 545, 0, 81000, 5350, 3450, 3200, '暗', 8, 1204602687, NULL, 0, NULL, 0),
(270, '死亡拳手', 'm96.gif', 560, 205000, 205000, 10650, 3320, 3450, '木', 8, 1204600297, NULL, 0, NULL, 0),
(271, '杜里尔', 'm97.gif', 550, 0, 320000, 20000, 5000, 5300, '金', 8, 1204602653, NULL, 0, NULL, 0),
(272, '秤砣', 'm98.gif', 600, 0, 450000, 40000, 6000, 6000, '暗', 8, 1204602345, '', 0, '', 6),
(1028, '宝钗', 'hlyg/baoc.jpg', 1980, 0, 20000000, 2000000, 222222, 222222, '金', 15, 0, '\r\n', 0, '', 0),
(1027, '艾亚哥斯', 'mj/aygs.gif', 1777, 0, 5300000, 600000, 41000, 41000, '土', 14, 0, '\n', 0, '', 0),
(1026, '拉达曼迪斯', 'mj/ldmds.gif', 1777, 0, 5500000, 600000, 42000, 42000, '火', 14, 0, '\n', 0, '', 0),
(1025, '米诺斯', 'mj/mls.gif', 1777, 0, 5200000, 600000, 40000, 40000, '水', 14, 0, '\n', 0, '', 0),
(1024, '潘多拉', 'mj/pdl.gif', 1888, 0, 8000000, 800000, 60000, 60000, '光', 14, 0, '\n', 0, '', 0),
(1023, '达那都斯', 'mj/dnds.gif', 1999, 0, 10000000, 1000000, 80000, 80000, '木', 14, 0, '\n', 0, '', 0),
(1022, '修普诺斯', 'mj/spls.gif', 1999, 0, 10000000, 1000000, 80000, 80000, '金', 14, 0, '\n', 0, '', 0),
(1021, '哈迪斯', 'mj/hds.gif', 2222, 0, 20000000, 4000000, 222222, 666666, '暗', 14, 0, '\n', 0, '', 0),
(285, '鬼火', 'm307.gif', 710, 0, 990000, 55000, 6000, 6200, '光', 10, 1183577604, NULL, 0, NULL, 0),
(286, '老妖猴', 'm308.gif', 750, 0, 650000, 30000, 6000, 6700, '木', 10, 1183577737, NULL, 0, NULL, 0),
(287, '梦幻之犬', 'm309.gif', 770, 850000, 850000, 40000, 7000, 6000, '土', 10, 1183577173, NULL, 0, NULL, 0),
(288, '梦幻岛主', 'm310.gif', 780, 0, 1450000, 60000, 8000, 8000, '暗', 10, 1183577732, NULL, 0, NULL, 0),
(289, 'Karen', 'm311.gif', 755, 905000, 905000, 52000, 8000, 8000, '火', 10, 1183577533, NULL, 0, NULL, 0),
(290, '大J', 'm312.gif', 760, 0, 2050000, 60000, 9000, 4500, '光', 10, 1183577746, NULL, 0, NULL, 0),
(291, '温柔', 'm313.gif', 750, 750000, 750000, 46000, 5600, 7500, '暗', 10, 1183577542, NULL, 0, NULL, 0),
(292, 'Patiker', 'm314.gif', 740, 0, 860000, 53000, 7600, 6700, '土', 10, 1183577539, NULL, 0, NULL, 0),
(293, '恶贯满盈', 'm315.gif', 780, 0, 670000, 45000, 6000, 5000, '木', 10, 1183577130, NULL, 0, NULL, 0),
(294, '无名', 'm316.gif', 750, 0, 450000, 25000, 4500, 5000, '水', 10, 1183577563, NULL, 0, NULL, 0),
(295, '佩达', 'm317.gif', 820, 0, 950000, 45000, 5000, 5000, '暗', 11, 1204602508, NULL, 0, NULL, 0),
(296, 'Hakal', 'm318.gif', 830, 0, 850000, 40000, 6500, 6200, '光', 11, 1204602419, NULL, 0, NULL, 0),
(297, 'Garay', 'm319.gif', 830, 0, 800000, 35000, 4000, 4500, '土', 11, 1204602499, NULL, 0, NULL, 0),
(298, 'Ladel', 'm320.gif', 850, 0, 450000, 20000, 4300, 5200, '水', 11, 1204599930, NULL, 0, NULL, 0),
(299, 'Tual', 'm321.gif', 850, 0, 1050000, 48000, 5500, 6000, '金', 11, 1204602481, NULL, 0, NULL, 0),
(300, 'Matil', 'm322.gif', 870, 0, 750000, 44000, 5000, 6000, '暗', 11, 1204600420, NULL, 0, NULL, 0),
(301, 'Kaleway', 'm323.gif', 810, 0, 990000, 55000, 6000, 6200, '光', 11, 1204599954, NULL, 0, NULL, 0),
(302, 'Olami', 'm324.gif', 850, 0, 650000, 30000, 6000, 6700, '木', 11, 1204600382, NULL, 0, NULL, 0),
(303, 'Rupi', 'm325.gif', 870, 0, 850000, 40000, 7000, 6000, '土', 11, 1204600392, NULL, 0, NULL, 0),
(304, 'Sala', 'm326.gif', 910, 0, 1450000, 60000, 8000, 8000, '暗', 12, 1183580119, NULL, 0, NULL, 0),
(305, 'Neken', 'm327.gif', 905, 0, 905000, 52000, 8000, 8000, '火', 12, 1183579900, NULL, 0, NULL, 0),
(306, 'Zufay', 'm328.gif', 950, 0, 2050000, 60000, 9000, 4500, '光', 12, 1183579991, NULL, 0, NULL, 0),
(307, 'Adefy', 'm329.gif', 950, 0, 750000, 46000, 5600, 7500, '暗', 12, 1183579802, NULL, 0, NULL, 0),
(308, 'Badbug', 'm330.gif', 960, 0, 860000, 53000, 7600, 6700, '土', 12, 1183580007, NULL, 0, NULL, 0),
(309, 'Dally', 'm331.gif', 970, 670000, 670000, 45000, 6000, 5000, '木', 12, 1183579883, NULL, 0, NULL, 0),
(310, 'Yamaha', 'm332.gif', 990, 0, 860000, 53000, 7600, 6700, '土', 12, 1183579557, NULL, 0, NULL, 0),
(311, 'Jinzhu', 'm333.gif', 980, 0, 670000, 45000, 6000, 5000, '木', 12, 1183580101, NULL, 0, NULL, 0),
(312, 'Wudi', 'm334.gif', 950, 0, 450000, 25000, 4500, 5000, '水', 12, 1183579752, NULL, 0, NULL, 0),
(313, 'Sala', 'm326.gif', 910, 0, 1450000, 60000, 8000, 8000, '暗', 12, 1183579809, NULL, 0, NULL, 0),
(314, 'Neken', 'm327.gif', 905, 0, 905000, 52000, 8000, 8000, '火', 12, 1183579832, NULL, 0, NULL, 0),
(315, 'Zufay', 'm328.gif', 950, 0, 2050000, 60000, 9000, 4500, '光', 12, 1183579894, NULL, 0, NULL, 0),
(316, 'Adefy', 'm329.gif', 950, 0, 750000, 46000, 5600, 7500, '暗', 12, 1183580110, NULL, 0, NULL, 0),
(317, 'Badbug', 'm330.gif', 960, 0, 860000, 53000, 7600, 6700, '土', 12, 1183579816, NULL, 0, NULL, 0),
(318, 'Dally', 'm331.gif', 970, 0, 670000, 45000, 6000, 5000, '木', 12, 1183580022, NULL, 0, NULL, 0),
(319, 'Yamaha', 'm332.gif', 990, 0, 860000, 53000, 7600, 6700, '土', 12, 1183579728, NULL, 0, NULL, 0),
(320, 'Jinzhu', 'm333.gif', 980, 0, 670000, 45000, 6000, 5000, '木', 12, 1183579972, NULL, 0, NULL, 0),
(321, 'Wudi', 'm334.gif', 950, 0, 450000, 25000, 4500, 5000, '水', 12, 1183579757, NULL, 0, NULL, 0),
(1020, 'MM20', 'av/av20.jpg', 972, 0, 105000, 54027, 7000, 6923, '火', 13, 1183577158, NULL, 0, NULL, 0),
(1017, 'MM17', 'av/av17.jpg', 892, 0, 805000, 58020, 7329, 6923, '光', 13, 1183577499, NULL, 0, NULL, 0),
(1005, 'MM05', 'av/av05.jpg', 1000, 0, 1705000, 57000, 13000, 13000, '木', 13, 1183577461, NULL, 0, NULL, 0),
(1001, 'MMOne', 'av/av01.jpg', 950, 0, 450000, 25000, 4500, 5500, '水', 13, 1183577260, NULL, 0, NULL, 0),
(1008, 'MM08', 'av/av08.jpg', 999, 0, 1505000, 61320, 9898, 9898, '水', 13, 1183577340, NULL, 0, NULL, 0),
(1004, 'MM04', 'av/av04.jpg', 1034, 0, 1905000, 65000, 18000, 18000, '木', 13, 1183577450, NULL, 0, NULL, 0),
(1009, 'MM09', 'av/av09.jpg', 921, 0, 1205000, 61320, 5999, 8023, '光', 13, 1183577490, NULL, 0, NULL, 0),
(1003, 'MM03', 'av/av03.jpg', 910, 905000, 905000, 52000, 8000, 8000, '火', 13, 1183577402, NULL, 0, NULL, 0),
(1012, 'MM12', 'av/av12.jpg', 1100, 1905000, 1905000, 63320, 8999, 7023, '水', 13, 1183577264, NULL, 0, NULL, 0),
(1019, 'MM19', 'av/av19.jpg', 932, 0, 1205000, 59020, 6000, 5923, '土', 13, 1183577478, NULL, 0, NULL, 0),
(1013, 'MM13', 'av/av13.jpg', 1180, 0, 1105000, 63320, 8929, 7523, '火', 13, 1183577455, NULL, 0, NULL, 0),
(1002, 'MMTwo', 'av/av02.jpg', 970, 0, 670000, 45000, 6000, 5000, '土', 13, 1183577391, NULL, 0, NULL, 0),
(1016, 'MM16', 'av/av16.jpg', 872, 0, 605000, 48020, 5329, 5923, '暗', 13, 1183577371, NULL, 0, NULL, 0),
(1006, 'MM06', 'av/av06.jpg', 984, 0, 1205000, 61000, 11000, 11000, '金', 13, 1183577484, NULL, 0, NULL, 0),
(1007, 'MM07', 'av/av07.jpg', 944, 0, 1105000, 41000, 7000, 7000, '暗', 13, 1183577494, NULL, 0, NULL, 0),
(1011, 'MM11', 'av/av11.jpg', 960, 0, 905000, 43320, 5999, 5023, '水', 13, 1183577349, NULL, 0, NULL, 0),
(1010, 'MM10', 'av/av10.jpg', 935, 0, 805000, 41320, 4999, 4023, '暗', 13, 1183577315, NULL, 0, NULL, 0),
(1015, 'MM15', 'av/av15.jpg', 852, 0, 605000, 48020, 5929, 5923, '木', 13, 1183577415, NULL, 0, NULL, 0),
(1014, 'MM14', 'av/av14.jpg', 952, 0, 1405000, 60020, 7929, 7923, '木', 13, 1183577270, NULL, 0, NULL, 0),
(1018, 'MM18', 'av/av18.jpg', 812, 0, 1205000, 48020, 3000, 5923, '水', 13, 1183577333, NULL, 0, NULL, 0),
(1033, '巧姐', 'hlyg/qiaoj.jpg', 1985, 0, 20373733, 2333333, 233333, 200000, '暗', 15, 0, '\r\n', 0, '', 0),
(1034, '探春', 'hlyg/tanc.jpg', 1986, 0, 21987633, 2444444, 255555, 258888, '光', 15, 0, '\r\n', 0, '', 0),
(1035, '惜春', 'hlyg/xic.jpg', 1987, 0, 20000000, 2055555, 228888, 208888, '金', 15, 0, '\r\n', 0, '', 0),
(1036, '熙凤', 'hlyg/xif.jpg', 1988, 0, 20883722, 2155555, 248888, 228888, '木', 15, 0, '\r\n', 0, '', 0),
(1037, '湘云', 'hlyg/xiangy.jpg', 1989, 0, 20113388, 2255555, 238888, 298763, '水', 15, 0, '\r\n', 0, '', 0),
(1038, '迎春', 'hlyg/yingc.jpg', 1980, 0, 20000000, 1955555, 199999, 210000, '暗', 15, 0, '\r\n', 0, '', 0),
(1039, '元春', 'hlyg/yuanc.jpg', 1981, 0, 22008888, 2288888, 248888, 228888, '光', 15, 0, '\r\n', 0, '', 0),
(1040, '穆斯', 'HJ/baiyang.gif', 1580, 0, 850000, 150000, 26000, 28000, '金', 16, 0, '\n', 0, '', 0),
(1041, '沙加', 'HJ/cnsj.gif', 1642, 0, 1050000, 200000, 32000, 28621, '火', 16, 0, '\n', 0, '', 0),
(1042, '雅典娜', 'hj/ydn.gif', 1888, 0, 5000000, 1000000, 80000, 80000, '水', 16, 0, '\r\n', 0, '', 0),
(1043, '阿鲁迪巴', 'hj/jn.gif', 1356, 0, 838232, 163923, 15098, 36098, '暗', 16, 0, '\n', 0, '', 0),
(1044, '迪斯马斯克', 'hj/jx.gif', 1493, 0, 943232, 175392, 19765, 30987, '金', 16, 0, '\r\n', 0, '', 0),
(1045, '艾欧里亚', 'hj/sz.gif', 1204, 0, 787654, 132953, 23457, 20123, '火', 16, 0, '\r\n', 0, '', 0),
(1046, '修罗', 'hj/xl.gif', 1498, 0, 876544, 139832, 25432, 21098, '土', 16, 0, '\r\n', 0, '', 0),
(1047, '艾俄洛斯', 'hj/ss.gif', 1598, 0, 765346, 149823, 22222, 22222, '光', 16, 0, '\r\n', 0, '', 0),
(1048, '阿布罗狄', 'hj/sy.gif', 1476, 0, 1568980, 253992, 34323, 32132, '金', 16, 0, '\n', 0, '', 0),
(1049, '撒加', 'hj/shuangzi.gif', 1528, 0, 1209868, 219238, 40987, 10987, '水', 16, 0, '\r\n', 0, '', 0),
(1050, '卡妙', 'hj/sp.gif', 1294, 0, 876643, 169932, 23231, 28987, '木', 16, 0, '\r\n', 0, '', 0),
(1051, '童虎', 'hj/tc.gif', 1671, 0, 1214321, 280944, 49999, 58888, '光', 16, 0, '\n', 0, '', 0),
(1052, '米罗', 'hj/tx.gif', 1725, 0, 998987, 193932, 30000, 30000, '火', 16, 0, '\n', 0, '', 0),
(1053, '雅典娜', 'hj/ydn.gif', 1888, 0, 5000000, 1000000, 80000, 80000, '水', 16, 0, '\n', 0, '', 0),
(1054, '雅典娜', 'hj/ydn.gif', 1888, 0, 5000000, 1000000, 80000, 80000, '水', 16, 0, '\n', 0, '', 0),
(1055, '雅典娜', 'hj/ydn.gif', 1888, 0, 5000000, 1000000, 80000, 80000, '水', 16, 0, '\n', 0, '', 0),
(1056, '雅典娜', 'hj/ydn.gif', 1888, 0, 5000000, 1000000, 80000, 80000, '水', 16, 0, '\n', 0, '', 0),
(1057, '雅典娜', 'hj/ydn.gif', 1888, 0, 5000000, 1000000, 80000, 80000, '水', 16, 0, '\n', 0, '', 0),
(1058, '雅典娜', 'hj/ydn.gif', 1888, 0, 5000000, 1000000, 80000, 80000, '水', 16, 0, '\n', 0, '', 0),
(1059, '雅典娜', 'hj/ydn.gif', 1888, 0, 5000000, 1000000, 80000, 80000, '水', 16, 0, '\n', 0, '', 0),
(1060, '艾欧里亚', 'hj/sz.gif', 1204, 0, 787654, 132953, 23457, 20123, '火', 16, 0, '\n', 0, '', 0),
(1061, '卡妙', 'hj/sp.gif', 1294, 0, 876643, 169932, 23231, 28987, '木', 16, 0, '\n', 0, '', 0),
(1062, '阿鲁迪巴', 'hj/jn.gif', 1356, 0, 838232, 163923, 15098, 36098, '暗', 16, 0, '\n', 0, '', 0),
(1063, '阿布罗狄', 'hj/sy.gif', 1476, 0, 1568980, 253992, 34323, 32132, '金', 16, 0, '\n', 0, '', 0),
(1064, '迪斯马斯克', 'hj/jx.gif', 1493, 0, 943232, 175392, 19765, 30987, '金', 16, 0, '\n', 0, '', 0),
(1065, '修罗', 'hj/xl.gif', 1498, 0, 876544, 139832, 25432, 21098, '土', 16, 0, '\n', 0, '', 0),
(1066, '米罗', 'hj/tx.gif', 1725, 0, 998987, 193932, 30000, 30000, '火', 16, 0, '\n', 0, '', 0),
(1067, '童虎', 'hj/tc.gif', 1671, 0, 1214321, 280944, 49999, 58888, '光', 16, 0, '\n', 0, '', 0),
(1068, '沙加', 'HJ/cnsj.gif', 1642, 0, 1050000, 200000, 32000, 28621, '火', 16, 0, '\n', 0, '', 0),
(1069, '艾俄洛斯', 'hj/ss.gif', 1598, 0, 765346, 149823, 22222, 22222, '光', 16, 0, '\n', 0, '', 0),
(1070, '穆斯', 'HJ/baiyang.gif', 1580, 0, 850000, 150000, 26000, 28000, '金', 16, 0, '\n', 0, '', 0),
(1071, '撒加', 'hj/shuangzi.gif', 1528, 0, 1209868, 219238, 40987, 10987, '水', 16, 0, '\n', 0, '', 0);

DROP TABLE IF EXISTS `cdb_czwpetcareer`;
CREATE TABLE IF NOT EXISTS `cdb_czwpetcareer` (
  `id` int(2) NOT NULL auto_increment,
  `cid` int(2) NOT NULL,
  `value` varchar(5) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=5 ;

INSERT INTO `cdb_czwpetcareer` (`id`, `cid`, `value`) VALUES
(1, 0, '任意'),
(2, 1, '骑士'),
(3, 2, '刺客'),
(4, 3, '法师');

DROP TABLE IF EXISTS `cdb_czwpetconfig`;
CREATE TABLE IF NOT EXISTS `cdb_czwpetconfig` (
  `column` varchar(32) NOT NULL default '',
  `value` text NOT NULL,
  PRIMARY KEY  (`column`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk;

INSERT INTO `cdb_czwpetconfig` (`column`, `value`) VALUES
('answerrange', '3600'),
('basicsp2', '250'),
('bgsound', '0'),
('changesexcost', '500'),
('checktime', '1800'),
('closereason', ''),
('defaultstyle', '2'),
('eggmoney', '20'),
('failrange', '80'),
('familymoney', '1000000'),
('familypetjob', '2'),
('fid', '19'),
('localtag', '0'),
('lovecost', '30000'),
('magiclevel', '1'),
('marketfee', '10'),
('marketstax', '5'),
('markettag', '0'),
('markettime', '31'),
('maxpeople', '0'),
('moneycredits', '2'),
('mulcriring', '1'),
('muldropgold', '1'),
('muldroprange', '1'),
('mulnpcexp', '1'),
('notice', '论坛升级'),
('openday', '0,1,2,3,4,5,6'),
('opentag', '1'),
('opentime', '0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23'),
('optimizetime', '1208550702'),
('p2e', '50'),
('petaction', '222'),
('petgm', ''),
('petgood', '50'),
('petlevel', '10'),
('petpktime', '1'),
('petuplevel', '11'),
('pkdelay', '1'),
('pklevel', '150'),
('pklosegd', '5000'),
('pktag', '1'),
('play', '0'),
('pofa', '0'),
('pointjob', '150'),
('poststag', '1'),
('put', '100'),
('put1', '0'),
('repoints', '2500'),
('repointsjob', '99'),
('setactime', '600'),
('shopcredits', '0'),
('showlog', '5'),
('showonline', '1'),
('t2e', '50'),
('upgrademoney', '1000'),
('userban', '1'),
('version', 'CZWPet V2.7');


DROP TABLE IF EXISTS `cdb_czwpetdata`;
CREATE TABLE IF NOT EXISTS `cdb_czwpetdata` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `username` varchar(15) NOT NULL default '',
  `yxb` mediumint(7) NOT NULL default '0',
  `cwb` int(10) NOT NULL default '0',
  `cwbbank` bigint(12) NOT NULL default '0',
  `career` tinyint(1) unsigned NOT NULL default '0',
  `petname` varchar(20) NOT NULL default '',
  `mypetpic` varchar(100) NOT NULL default '',
  `mypetgood` tinyint(3) NOT NULL default '100',
  `pettype` varchar(15) NOT NULL default '',
  `mypetlevel` smallint(5) unsigned NOT NULL default '0',
  `leveltemp` smallint(5) unsigned NOT NULL default '0',
  `mypetjob` tinyint(3) unsigned NOT NULL default '0',
  `mypetworld` tinyint(3) unsigned NOT NULL default '1',
  `mypetgd` int(10) NOT NULL default '0',
  `mypetexp` bigint(15) unsigned NOT NULL default '0',
  `mapid` smallint(5) unsigned NOT NULL default '0',
  `criring` smallint(5) NOT NULL default '0',
  `str` mediumint(7) NOT NULL default '0',
  `vit` mediumint(7) NOT NULL default '0',
  `agi` mediumint(7) NOT NULL default '0',
  `kno` mediumint(7) NOT NULL default '0',
  `dex` mediumint(7) NOT NULL default '0',
  `ins` smallint(5) NOT NULL default '0',
  `mypethp` mediumint(7) NOT NULL default '0',
  `mypetmaxhp` mediumint(7) NOT NULL default '0',
  `mypetsp` smallint(5) unsigned NOT NULL default '0',
  `mypetmp` mediumint(7) NOT NULL default '0',
  `mypetmaxmp` mediumint(7) NOT NULL default '0',
  `mypetatk` mediumint(8) NOT NULL default '0',
  `mypetdef` mediumint(8) NOT NULL default '0',
  `mypetsex` tinyint(1) unsigned NOT NULL default '0',
  `mypetsx` char(2) NOT NULL default '',
  `petregdate` int(10) unsigned NOT NULL default '0',
  `opentm` tinyint(1) unsigned NOT NULL default '0',
  `teamname` varchar(15) NOT NULL default '0',
  `item1` varchar(20) NOT NULL default '0',
  `item2` varchar(20) NOT NULL default '0',
  `item3` varchar(20) NOT NULL default '0',
  `item4` varchar(20) NOT NULL default '0',
  `item5` varchar(20) NOT NULL default '0',
  `item6` varchar(20) NOT NULL default '0',
  `item7` varchar(20) NOT NULL default '0',
  `points` smallint(5) NOT NULL default '0',
  `atktemp` int(10) unsigned NOT NULL default '0',
  `deftemp` int(10) unsigned NOT NULL default '0',
  `npcid` smallint(5) NOT NULL default '0',
  `npcid2` smallint(5) unsigned NOT NULL default '0',
  `actime` int(10) unsigned NOT NULL default '0',
  `posts` mediumint(8) unsigned NOT NULL default '0',
  `posts2` mediumint(8) unsigned NOT NULL default '0',
  `picpath` varchar(50) default '',
  `bgsound` tinyint(1) unsigned NOT NULL default '0',
  `onlinetime` int(10) unsigned NOT NULL default '0',
  `onlinetime2` int(10) unsigned NOT NULL default '0',
  `familyid` smallint(5) unsigned NOT NULL default '0',
  `fagreetag` tinyint(1) unsigned NOT NULL default '0',
  `atknum` tinyint(3) unsigned NOT NULL default '0',
  `suitid` smallint(5) unsigned NOT NULL default '0',
  `killrange` smallint(5) NOT NULL default '0',
  `subjectid` int(10) unsigned NOT NULL default '0',
  `answertime` int(10) unsigned NOT NULL default '0',
  `bantag` tinyint(1) unsigned NOT NULL default '0',
  `shifu` varchar(15) default NULL,
  `tudi1` varchar(15) default NULL,
  `bsagree` smallint(1) unsigned NOT NULL default '0',
  `marryname` varchar(15) NOT NULL default '',
  `marrycheck` int(1) NOT NULL default '0',
  `marrycontent` varchar(255) NOT NULL default '',
  `stexp` int(10) NOT NULL default '0',
  `sfgx` int(3) NOT NULL default '0',
  `checktime` int(10) unsigned NOT NULL default '0',
  `checkcode` varchar(8) default NULL,
  `bantime` int(10) unsigned NOT NULL default '0',
  `mystyle` int(2) NOT NULL default '0',
  `multype` varchar(10) default NULL,
  `multiple` smallint(3) unsigned NOT NULL default '0',
  `multime` int(10) NOT NULL default '0',
  `mission` text NOT NULL,
  `missionstat` text NOT NULL,
  `missionlist` text NOT NULL,
  `ferename` varchar(20) NOT NULL,
  `sleeptag` tinyint(1) unsigned NOT NULL default '0',
  `lucky` smallint(3) unsigned NOT NULL default '50',
  `luckytime` int(10) unsigned NOT NULL default '0',
  `mastername` varchar(15) NOT NULL,
  `mastertag` tinyint(1) unsigned NOT NULL default '1',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `username` (`username`),
  KEY `mapactime` (`mapid`,`actime`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;


DROP TABLE IF EXISTS `cdb_czwpetmagic`;
CREATE TABLE IF NOT EXISTS `cdb_czwpetmagic` (
  `username` varchar(15) NOT NULL default '',
  `mheal` tinyint(1) unsigned NOT NULL default '0',
  `msleep` tinyint(1) unsigned NOT NULL default '0',
  `sleepeft` tinyint(3) unsigned NOT NULL default '0',
  `mtitan` tinyint(1) unsigned NOT NULL default '0',
  `titaneft` tinyint(3) unsigned NOT NULL default '0',
  `mpower` tinyint(1) unsigned NOT NULL default '0',
  `powereft` tinyint(3) unsigned NOT NULL default '0',
  `mlive` tinyint(1) unsigned NOT NULL default '0',
  `mlight` tinyint(1) unsigned NOT NULL default '0',
  `mlightbomb` tinyint(1) unsigned NOT NULL default '0',
  `mfire` tinyint(1) unsigned NOT NULL default '0',
  `mice` tinyint(1) unsigned NOT NULL default '0',
  `mfirewind` tinyint(1) unsigned NOT NULL default '0',
  `mcallhell` tinyint(1) unsigned NOT NULL default '0',
  `callhelleft` tinyint(3) unsigned NOT NULL default '0',
  `mtwohit` tinyint(1) unsigned NOT NULL default '0',
  `mlothit` tinyint(1) unsigned NOT NULL default '0',
  `mkiller2` tinyint(1) unsigned NOT NULL default '0',
  `killer2eft` tinyint(3) unsigned NOT NULL default '0',
  UNIQUE KEY `username` (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk;

DROP TABLE IF EXISTS `cdb_czwpetmainmap`;
CREATE TABLE IF NOT EXISTS `cdb_czwpetmainmap` (
  `id` int(2) NOT NULL auto_increment,
  `mapimg` varchar(20) NOT NULL,
  `levelmin` int(3) NOT NULL,
  `jobmin` int(3) NOT NULL,
  `needitem` varchar(10) default NULL,
  `mapname` varchar(10) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=2 ;


INSERT INTO `cdb_czwpetmainmap` (`id`, `mapimg`, `levelmin`, `jobmin`, `needitem`, `mapname`) VALUES
(1, 'default.jpg', 0, 0, NULL, '默认');

DROP TABLE IF EXISTS `cdb_czwpettemplates`;
CREATE TABLE IF NOT EXISTS `cdb_czwpettemplates` (
  `id` int(2) NOT NULL auto_increment,
  `tname` varchar(20) NOT NULL default '',
  `cname` varchar(20) NOT NULL default '',
  `copyright` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=2 ;

INSERT INTO `cdb_czwpettemplates` (`id`, `tname`, `cname`, `copyright`) VALUES
(1, 'default', '默认', '');

DROP TABLE IF EXISTS `cdb_czwpettype`;
CREATE TABLE IF NOT EXISTS `cdb_czwpettype` (
  `id` smallint(5) unsigned NOT NULL auto_increment,
  `pet` varchar(30) NOT NULL default '',
  `newpetclass` varchar(8) NOT NULL default '',
  `pettxt` varchar(50) NOT NULL default '',
  `petsx` varchar(6) NOT NULL default '',
  `atk` smallint(5) unsigned NOT NULL default '0',
  `def` smallint(5) unsigned NOT NULL default '0',
  `eggmoney` smallint(5) unsigned NOT NULL default '0',
  `pettype` tinyint(1) unsigned NOT NULL default '1',
  `petsex` tinyint(1) unsigned NOT NULL default '0',
  `requirejob` tinyint(3) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=28 ;

INSERT INTO `cdb_czwpettype` (`id`, `pet`, `newpetclass`, `pettxt`, `petsx`, `atk`, `def`, `eggmoney`, `pettype`, `petsex`, `requirejob`) VALUES
(1, '猫尾球（兽系）', 'bst', '可爱的兽系宠物，最终形态将是黑暗守护犬。', '土', 0, 0, 0, 1, 0, 0),
(2, '泡泡龙（龙系）', 'dragon', '来自东方的一条龙，最终形态将是十分帅气的人龙。', '火', 0, 0, 0, 1, 0, 0),
(3, '天使球（鸟系）', 'bird', '超可爱的小鸟，最终形态是强有力的大红鹰。', '水', 0, 0, 0, 1, 0, 0),
(4, '苹果宝宝（植物系）', 'green', '谁也想不到植物会有强大的能力，最终形态是节节高。', '木', 0, 0, 0, 1, 0, 0),
(5, '幽灵球（恶魔系）', 'devil', '一生下来就有神秘能力的幽灵球，最终形态是巨灵恶魔。', '金', 0, 0, 0, 1, 0, 0),
(6, '暗精灵球(精灵系)', 'dark', '拥有暗黑力量的喑精灵球，最终形态将是地狱守门者。', '暗', 0, 0, 0, 1, 0, 0),
(7, '光精灵球(精灵系)', 'light', '拥有光明力量的光精灵球，最终形态将是福音使者。', '光', 0, 0, 0, 1, 0, 0),
(8, '邪魂龙球(恶龙系)', 'evil', '拥有吸食灵魂力量的邪魂龙，最终形态将是狂暴邪魂龙。', '暗', 0, 0, 0, 1, 0, 0),
(9, '雷鸣伏特球(兽系)', 'ring', '生活在云雾中的雷鸣伏特，拥有谁也想不到的强大能力。', '光', 0, 0, 0, 1, 0, 0),
(10, '加尔多努球(冰龙系)', 'winter', '迷幻冰湖中的加尔多努，拥有冰结大地的强大力量。', '水', 0, 0, 0, 1, 0, 0),
(11, '影比特球(兽系)', 'sky', '拥有吸食影子力量的影比特, 最终形态将是月光比特。', '暗', 0, 0, 0, 1, 0, 0),
(12, '多洛球(恶魔系)', 'king', '拥有召唤力量的多洛球，最终形态是死灵法师。', '暗', 0, 0, 0, 1, 0, 0),
(13, '恐龙球(化石系)', 'fossil', '在石器时代长大的，最终形态是化骨龙。', '金', 0, 0, 0, 1, 0, 0),
(14, '狂暴球(机械系)', 'sys', '狂暴的机械一族，最终形态是机械王。', '金', 0, 0, 0, 1, 0, 0),
(15, '恶化球(兽人系)', 'moon', '热爱战争的兽人系，最终形态是死灵兽人。', '火', 0, 0, 0, 1, 0, 0),
(16, '霸权球(兽系)', 'east', '热爱自然的兽系，最终形态是霸权之魂。', '光', 0, 0, 0, 1, 0, 0),
(17, '妖巫球(恶魔系)', 'newkill', '栖居在黑暗之地的恶魔，最终形态是古代巫师。', '暗', 0, 0, 0, 1, 0, 0),
(18, '裂空(神秘系)', 'pc', '传说中裂空的王者，操纵黑暗的破坏之王。', '暗', 0, 0, 0, 1, 0, 0),
(19, '无明球(神秘系)', 'lqq', '热爱和平的神秘系，最终形态是封印使者。', '木', 0, 0, 0, 1, 0, 0),
(20, '小苗球(草系)', 'newplant', '黑暗的草木系，最终形态是枯树巨灵神。', '火', 0, 0, 0, 1, 0, 0),
(21, '兽人族', 'p', '拥有强势的攻击力量，惊人的攻击伤害技能！', '土', 90, 10, 10000, 2, 0, 0),
(22, '雪鹰族', 'e', '拥有美丽形象的雪鹰族，善于冰雪系攻击技能！', '水', 10, 90, 15000, 2, 0, 0),
(23, '精灵族', 'b', '水陆两栖的精灵族，长期为天神的护卫，拥有强势攻击力', '光', 90, 30, 20000, 2, 0, 0),
(24, '飞龙族', 's', '神圣的飞龙族，由于强大的能力，让他居于乱世中的中立', '火', 80, 80, 35000, 2, 0, 0),
(25, '魔神族', 'm', '具有神秘古老魔力的种族，后期有未知的强大魔法能力！', '暗', 10, 100, 40000, 2, 0, 0),
(26, '巨兽族', 'g', '守护金矿的族群，年长的男矮人有机会学习武器锻造技术', '金', 20, 90, 55000, 2, 0, 0),
(27, '自然灵兽族', 'a', '大自然的动物，以守护大自然为己任', '木', 90, 90, 60000, 2, 0, 0);


DROP TABLE IF EXISTS `cdb_czwrose`;
CREATE TABLE IF NOT EXISTS `cdb_czwrose` (
  `username` varchar(20) NOT NULL default '',
  `nums` smallint(5) unsigned NOT NULL default '0',
  `fromuser` mediumtext NOT NULL,
  UNIQUE KEY `username` (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk;

DROP TABLE IF EXISTS `cdb_czwstorage`;
CREATE TABLE IF NOT EXISTS `cdb_czwstorage` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `username` varchar(20) NOT NULL default '',
  `itemname` varchar(50) NOT NULL default '',
  `itemnums` smallint(6) NOT NULL default '0',
  `updatetime` int(10) unsigned NOT NULL default '0',
  `locktag` tinyint(1) unsigned NOT NULL default '0',
  `bagtag` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `useritem` (`username`,`itemname`)
) ENGINE=MyISAM DEFAULT CHARSET=gbk AUTO_INCREMENT=1 ;


DROP TABLE IF EXISTS `cdb_czwsubject`;
CREATE TABLE IF NOT EXISTS `cdb_czwsubject` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `subject` mediumtext NOT NULL,
  `key1` varchar(100) NOT NULL default '',
  `key2` varchar(100) default NULL,
  `key3` varchar(100) default NULL,
  `key4` varchar(100) default NULL,
  `truekey` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=gbk AUTO_INCREMENT=3 ;

INSERT INTO `cdb_czwsubject` (`id`, `subject`, `key1`, `key2`, `key3`, `key4`, `truekey`) VALUES
(1, '1+2=?', '1', '2', '3', '4', 3),
(2, '传说中的插件作者江湖大虾仁是个？', '大学生', '高中生', '初中生', '工薪阶层', 2);
