enchantItemGroups.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/enchantItemGroups.xsd">
  3. <!-- General armor enchant group. -->
  4. <enchantRateGroup name="ARMOR_GROUP">
  5. <current enchant="0-2" chance="100" />
  6. <current enchant="3" chance="66.67" />
  7. <current enchant="4" chance="33.34" />
  8. <current enchant="5" chance="25" />
  9. <current enchant="6" chance="20" />
  10. <current enchant="7" chance="16.67" />
  11. <current enchant="8" chance="14.29" />
  12. <current enchant="9" chance="12.5" />
  13. <current enchant="10" chance="11.12" />
  14. <current enchant="11" chance="10.0" />
  15. <current enchant="12" chance="9.10" />
  16. <current enchant="13" chance="8.34" />
  17. <current enchant="14" chance="7.70" />
  18. <current enchant="15" chance="7.15" />
  19. <current enchant="16" chance="6.67" />
  20. <current enchant="17" chance="6.25" />
  21. <current enchant="18" chance="5.89" />
  22. <current enchant="19" chance="5.56" />
  23. <current enchant="20-65535" chance="0" />
  24. </enchantRateGroup>
  25. <!-- General full armor enchant group. -->
  26. <enchantRateGroup name="FULL_ARMOR_GROUP">
  27. <current enchant="0-3" chance="100" />
  28. <current enchant="4" chance="66.67" />
  29. <current enchant="5" chance="33.34" />
  30. <current enchant="6" chance="25" />
  31. <current enchant="7" chance="20" />
  32. <current enchant="8" chance="16.67" />
  33. <current enchant="9" chance="14.29" />
  34. <current enchant="10" chance="12.5" />
  35. <current enchant="11" chance="11.12" />
  36. <current enchant="12" chance="10.0" />
  37. <current enchant="13" chance="9.10" />
  38. <current enchant="14" chance="8.34" />
  39. <current enchant="15" chance="7.70" />
  40. <current enchant="16" chance="7.15" />
  41. <current enchant="17" chance="6.67" />
  42. <current enchant="18" chance="6.25" />
  43. <current enchant="19" chance="5.89" />
  44. <current enchant="20-65535" chance="0" />
  45. </enchantRateGroup>
  46. <!-- General fighter weapon enchant group. -->
  47. <enchantRateGroup name="FIGHTER_WEAPON_GROUP">
  48. <current enchant="0-2" chance="100" />
  49. <current enchant="3-14" chance="70" />
  50. <current enchant="15-65535" chance="35" />
  51. </enchantRateGroup>
  52. <!-- General mage weapon enchant group. -->
  53. <enchantRateGroup name="MAGE_WEAPON_GROUP">
  54. <current enchant="0-2" chance="100" />
  55. <current enchant="3-14" chance="40" />
  56. <current enchant="15-65535" chance="20" />
  57. </enchantRateGroup>
  58. <!-- Default scrolls enchanting route line. -->
  59. <enchantScrollGroup id="0">
  60. <!-- Bind armor group to all item slots except full armor. -->
  61. <enchantRate group="ARMOR_GROUP">
  62. <item slot="lhand" /> <!-- Left hand: Shields, Sigils -->
  63. <item slot="head" /> <!-- Head: Helmet -->
  64. <item slot="chest" /> <!-- Chest: Armor upper body. -->
  65. <item slot="legs" /> <!-- Legs: Armor lower body. -->
  66. <item slot="feet" /> <!-- Feet: Boots -->
  67. <item slot="gloves" /> <!-- Gloves: Gloves -->
  68. <item slot="neck" /> <!-- Neck: Necklaces -->
  69. <item slot="rear;lear" /> <!-- Right ear, Left ear: Earrings -->
  70. <item slot="rfinger;lfinger" /> <!-- Right finger, Left finger: Rings -->
  71. <item slot="belt" /> <!-- Belt: Belts -->
  72. <item slot="shirt" /> <!-- Shirt: Shirts -->
  73. </enchantRate>
  74. <!-- Bind only full armor group to to full armor slot items. -->
  75. <enchantRate group="FULL_ARMOR_GROUP">
  76. <item slot="fullarmor" /> <!-- Full Armor: Full armor pants are included. -->
  77. </enchantRate>
  78. <!-- Bind only fighter weapon group to all fighter weapons. -->
  79. <enchantRate group="FIGHTER_WEAPON_GROUP">
  80. <item slot="rhand" magicWeapon="false" /> <!-- Right hand: Weapons, Non magic weapon -->
  81. <item slot="lrhand" magicWeapon="false" /> <!-- Two hands: Weapons, Non magic weapon -->
  82. </enchantRate>
  83. <!-- Bind only mage weapon group to all magic weapons. -->
  84. <enchantRate group="MAGE_WEAPON_GROUP">
  85. <item slot="rhand" magicWeapon="true" /> <!-- Right hand: Weapons, Magic weapon -->
  86. <item slot="lrhand" magicWeapon="true" /> <!-- Two hands: Weapons, Magic weapon -->
  87. </enchantRate>
  88. </enchantScrollGroup>
  89. </list>