custom_npcaidata.sql 1.1 KB

1234567891011121314151617181920212223
  1. CREATE TABLE IF NOT EXISTS `custom_npcaidata` (
  2. `npcId` mediumint(7) unsigned NOT NULL,
  3. `minSkillChance` tinyint(3) unsigned NOT NULL DEFAULT '7',
  4. `maxSkillChance` tinyint(3) unsigned NOT NULL DEFAULT '15',
  5. `primarySkillId` smallint(5) unsigned DEFAULT '0',
  6. `canMove` tinyint(1) unsigned NOT NULL DEFAULT '1',
  7. `minRangeSkill` smallint(5) unsigned DEFAULT '0',
  8. `minRangeChance` tinyint(3) unsigned DEFAULT '0',
  9. `maxRangeSkill` smallint(5) unsigned DEFAULT '0',
  10. `maxRangeChance` tinyint(3) unsigned DEFAULT '0',
  11. `soulShot` smallint(4) unsigned DEFAULT '0',
  12. `spiritShot` smallint(4) unsigned DEFAULT '0',
  13. `spsChance` tinyint(3) unsigned DEFAULT '0',
  14. `ssChance` tinyint(3) unsigned DEFAULT '0',
  15. `isChaos` smallint(4) unsigned DEFAULT '0',
  16. `clan` varchar(40) DEFAULT NULL,
  17. `clanRange` smallint(4) unsigned DEFAULT '0',
  18. `enemyClan` varchar(40) DEFAULT NULL,
  19. `enemyRange` smallint(4) unsigned DEFAULT '0',
  20. `dodge` tinyint(3) unsigned DEFAULT '0',
  21. `aiType` varchar(8) NOT NULL DEFAULT 'fighter',
  22. PRIMARY KEY (`npcId`)
  23. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;