源战役
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

18 lignes
1012 B

-- zmh
CREATE TABLE `role_nucleon` (
`rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
`lv` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '灵能级',
`holes` varchar(100) NOT NULL DEFAULT '[]' COMMENT '技能',
`breaks` varchar(100) NOT NULL DEFAULT '[]' COMMENT '觉醒',
`normal` int(11) NOT NULL DEFAULT '0' COMMENT '普通已抽次数',
`ntime` int(11) NOT NULL DEFAULT '0' COMMENT '上次免费操作时间',
`nfirst` int(11) NOT NULL DEFAULT '0' COMMENT '普通首次',
`nstate` varchar(100) NOT NULL DEFAULT '[]' COMMENT '普通状态',
`special` int(11) NOT NULL DEFAULT '0' COMMENT '特别已抽次数',
`stime` int(11) NOT NULL DEFAULT '0' COMMENT '上次特殊已抽时间',
`sfirst` int(11) NOT NULL DEFAULT '0' COMMENT '特殊首次',
`estate` varchar(100) NOT NULL DEFAULT '[]' COMMENT '特殊状态',
`rtime` int(11) NOT NULL DEFAULT '0' COMMENT '刷新时间',
PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='灵能-合服保留';