Advertisement
Marcely99

MBedwars Cosmetics: configs.yml

Aug 17th, 2022 (edited)
1,056
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.37 KB | None | 0 0
  1. file-version: 4
  2.  
  3. # The URL to your store that will be displayed throughout various places
  4. store-url: https://mbedwars.com
  5.  
  6. # For "animation-shoot-projectile": Automatically stop the animation when the projectile hits the ground
  7. stop-projectile-animation-on-ground: true
  8.  
  9. # For "animation-death": Only play animations when it's a final death (he won't respawn anymore)
  10. death-animation-only-final: false
  11.  
  12. # For "animation-kill": Only play animations when it's a final kill (opponent won't respawn anymore)
  13. kill-animation-only-final: true
  14.  
  15. # Allow the use for permissions to grant the use of an item
  16. # Permission: mbedwars_cosmetics.item.<item id>
  17. # Can be useful for e.g. crates
  18. # Keep in mind that it's possible that the player has to relog for the changes to get applied while he's online
  19. # Execute "/mbedwars addon cosmetics shop checkitempermissions <player>" to immediately reload the changes and not forcing him to relog
  20. enable-item-permissions: true
  21.  
  22. # Whether a confirmation GUI shall be shown when a player tries to open an item
  23. # In there, he has to click another button again to confirm that he is sure that he wants to buy the item
  24. enable-confirm-purchase-gui: true
  25.  
  26. # Maximum time in seconds of how long an animation may play
  27. max-durations:
  28.   animation-death: 5.0
  29.   animation-kill: 8.0
  30.   animation-victory: 1000.0
  31.   animation-bed-destroy: 15.0
  32.   animation-round-start: 8.0
  33.   animation-shoot-projectile: 25.0
  34.   skin-dealer: 12.0
  35.   skin-upgrade-dealer: 12.0
  36.  
  37. # All the existing rarities that can be used to e.g. as an visualization in the shop
  38. rarities:
  39.   common:
  40.     name: '&aCOMMON'
  41.     asc-worth-order: 1
  42.   legendary:
  43.     name: '&6LEGENDARY'
  44.     asc-worth-order: 4
  45.   rare:
  46.     name: '&bRARE'
  47.     asc-worth-order: 2
  48.   epic:
  49.     name: '&5EPIC'
  50.     default: true
  51.     asc-worth-order: 3
  52.  
  53. # The orders through which the player may switch between in the shop
  54. item-orders:
  55.   name-asc:
  56.     name: '%Cosmetics_Sort_Name_AtoZ%'
  57.     compare-by:
  58.       property: name
  59.       order: asc
  60.   name-desc:
  61.     name: '%Cosmetics_Sort_Name_ZtoA%'
  62.     compare-by:
  63.       property: name
  64.       order: desc
  65.   rarity-asc:
  66.     name: '%Cosmetics_Sort_Rarity_LowestFirst%'
  67.     default: true
  68.     compare-by:
  69.       property: rarity
  70.       order: asc
  71.   rarity-desc:
  72.     name: '%Cosmetics_Sort_Rarity_HighestFirst%'
  73.     compare-by:
  74.       property: rarity
  75.       order: desc
  76.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement