config.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Abba Caving Plugin by VonTum (https://github.com/VonTum)
  2. # Game duration in seconds
  3. Duration: 1800
  4. # Max players per game, users with permission AbbaCaving.joinFull can still join
  5. PlayerCap: 10
  6. # Denotes the redistribution of ores after the game by score.
  7. Redistribution:
  8. Enabled: true
  9. # Weight of ores to be allotted to the leaderboard players
  10. Top:
  11. - 7
  12. - 2
  13. # Share of the ores to be allotted to the other players
  14. Other: 1
  15. OthersShare: false
  16. # Example for 10 players
  17. # If OthersShare == true then the first player would receive 70% of winnings, second would receive 20% and the remaining 10% is divided among the 8 remaining players
  18. # If OthersShare == false then the first player would receive 7/(7+2+8*1)=7/17 of total winnings, second would receive 2/17 and every remaining player will get 1/17
  19. # Points awarded for each item at the end of an Abba Match
  20. # BlockData value can be added in () at the end of the type name
  21. ItemValues:
  22. - IRON_ORE=1
  23. - REDSTONE_ORE=2
  24. - GOLD_ORE=4
  25. - LAPIS_ORE=8
  26. - DIAMOND_ORE=10
  27. - EMERALD_ORE=10
  28. - DIAMOND_BARDING=10
  29. - GOLDEN_APPLE(1)=10
  30. # Enables the contraband scanner
  31. ScanContraband: true
  32. # Prohibited items, automatically includes entries in ItemValues
  33. Contraband:
  34. - GOLDEN_APPLE(0)
  35. - POTION
  36. # Enables debugging
  37. # ONLY USE IF YOU KNOW WHAT YOU ARE DOING OR HAVE BEEN ASKED TO DO SO BY A DEVELOPER
  38. Debug: false