custom_npc.sql 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. CREATE TABLE IF NOT EXISTS `custom_npc`(
  2. `id` mediumint(7) unsigned NOT NULL DEFAULT '0',
  3. `idTemplate` smallint(5) unsigned NOT NULL DEFAULT '0',
  4. `name` varchar(200) NOT NULL DEFAULT '',
  5. `serverSideName` tinyint(1) NOT NULL DEFAULT '1',
  6. `title` varchar(45) NOT NULL DEFAULT '',
  7. `serverSideTitle` tinyint(1) NOT NULL DEFAULT '1',
  8. `class` varchar(200) DEFAULT NULL,
  9. `collision_radius` decimal(6,2) DEFAULT NULL,
  10. `collision_height` decimal(6,2) DEFAULT NULL,
  11. `level` tinyint(2) DEFAULT NULL,
  12. `sex` enum('etc','female','male') NOT NULL DEFAULT 'etc',
  13. `type` varchar(22) DEFAULT NULL,
  14. `attackrange` smallint(4) DEFAULT NULL,
  15. `hp` decimal(30,15) DEFAULT NULL,
  16. `mp` decimal(30,15) DEFAULT NULL,
  17. `hpreg` decimal(30,15) DEFAULT NULL,
  18. `mpreg` decimal(30,15) DEFAULT NULL,
  19. `str` tinyint(2) NOT NULL DEFAULT '40',
  20. `con` tinyint(2) NOT NULL DEFAULT '43',
  21. `dex` tinyint(2) NOT NULL DEFAULT '30',
  22. `int` tinyint(2) NOT NULL DEFAULT '21',
  23. `wit` tinyint(2) NOT NULL DEFAULT '20',
  24. `men` tinyint(2) NOT NULL DEFAULT '20',
  25. `exp` int(9) NOT NULL DEFAULT '0',
  26. `sp` int(9) NOT NULL DEFAULT '0',
  27. `patk` decimal(12,5) DEFAULT NULL,
  28. `pdef` decimal(12,5) DEFAULT NULL,
  29. `matk` decimal(12,5) DEFAULT NULL,
  30. `mdef` decimal(12,5) DEFAULT NULL,
  31. `atkspd` smallint(4) NOT NULL DEFAULT '230',
  32. `critical` tinyint(1) NOT NULL DEFAULT '1',
  33. `aggro` smallint(4) NOT NULL DEFAULT '0',
  34. `matkspd` smallint(4) NOT NULL DEFAULT '333',
  35. `rhand` smallint(5) unsigned NOT NULL DEFAULT '0',
  36. `lhand` smallint(5) unsigned NOT NULL DEFAULT '0',
  37. `enchant` tinyint(1) NOT NULL DEFAULT '0',
  38. `walkspd` decimal(10,5) NOT NULL DEFAULT '60',
  39. `runspd` decimal(10,5) NOT NULL DEFAULT '120',
  40. `targetable` tinyint(1) NOT NULL DEFAULT '1',
  41. `show_name` tinyint(1) NOT NULL DEFAULT '1',
  42. `dropHerbGroup` tinyint(1) NOT NULL DEFAULT '0',
  43. `basestats` tinyint(1) NOT NULL DEFAULT '0',
  44. PRIMARY KEY (`id`)
  45. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  46. INSERT IGNORE INTO `custom_npc` VALUES
  47. (50007,31324,'Andromeda',1,'L2J Wedding Manager',1,'NPC.a_casino_FDarkElf',8.00,23.00,70,'female','L2WeddingManager',40,2444,2444,0.00,0.00,10,10,10,10,10,10,0,0,500,500,500,500,278,1,0,333,0,0,0,28,120,0,0,0,0),
  48. (70010,31606,'Catrina',1,'L2J TvT Event Manager',1,'Monster2.queen_of_cat',8.00,15.00,70,'female','L2TvTEventNpc',40,2444,2444,0.00,0.00,10,10,10,10,10,10,0,0,500,500,500,500,278,1,0,333,0,0,0,28,120,0,0,0,0),
  49. (1000003,32226,'Shiela',1,'L2J NPC Buffer',1,'LineageNPC2.K_F1_grand',11.00,22.25,70,'male','L2NpcBuffer',40,2444,2444,0.00,0.00,10,10,10,10,10,10,0,0,500,500,500,500,278,1,0,333,0,0,0,28,120,0,0,0,0),
  50. -- eventmod Elpies
  51. (900100,20432,'Elpy',1,'',1,'LineageMonster.elpy',5.00,4.50,1,'male','L2EventMonster',40,40,36,3.16,0.91,40,43,30,21,20,20,35,2,8,40,7,25,230,1,0,333,0,0,0,50,80,0,0,0,0),
  52. -- eventmod Rabbits
  53. (900101,32365,'Snow',1,'Event Manager',1,'LineageNPC2.TP_game_staff',5.00,12.50,70,'male','L2Npc',40,2444,1225,0.00,0.00,40,43,30,21,20,20,0,0,1086,471,749,313,230,1,0,333,0,0,0,68,109,1,1,0,0),
  54. (900102,13098,'Event Treasure Chest',1,'',1,'LineageMonster.mimic_even',8.50,8.50,80,'male','L2EventChest',40,2880,1524,0.00,0.00,40,43,30,21,20,20,0,0,1499,577,1035,384,230,1,0,253,0,0,0,1,1,0,0,0,0),
  55. -- eventmod Race
  56. (900103,32365,'Start',1,'Event Manager',1,'LineageNPC2.TP_game_staff',5.00,12.50,70,'male','L2Npc',40,2444,1225,0.00,0.00,40,43,30,21,20,20,0,0,1086,471,749,313,230,1,0,333,0,0,0,68,109,0,0,0,0),
  57. (900104,32365,'Finish',1,'Event Manager',1,'LineageNPC2.TP_game_staff',5.00,12.50,70,'male','L2Npc',40,2444,1225,0.00,0.00,40,43,30,21,20,20,0,0,1086,471,749,313,230,1,0,333,0,0,0,68,109,0,0,0,0);