quest_db.yml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. # Quest Database
  20. ###########################################################################
  21. #
  22. # Quest Settings
  23. #
  24. ###########################################################################
  25. # - Id Quest ID.
  26. # Title Quest title.
  27. # TimeLimit Amount of time before the quest expires. (Default: 0)
  28. # Use a number following by "d" for day(s), "h" for hour(s), "mn" for minute(s), and "s" for second(s).
  29. # Specify with "+" for how long until the quest expires.
  30. # Specify without "+" for the exact time the quest expires using "d" (optional), [0-23]"h" (required), [0-59]"mn" (optional), [0-59]"s" (optional) format.
  31. # Please note the number before "d" only shift the exact timer to the given day(s).
  32. # Targets: Quest objective target. (Default: null)
  33. # The target can be a couple of node Mob/Count or of Id/Race/Size/Element/MinLevel/MaxLevel.
  34. # If Mob is supplied, Count is required and the other fields are ignored.
  35. # If Id is supplied, at least one other field of Race/Size/Element/MinLevel/MaxLevel is required.
  36. # If Id is supplied, Count is required for each new entry.
  37. # - Mob Monster to kill (aegis monster name).
  38. # Count Amount of monsters to kill. Set to 0 to skip the target on import.
  39. # Id Unique target index for the quest Id. Requires a positive number.
  40. # Race Monster race target (default All). Valid races are Angel, Brute, DemiHuman, Demon, Dragon, Fish, Formless, Insect, Plant, Undead, All.
  41. # Size Monster size target (default All). Valid sizes are Small, Medium, Large, All.
  42. # Element Monster element target (default All). Valid elements are Dark, Earth, Fire, Ghost, Holy, Neutral, Poison, Undead, Water, Wind, All.
  43. # MinLevel Minimum monster level target. If not supplied but MaxLevel defined, MinLevel is 1. Set to 0 to ignore MinLevel on import. (Default: 0)
  44. # MaxLevel Maximum monster level target. Set to 0 to ignore MaxLevel on import. (Default: 0)
  45. # Location Name of hunting location from mapindex. (Default any location)
  46. # MapName Displayed map name in quest UI. (Default: empty string)
  47. # Drops: Quest item drop targets. (Default: null)
  48. # - Mob Monster to kill. 0 will apply to all monsters. (Default: 0)
  49. # Item Item to drop.
  50. # Count Amount of items that will drop. Non-stackable items default to 1. (Default: 1)
  51. # Rate Item drop rate. (10000 = 100%)
  52. ###########################################################################
  53. Header:
  54. Type: QUEST_DB
  55. Version: 2
  56. Footer:
  57. Imports:
  58. - Path: db/pre-re/quest_db.yml
  59. Mode: Prerenewal
  60. - Path: db/re/quest_db.yml
  61. Mode: Renewal
  62. - Path: db/import/quest_db.yml