job_stats.yml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. # This file is a part of rAthena.
  2. # Copyright(C) 2021 rAthena Development Team
  3. # https://rathena.org - https://github.com/rathena
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. #
  18. ###########################################################################
  19. # Job Database
  20. ###########################################################################
  21. #
  22. # Job Settings
  23. #
  24. ###########################################################################
  25. # - Jobs: List of jobs associated to group.
  26. # Job Job name.
  27. # MaxWeight Base maximum weight. (Default: 20000)
  28. # HpFactor Exponential HP increase. Per base level: [HpFactor * BaseLv / 100]. Used when macro HP_SP_TABLES is disabled. (Default: 0)
  29. # HpIncrease Linear HP increase. Per base level: [HpIncrease / 100]. Used when macro HP_SP_TABLES is disabled. (Default: 500)
  30. # SpFactor Exponential SP increase. Per base level: [SpFactor * BaseLv / 100]. Used when macro HP_SP_TABLES is disabled. (Default: 0)
  31. # SpIncrease Linear SP increase. Per base level: [SpIncrease / 100]. Used when macro HP_SP_TABLES is disabled. (Default: 100)
  32. # ApFactor Exponential AP increase. Per base level: [ApFactor * BaseLv / 100]. Used when macro HP_SP_TABLES is disabled. (Default: 0)
  33. # ApIncrease Linear AP increase. Per base level: [ApIncrease / 100]. Used when macro HP_SP_TABLES is disabled. (Default: 0)
  34. # BaseASPD: Base ASPD for each weapon type. (Default: 2000)
  35. # Weapon Weapon type with associated ASPD.
  36. # BonusStats: Job level bonus stats/traits.
  37. # - Level Job level.
  38. # Str Stength increase amount. (Default: 0)
  39. # Agi Agility increase amount. (Default: 0)
  40. # Vit Vitality increase amount. (Default: 0)
  41. # Int Intelligence increase amount. (Default: 0)
  42. # Dex Dexterity increase amount. (Default: 0)
  43. # Luk Luck increase amount. (Default: 0)
  44. # Pow Power increase amount. (Default: 0)
  45. # Sta Stamina increase amount. (Default: 0)
  46. # Wis Wisdom increase amount. (Default: 0)
  47. # Spl Spell increase amount. (Default: 0)
  48. # Con Concentration increase amount. (Default: 0)
  49. # Crt Creative increase amount. (Default: 0)
  50. # MaxStats: Maximum stats/traits applicable. (Default: battle_config::max_*_parameter)
  51. # Str Strength.
  52. # Agi Agility.
  53. # Vit Vitality.
  54. # Int Intelligence.
  55. # Dex Dexterity.
  56. # Luk Luck.
  57. # Pow Power.
  58. # Sta Stamina.
  59. # Wis Wisdom.
  60. # Spl Spell.
  61. # Con Concentration.
  62. # Crt Creative.
  63. # MaxBaseLevel Maximum base level. (Default: MAX_LEVEL)
  64. # BaseExp: Base experience per level.
  65. # - Level Base level.
  66. # Exp Base experience.
  67. # MaxJobLevel Maximum job level. (Default: MAX_LEVEL)
  68. # JobExp: Job experience per level.
  69. # - Level Job level.
  70. # Exp Job experience.
  71. # BaseHp: Base HP per base level.
  72. # - Level Base level.
  73. # Hp Base HP.
  74. # BaseSp: Base SP per base level.
  75. # - Level Base level.
  76. # Sp Base SP.
  77. # BaseAp: Base AP per base level.
  78. # - Level Base level.
  79. # Ap Base AP.
  80. ###########################################################################
  81. Header:
  82. Type: JOB_STATS
  83. Version: 3
  84. Footer:
  85. Imports:
  86. # Load base information first
  87. - Path: db/pre-re/job_stats.yml
  88. Mode: Prerenewal
  89. - Path: db/re/job_stats.yml
  90. Mode: Renewal
  91. # Next, populate with ASPD information
  92. # If RENEWAL is defined and RENEWAL_ASPD is not defined then the pre-renewal file is loaded
  93. - Path: db/pre-re/job_aspd.yml
  94. Mode: Prerenewal
  95. - Path: db/re/job_aspd.yml
  96. Mode: Renewal
  97. # Next, populate with experience information
  98. - Path: db/pre-re/job_exp.yml
  99. Mode: Prerenewal
  100. - Path: db/re/job_exp.yml
  101. Mode: Renewal
  102. # Next, populate HP/SP/AP information
  103. - Path: db/pre-re/job_basepoints.yml
  104. Mode: Prerenewal
  105. - Path: db/re/job_basepoints.yml
  106. Mode: Renewal
  107. # Finally, import custom information
  108. - Path: db/import/job_stats.yml