pledge_skill_trees.sql 8.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. DROP TABLE IF EXISTS `pledge_skill_trees`;
  2. CREATE TABLE IF NOT EXISTS `pledge_skill_trees` (
  3. `skill_id` int(11) default NULL,
  4. `level` int(11) default NULL,
  5. `name` varchar(25) default NULL,
  6. `clan_lvl` int(11) default NULL,
  7. `Description` varchar(255) default NULL,
  8. `repCost` int(11) default NULL,
  9. `itemId` int(11) default NULL
  10. );
  11. -- ----------------------------
  12. -- Records
  13. -- ----------------------------
  14. INSERT INTO `pledge_skill_trees` VALUES
  15. (370,1,'Clan Vitality',5,'Increases clan members Max HP. It only effects those who are of an Heir class or higher',500,8166),
  16. (370,2,'Clan Vitality',5,'Increases clan members Max HP. It only effects those who are of an Heir class or higher',500,8166),
  17. (370,3,'Clan Vitality',5,'Increases clan members Max HP. It only effects those who are of an Heir class or higher',500,8166),
  18. (371,1,'Clan Spirituality',6,'Increases clan members Max CP. It only effects those who are of a Baron class or higher',800,8169),
  19. (371,2,'Clan Spirituality',6,'Increases clan members Max CP. It only effects those who are of a Baron class or higher',800,8169),
  20. (371,3,'Clan Spirituality',6,'Increases clan members Max CP. It only effects those who are of a Baron class or higher',800,8169),
  21. (372,1,'Clan Essence',8,'Increases clan members Max MP. It only effects those who are of a Viscount class or higher',3900,8172),
  22. (372,2,'Clan Essence',8,'Increases clan members Max MP. It only effects those who are of a Viscount class or higher',3900,8172),
  23. (372,3,'Clan Essence',8,'Increases clan members Max MP. It only effects those who are of a Viscount class or higher',3900,8172),
  24. (373,1,'Clan Lifeblood',5,'Increases the clan members HP regeneration. Only affects Heir class and above',500,8166),
  25. (373,2,'Clan Lifeblood',5,'Increases the clan members HP regeneration. Only affects Heir class and above',500,8166),
  26. (373,3,'Clan Lifeblood',5,'Increases the clan members HP regeneration. Only affects Heir class and above',500,8166),
  27. (374,1,'Clan Morale',6,'Increases the clan members CP regeneration. Only affects Elder class and above',900,8169),
  28. (374,2,'Clan Morale',6,'Increases the clan members CP regeneration. Only affects Elder class and above',900,8169),
  29. (374,3,'Clan Morale',6,'Increases the clan members CP regeneration. Only affects Elder class and above',900,8169),
  30. (375,1,'Clan Clarity',8,'Increases the clan members MP regeneration. Only affects Viscount class and above',3900,8172),
  31. (375,2,'Clan Clarity',8,'Increases the clan members MP regeneration. Only affects Viscount class and above',3900,8172),
  32. (375,3,'Clan Clarity',8,'Increases the clan members MP regeneration. Only affects Viscount class and above',3900,8172),
  33. (376,1,'Clan Might',6,'Increases the clan members P. Atk. Only affects Knight class and above',1000,8163),
  34. (376,2,'Clan Might',6,'Increases the clan members P. Atk. Only affects Knight class and above',1000,8163),
  35. (376,3,'Clan Might',6,'Increases the clan members P. Atk. Only affects Knight class and above',1000,8163),
  36. (377,1,'Clan Aegis',6,'Increases clan members P. Def. It only effects those who are of a Knight class or higher',1000,8166),
  37. (377,2,'Clan Aegis',6,'Increases clan members P. Def. It only effects those who are of a Knight class or higher',1000,8166),
  38. (377,3,'Clan Aegis',6,'Increases clan members P. Def. It only effects those who are of a Knight class or higher',1000,8166),
  39. (378,1,'Clan Empowerment',8,'Increases clan members M. Atk. It only effects those who are of a Viscount class or higher',3900,8172),
  40. (378,2,'Clan Empowerment',8,'Increases clan members M. Atk. It only effects those who are of a Viscount class or higher',3900,8172),
  41. (378,3,'Clan Empowerment',8,'Increases clan members M. Atk. It only effects those who are of a Viscount class or higher',3900,8172),
  42. (379,1,'Clan Magic Protection',5,'Increases clan members M. Def. It only effects those who are of an Heir class or higher',500,8163),
  43. (379,2,'Clan Magic Protection',5,'Increases clan members M. Def. It only effects those who are of an Heir class or higher',500,8163),
  44. (379,3,'Clan Magic Protection',5,'Increases clan members M. Def. It only effects those who are of an Heir class or higher',500,8163),
  45. (380,1,'Clan Guidance',7,'Increases the clan members Accuracy. Only affects Baron class and above',1900,8160),
  46. (380,2,'Clan Guidance',7,'Increases the clan members Accuracy. Only affects Baron class and above',1900,8160),
  47. (380,3,'Clan Guidance',7,'Increases the clan members Accuracy. Only affects Baron class and above',1900,8160),
  48. (381,1,'Clan Agility',8,'Increases the clan members Evasion. Only affects Baron class and above',4000,8160),
  49. (381,2,'Clan Agility',8,'Increases the clan members Evasion. Only affects Baron class and above',4000,8160),
  50. (381,3,'Clan Agility',8,'Increases the clan members Evasion. Only affects Baron class and above',4000,8160),
  51. (382,1,'Clan Withstand-Attack',7,'Increases clan members Shield defense probability. It only effects those who are of a Viscount class or higher',800,8160),
  52. (382,2,'Clan Withstand-Attack',7,'Increases clan members Shield defense probability. It only effects those who are of a Viscount class or higher',800,8160),
  53. (382,3,'Clan Withstand-Attack',7,'Increases clan members Shield defense probability. It only effects those who are of a Viscount class or higher',800,8160),
  54. (383,1,'Clan Shield Boost',6,'Increases clan members Shield P. Def. It only effects those who are of a Baron class or higher',800,8163),
  55. (383,2,'Clan Shield Boost',6,'Increases clan members Shield P. Def. It only effects those who are of a Baron class or higher',800,8163),
  56. (383,3,'Clan Shield Boost',6,'Increases clan members Shield P. Def. It only effects those who are of a Baron class or higher',800,8163),
  57. (384,1,'Clan Cyclonic Resistance',7,'Increases clan members resistance to water and wind attacks. It only effects those who are of a Viscount class or higher',1800,8176),
  58. (384,2,'Clan Cyclonic Resistance',7,'Increases clan members resistance to water and wind attacks. It only effects those who are of a Viscount class or higher',1800,8176),
  59. (384,3,'Clan Cyclonic Resistance',7,'Increases clan members resistance to water and wind attacks. It only effects those who are of a Viscount class or higher',1800,8176),
  60. (385,1,'Clan Magmatic Resistance',7,'Increase clan members resistance to fire/earth attacks. It only effects those who are of a Viscount class or higher',1800,8176),
  61. (385,2,'Clan Magmatic Resistance',7,'Increase clan members resistance to fire/earth attacks. It only effects those who are of a Viscount class or higher',1800,8176),
  62. (385,3,'Clan Magmatic Resistance',7,'Increase clan members resistance to fire/earth attacks. It only effects those who are of a Viscount class or higher',1800,8176),
  63. (386,1,'Clan Fortitude',7,'Increases the clan members resistance to shock attacks. Only affects Viscount class and above',1000,8176),
  64. (386,2,'Clan Fortitude',7,'Increases the clan members resistance to shock attacks. Only affects Viscount class and above',1000,8176),
  65. (386,3,'Clan Fortitude',7,'Increases the clan members resistance to shock attacks. Only affects Viscount class and above',1000,8176),
  66. (387,1,'Clan Freedom',7,'Increases the clan members resistance to hold attacks. Only affects Viscount class and above',1800,8176),
  67. (387,2,'Clan Freedom',7,'Increases the clan members resistance to hold attacks. Only affects Viscount class and above',1800,8176),
  68. (387,3,'Clan Freedom',7,'Increases the clan members resistance to hold attacks. Only affects Viscount class and above',1800,8176),
  69. (388,1,'Clan Vigilance',7,'Increases the clan members resistance to sleep attacks. Only affects Viscount class and above',1800,8176),
  70. (388,2,'Clan Vigilance',7,'Increases the clan members resistance to sleep attacks. Only affects Viscount class and above',1800,8176),
  71. (388,3,'Clan Vigilance',7,'Increases the clan members resistance to sleep attacks. Only affects Viscount class and above',1800,8176),
  72. (389,1,'Clan March',8,'Increases clan members Speed. It only effects those who are of a Count class or higher',3800,8175),
  73. (389,2,'Clan March',8,'Increases clan members Speed. It only effects those who are of a Count class or higher',3800,8175),
  74. (389,3,'Clan March',8,'Increases clan members Speed. It only effects those who are of a Count class or higher',3800,8175),
  75. (390,1,'Clan Luck',7,'Decreases Exp. loss and the chance of other death penalties when killed by a monster or player. It only effects those who are of an Heir class or higher',2200,8175),
  76. (390,2,'Clan Luck',7,'Decreases Exp. loss and the chance of other death penalties when killed by a monster or player. It only effects those who are of an Heir class or higher',2200,8175),
  77. (390,3,'Clan Luck',7,'Decreases Exp. loss and the chance of other death penalties when killed by a monster or player. It only effects those who are of an Heir class or higher',2200,8175),
  78. (391,1,'Clan Imperium',5,'Grants the privilege of Command Channel formation. It only effects Sage / Elder class and above',0,8176);