Guest User

Untitled

a guest
Nov 14th, 2020
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.32 KB | None | 0 0
  1. # Choose whether the christmas crackers feature should be enabled
  2. enable: true
  3.  
  4. # List of all crackers
  5. crackers:
  6.  # Cracker name (will be used inside the /cracker command)
  7.   example:
  8.    # Cracker item, more info: https://docs.brcdev.net/#/item-meta
  9.     item:
  10.       material: BLAZE_ROD
  11.       name: "&2Chr&4ist&2mas &4Cra&2cker"
  12.       lore:
  13.        - " "
  14.         - "&7Right click to open!"
  15.     # Choose how many items should drop from each cracker (it's a random value between min and max values - they can be equal as well)
  16.     minDrops: 1
  17.     maxDrops: 3
  18.     # Items which will be dropped from crackers
  19.     drops:
  20.      # Drop ID, value doesn't matter but has to be unique
  21.       1:
  22.        # Type of dropped item, valid values are item/permission/command (enchantment isn't supported in crackers)
  23.         type: item
  24.         # Chance to get this drop (out of total of chances of all drop listed below, it DOESN'T HAVE to sum up to 1.0)
  25.         chance: 0.6
  26.         # Drop item, more info: https://docs.brcdev.net/#/item-meta
  27.         item:
  28.           material: APPLE
  29.           quantity: 16
  30.       2:
  31.         type: item
  32.         chance: 0.3
  33.         item:
  34.           material: GOLD_INGOT
  35.           quantity: 16
  36.       3:
  37.         type: item
  38.         chance: 0.1
  39.         item:
  40.           material: DIAMOND
  41.           quantity: 3
Add Comment
Please, Sign In to add comment