1234567891011121314151617181920212223 |
- CREATE TABLE IF NOT EXISTS `custom_npcaidata` (
- `npcId` mediumint(7) unsigned NOT NULL,
- `minSkillChance` tinyint(3) unsigned NOT NULL DEFAULT '7',
- `maxSkillChance` tinyint(3) unsigned NOT NULL DEFAULT '15',
- `primarySkillId` smallint(5) unsigned DEFAULT '0',
- `canMove` tinyint(1) unsigned NOT NULL DEFAULT '1',
- `minRangeSkill` smallint(5) unsigned DEFAULT '0',
- `minRangeChance` tinyint(3) unsigned DEFAULT '0',
- `maxRangeSkill` smallint(5) unsigned DEFAULT '0',
- `maxRangeChance` tinyint(3) unsigned DEFAULT '0',
- `soulShot` smallint(4) unsigned DEFAULT '0',
- `spiritShot` smallint(4) unsigned DEFAULT '0',
- `spsChance` tinyint(3) unsigned DEFAULT '0',
- `ssChance` tinyint(3) unsigned DEFAULT '0',
- `isChaos` smallint(4) unsigned DEFAULT '0',
- `clan` varchar(40) DEFAULT NULL,
- `clanRange` smallint(4) unsigned DEFAULT '0',
- `enemyClan` varchar(40) DEFAULT NULL,
- `enemyRange` smallint(4) unsigned DEFAULT '0',
- `dodge` tinyint(3) unsigned DEFAULT '0',
- `aiType` varchar(8) NOT NULL DEFAULT 'fighter',
- PRIMARY KEY (`npcId`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|