|
@@ -1,27 +1,32 @@
|
|
|
-// Available Skills for Intimidate/Plagiarism or Reproduce
|
|
|
-// ====================================================
|
|
|
+// Copyable Skills Database
|
|
|
+// List of skills able to be copied by Intimidate/Plagiarism and Reproduce.
|
|
|
+//
|
|
|
+// Sources:
|
|
|
// http://irowiki.org/wiki/Intimidate
|
|
|
// -> "Intimidate will copy any 2nd class skill"
|
|
|
// http://irowiki.org/wiki/Reproduce/List_of_reproducible_skills
|
|
|
-// -> "Players can reproduce 1-x, 2-x, and 3-x skills and Expanded Class, but cannot
|
|
|
-// reproduce transcendent skills"
|
|
|
-// ====================================================
|
|
|
+// -> "Players can reproduce 1-x, 2-x, and 3-x skills and Expanded Class,
|
|
|
+// but cannot reproduce transcendent skills"
|
|
|
+//
|
|
|
// Structure of Database:
|
|
|
-// SkillName,Option{,JobAllowed{,RequirementRemoved}}
|
|
|
-// ====================================================
|
|
|
-// Option is using bitmask of skill that can be copied by:
|
|
|
+// SkillName,Option{,JobAllowed{,RequirementRemoved}}
|
|
|
+//
|
|
|
+// Option (bitmask) determines how a skill can be copied.
|
|
|
// 1 = Plagiarism
|
|
|
// 2 = Reproduce
|
|
|
-// JobAllowed, the skill only can be copied by:
|
|
|
-// (0 or the default value makes all jobs can copy the skill)
|
|
|
-// 1 = Rogue
|
|
|
-// 2 = Stalker
|
|
|
-// 4 = Shadow Chaser
|
|
|
-// 8 = Trans. Shadow Chaser
|
|
|
-// 16 = Baby Rouge
|
|
|
-// 32 = Baby Shadow Chaser
|
|
|
-// RequirementRemoved, decide which requirement(s) that will be removed while checking.
|
|
|
-// 0 = makes the requirement(s) same like original requirement(s)
|
|
|
+//
|
|
|
+// JobAllowed (bitmask) restricts copying the skill to certain classes.
|
|
|
+// By default, all jobs can copy the skill (0).
|
|
|
+// 1 = Rogue
|
|
|
+// 2 = Stalker
|
|
|
+// 4 = Shadow Chaser
|
|
|
+// 8 = Trans. Shadow Chaser
|
|
|
+// 16 = Baby Rouge
|
|
|
+// 32 = Baby Shadow Chaser
|
|
|
+//
|
|
|
+// RequirementRemoved (bitmask) removes requirements when casting a copied skill.
|
|
|
+// See 'skill_require_db.txt' for specific skill requirements.
|
|
|
+// 0 = uses original requirement(s)
|
|
|
// 1 = hp
|
|
|
// 2 = maxhptrigger
|
|
|
// 4 = sp
|
|
@@ -35,19 +40,15 @@
|
|
|
// 1024 = spirit sphere
|
|
|
// 2048 = items (with the amount)
|
|
|
// 4096 = equipments
|
|
|
-// (see 'skill_require_db.txt' for requirement(s) detail)
|
|
|
-// ====================================================
|
|
|
-// Example of advanced usage:
|
|
|
-//AS_SONICBLOW,2,63,64
|
|
|
-// AS_SONICBLOW can be copied by all jobs by only Plagiarism. To use the copied skill,
|
|
|
-// doesn't need to use katar weapon (Sonic Blow weapon type requirement)
|
|
|
//
|
|
|
-//CR_ACIDDEMONSTRATION,3,10
|
|
|
-// CR_ACIDDEMONSTRATION only can be copied by Stalker/Trans. Shadow Chaser by Plagiarism
|
|
|
-// or Reproduce.
|
|
|
-// This mode just like previous battle config which there was option only allow Trans.
|
|
|
-// Skills only can be copied by Trans. class (Stalker/Trans. Shadow Chaser).
|
|
|
-// ====================================================
|
|
|
+// Examples:
|
|
|
+// AS_SONICBLOW,2,63,64
|
|
|
+// Sonic Blow can be copied by all jobs with only Plagiarism.
|
|
|
+// To use the copied skill, a Katar is not needed (a Sonic Blow weapon type requirement).
|
|
|
+//
|
|
|
+// CR_ACIDDEMONSTRATION,3,10
|
|
|
+// Acid Demonstration can only be copied by Stalker/Trans. Shadow Chaser with Plagiarism or Reproduce.
|
|
|
+// This mode simulates the previous battle config, which allowed only Trans. classes to copy Trans. skills.
|
|
|
|
|
|
//Swordsman
|
|
|
SM_BASH,3 //Bash
|