Advertisement
Guest User

daycare.conf

a guest
Aug 18th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. breeding {
  2. # The percent chance of an egg being produced every breed attempt.
  3. #
  4. # For example, there is a 15% chance, by default, for an egg to be produced every iteration.
  5. # The 15% is specified with 15.0.
  6. egg-chance=15
  7. # Whether pokemon can breed in the daycare.
  8. enabled=true
  9. # The max number of minutes a user will wait before a pen breeds, if it can
  10. max-wait=15
  11. styles {
  12. method=pixlemon-native
  13. timed-chance {
  14. egg-chance=25.0
  15. max-wait=15
  16. }
  17. }
  18. # How many seconds to wait before attempting a breeding opportunity
  19. task-run=150
  20. }
  21. leveling {
  22. # Whether pokemon should be able to level up at all. Overrides individual player settings.
  23. enabled=true
  24. price-per-level=500
  25. # Dictates how quickly the level up task will run for all active ranches.
  26. # The time specified is in seconds, allowing you to be extra precise!
  27. task-run=60
  28. wait-time=300
  29. }
  30. pens {
  31. # The number of pens a player should have access to
  32. base-num-pens=14
  33. # Whether or not a player should have their first pen unlocked by default
  34. first-pen-unlocked=true
  35. # Pricing for individual pens comes at a very nice convenience. You are given three variables,
  36. # the pen ID (1-14), the base price of a pen, and an increment. With these variables, you can
  37. # define an equation that will determine the pricing of pens as they go upwards. For instance,
  38. # we can have pen 1 be worth 5000, and have pen 2 worth 5500, with an increment of 500.
  39. #
  40. # NOTE: Variables should only be a singular character...
  41. pricing {
  42. base-price=30000
  43. increment=30000
  44. # With the default setup, this will equate to something like such:
  45. # P(i) = 5000 + i * 500
  46. #
  47. # You may check your prices via the command /daycare admin prices
  48. price-equation="b + i * p"
  49. }
  50. }
  51. plugin-language="en_US"
  52. storage {
  53. data {
  54. connection-info {
  55. address=localhost
  56. database=daycare
  57. password=password
  58. username=username
  59. }
  60. sql-table-prefix="daycare_"
  61. }
  62. storage-method=h2
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement