skill_copyable_db.txt 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // Copyable Skills Database
  2. // List of skills able to be copied by Intimidate/Plagiarism and Reproduce.
  3. //
  4. // Sources:
  5. // http://irowiki.org/wiki/Intimidate
  6. // -> "Intimidate will copy any 2nd class skill"
  7. // http://irowiki.org/wiki/Reproduce/List_of_reproducible_skills
  8. // -> "Players can reproduce 1-x, 2-x, and 3-x skills and Expanded Class,
  9. // but cannot reproduce transcendent skills"
  10. //
  11. // Structure of Database:
  12. // SkillName,Option{,JobAllowed{,RequirementRemoved}}
  13. //
  14. // Option (bitmask) determines how a skill can be copied.
  15. // 1 = Plagiarism
  16. // 2 = Reproduce
  17. //
  18. // JobAllowed (bitmask) restricts copying the skill to certain classes.
  19. // By default, all jobs can copy the skill (0).
  20. // 1 = Rogue
  21. // 2 = Stalker
  22. // 4 = Shadow Chaser
  23. // 8 = Trans. Shadow Chaser
  24. // 16 = Baby Rouge
  25. // 32 = Baby Shadow Chaser
  26. //
  27. // RequirementRemoved (bitmask) removes requirements when casting a copied skill.
  28. // See 'skill_require_db.txt' for specific skill requirements.
  29. // 0 = uses original requirement(s)
  30. // 1 = hp
  31. // 2 = maxhptrigger
  32. // 4 = sp
  33. // 8 = hprate
  34. // 16 = sprate
  35. // 32 = zeny
  36. // 64 = weapon type
  37. // 128 = ammo (with the amount)
  38. // 256 = state
  39. // 512 = statuses
  40. // 1024 = spirit sphere
  41. // 2048 = items (with the amount)
  42. // 4096 = equipments
  43. //
  44. // Examples:
  45. // AS_SONICBLOW,2,63,64
  46. // Sonic Blow can be copied by all jobs with only Plagiarism.
  47. // To use the copied skill, a Katar is not needed (a Sonic Blow weapon type requirement).
  48. //
  49. // CR_ACIDDEMONSTRATION,3,10
  50. // Acid Demonstration can only be copied by Stalker/Trans. Shadow Chaser with Plagiarism or Reproduce.
  51. // This mode simulates the previous battle config, which allowed only Trans. classes to copy Trans. skills.