config.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Abba Caving Plugin by lennartVH01
  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. #Example Game with 10 players
  7. # All: 1
  8. # Top:
  9. # - 7
  10. # - 2
  11. # If FixPlayerWeight == 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
  12. # If FixPlayerWeight == 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
  13. # Points awarded for each item at the end of an Abba Match
  14. ItemValues:
  15. - type: IRON_ORE
  16. Value: 1
  17. - type: REDSTONE_ORE
  18. Value: 2
  19. - type: GOLD_ORE
  20. Value: 4
  21. - type: LAPIS_ORE
  22. Value: 8
  23. - type: DIAMOND_ORE
  24. Value: 10
  25. - type: EMERALD_ORE
  26. Value: 10
  27. - type: DIAMOND_BARDING
  28. Value: 10
  29. - type: GOLDEN_APPLE
  30. damage: 1
  31. Value: 10
  32. # Enables the contraband scanner
  33. ScanContraband: true
  34. # Prohibited items, automatically includes entries in ItemValues
  35. Contraband:
  36. - type: GOLDEN_APPLE
  37. damage: 0
  38. - type: POTION
  39. # Enables debugging
  40. # ONLY USE IF YOU KNOW WHAT YOU ARE DOING OR HAVE BEEN ASKED TO DO SO BY A DEVELOPER
  41. Debug: false