Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1.  
  2. # Wearing heavy pieces of armors reduces
  3. # your movement speed by a specific amount,
  4. # relative to your current move speed.
  5. heavy-armors:
  6.  
  7. # The movement speed reduction in % for each heavy armor piece worn.
  8. speed-malus: 0.0
  9.  
  10. # The list of heavy armor pieces. By default gold is not
  11. # considered a heavy armor to incite players to use this armor set.
  12. list:
  13. #- DIAMOND_HELMET
  14. #- DIAMOND_CHESTPLATE
  15. #- DIAMOND_LEGGINGS
  16. #- DIAMOND_BOOTS
  17. #- IRON_HELMET
  18. #- IRON_CHESTPLATE
  19. #- IRON_LEGGINGS
  20. #- IRON_BOOTS
  21.  
  22. # The list of all conditions which must be met for the
  23. # BLOCK REGEN and BLOCK RESTRICTIONS to apply.
  24. # Set to 'custom-mine-conditions: []' for no condition.
  25. custom-mine-conditions: []
  26. #- 'world{name="world,world_nether,world_the_end"}'
  27. #- 'region{name="__global__"}'
  28.  
  29. # Offset is the distance traveled on X and Y coordinates
  30. # Height is the Y velocity coordinate. Lootsplosions
  31. # only trigger with MythicMobs monsters.
  32. # Requires a SERVER reload when changed.
  33. lootsplosion:
  34. enabled: true
  35. mmoitems-color: true
  36. offset: .2
  37. height: .6
  38.  
  39. party:
  40.  
  41. # Edit party buffs here. You may
  42. # add as many stats as you want.
  43. buff:
  44. health-regeneration: 1%
  45. additional-experience: 5%
  46.  
  47. # Prefix you need to put in the chat
  48. # to talk in the party chat.
  49. chat-prefix: '@'
  50.  
  51. # Enable this open to override vanilla EXP and display
  52. # level progress on the vanilla experience bar.
  53. # Requires a SERVER reload when changed.
  54. override-vanilla-exp: true
  55.  
  56. # Requires a SERVER reload when changed.
  57. death-exp-loss:
  58. enabled: true
  59.  
  60. # Percentage of current EXP you lose when dying.
  61. percent: 10
  62.  
  63. # Edit general plugin number formatting here.
  64. number-format:
  65. decimal-separator: .
  66.  
  67. # Allows to scale health up/down to a specific
  68. # amount so extra health does not fill up the screen.
  69. # Requires a SERVER reload when changed.
  70. health-scale:
  71. enabled: true
  72. scale: 40
  73.  
  74. # Players can swap their hotbar with the 9 inventory slots
  75. # right above it by pressing [swap items] while crouching.
  76. hotbar-swap: true
  77.  
  78. # Use this option if you're having issue with Anvil GUIs.
  79. # This replaces anvil inputs by chat inputs.
  80. use-chat-input: true
  81.  
  82. # Change this to the name of the color you want for
  83. # the different resource bar placeholders
  84. resource-bar-colors:
  85. mana-whole: 'BLUE'
  86. mana-half: 'AQUA'
  87. mana-empty: 'WHITE'
  88. stamina-whole: 'GREEN'
  89. stamina-half: 'DARK_GREEN'
  90. stamina-empty: 'WHITE'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement