custom_npc_elementals.sql 543 B

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