battle.conf 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //================= Hercules Configuration ================================
  2. //= _ _ _
  3. //= | | | | | |
  4. //= | |_| | ___ _ __ ___ _ _| | ___ ___
  5. //= | _ |/ _ \ '__/ __| | | | |/ _ \/ __|
  6. //= | | | | __/ | | (__| |_| | | __/\__ \
  7. //= \_| |_/\___|_| \___|\__,_|_|\___||___/
  8. //================= License ===============================================
  9. //= This file is part of Hercules.
  10. //= http://herc.ws - http://github.com/HerculesWS/Hercules
  11. //=
  12. //= Copyright (C) 2014-2019 Hercules Dev Team
  13. //=
  14. //= Hercules is free software: you can redistribute it and/or modify
  15. //= it under the terms of the GNU General Public License as published by
  16. //= the Free Software Foundation, either version 3 of the License, or
  17. //= (at your option) any later version.
  18. //=
  19. //= This program is distributed in the hope that it will be useful,
  20. //= but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. //= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. //= GNU General Public License for more details.
  23. //=
  24. //= You should have received a copy of the GNU General Public License
  25. //= along with this program. If not, see <http://www.gnu.org/licenses/>.
  26. //=========================================================================
  27. //= Battle Configuration File
  28. //=========================================================================
  29. battle_configuration: {
  30. // General battle-related settings.
  31. @include "conf/map/battle/battle.conf"
  32. // Settings specific to the client.
  33. @include "conf/map/battle/client.conf"
  34. // General drop-related configs.
  35. @include "conf/map/battle/drops.conf"
  36. // Experience rates, exp penalties, stats and max level settings.
  37. @include "conf/map/battle/exp.conf"
  38. // GM levels, atcommands and hack-related configs.
  39. @include "conf/map/battle/gm.conf"
  40. // Guild and WoE settings
  41. @include "conf/map/battle/guild.conf"
  42. // Battleground settings
  43. @include "conf/map/battle/battleground.conf"
  44. // Item/card-specific and crafting related options.
  45. @include "conf/map/battle/items.conf"
  46. // Mob related configuration
  47. @include "conf/map/battle/monster.conf"
  48. // Party related configuration
  49. @include "conf/map/battle/party.conf"
  50. // Pet related configuration
  51. @include "conf/map/battle/pet.conf"
  52. // Homunc related configuration
  53. @include "conf/map/battle/homunc.conf"
  54. // Player specific settings
  55. @include "conf/map/battle/player.conf"
  56. // Skill related settings
  57. @include "conf/map/battle/skill.conf"
  58. // Status change related settings
  59. @include "conf/map/battle/status.conf"
  60. // Feature control (on/off) settings
  61. @include "conf/map/battle/feature.conf"
  62. // Different calculation limits
  63. @include "conf/map/battle/limits.conf"
  64. // Anything else that didn't fit anywhere else.
  65. // Includes duel, day/night, mute/manner, log settings.
  66. @include "conf/map/battle/misc.conf"
  67. }
  68. // Your custom config goes here.
  69. import: "conf/import/battle.conf"