custom_npc_elementals.sql 531 B

123456789101112
  1. CREATE TABLE IF NOT EXISTS `custom_npc_elementals` (
  2. `npc_id` decimal(11,0) NOT NULL default '0',
  3. `elemAtkType` tinyint(1) NOT NULL default -1,
  4. `elemAtkValue` int(3) NOT NULL default 0,
  5. `fireDefValue` int(3) NOT NULL default 0,
  6. `waterDefValue` int(3) NOT NULL default 0,
  7. `windDefValue` int(3) NOT NULL default 0,
  8. `earthDefValue` int(3) NOT NULL default 0,
  9. `holyDefValue` int(3) NOT NULL default 0,
  10. `darkDefValue` int(3) NOT NULL default 0,
  11. PRIMARY KEY (`npc_id`)
  12. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;