Advertisement
Guest User

Untitled

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