Guest User

DefaultBlocklist

a guest
Dec 27th, 2017
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.51 KB | None | 0 0
  1. #BlockRegen 2.0
  2. #
  3. #Developer: Aurorion
  4. #Version: 2.1
  5.  
  6. Blocks:
  7.    #The block that gets broken
  8.     DIAMOND_ORE:
  9.        #The block to replace it with, DIRT;2 being podzol
  10.         replace-block: DIRT;2
  11.         #The delay in which this block regens to its original state
  12.         #In seconds
  13.         regen-delay: 3
  14.         #If you installed Vault you can give players money. Set to 0 to disable
  15.         money: 100
  16.         #You can specify a command that is executed by the console
  17.         #Example: console-command: "give %player% apple 64"
  18.         #Leave empty to ignore this function
  19.         console-command: "say The console-command function is working!"
  20.         #You can specify a command that is executed by the player itself
  21.         #Example: console-command: "me I, %player%, executed this command"
  22.         #Leave empty to ignore this function
  23.         player-command: "me I, %player%, executed this command"
  24.         #The amount of durability that is taken from the item used to break the block.
  25.         #Set this to 0 to ignore the function
  26.         tool-damage: 100
  27.         #Give drops, exp and amount as it would be in vanilla
  28.         #Set this to false to use the other options
  29.         natural-break: false
  30.         #If natural-break set to false then the drop-item section is used
  31.         drop-item:
  32.            #The material of the dropped item, STONE;3 being diorite
  33.             material: STONE;3
  34.             #The name that is given to the dropped item
  35.             name: "&6&l[&3BlockRegen&6&l]"
  36.             #The lores that are given to the dropped item
  37.             lores:
  38.            - "&fThese are some lores"
  39.             - "&cAnd &6they &eeven &asupport &dcolors!"
  40.             #drop-naturally to false sends it directly to the players inventory if there is place (drops it otherwise)
  41.             #Setting it to true drops it on the ground as it would in vanilla
  42.             drop-naturally: false
  43.             exp:
  44.                #drop-naturally to false gives the player the amount of exp directly
  45.                 #Setting it to true drops it on the ground as it would in vanilla
  46.                 drop-naturally: true
  47.                 #The amount of exp it gives
  48.                 amount: 100
  49.             #How many should the player get?
  50.             #This generates a random number between, in this case, 0 and 5
  51.             amount:
  52.                 high: 5
  53.                 low: 0
  54.         #Events are added in 2.0 and can do a few things already
  55.         #It can double drops on specific ores, give double exp or make ores have a chance of dropping custom equips
  56.         #Not wish to use this? You can completly remove it without getting null errors
  57.         #Below is an example. Read more info on the spigot updates page.
  58.         event:
  59.             event-name: Double Diamonds
  60.             #Bossbar option are 1.9 and above only
  61.             bossbar:
  62.                 name: "&bDiamonds, diamonds everywhere!"
  63.                 color: BLUE
  64.             double-drops: true
  65.             double-exp: false
  66.             custom-item:
  67.                 enabled: false
  68.                 material: LEATHER_BOOTS
  69.                 name: "&dFancy &bshoes"
  70.                 lores:
  71.                - "&fLook at them shoessss"
  72.                 - "&eBling bling bling"
  73.                 drop-naturally: false
  74.                 #How rare is it to get the item. In this case a 1 in 50 chance of getting it.
  75.                 rarity: 50
  76.     LOG;2:
  77.         replace-block: BEDROCK
  78.         regen-delay: 3
  79.         money: 5
  80.         console-command: "say %player% is a badass lumberjack.."
  81.         player-command:
  82.         tool-damage: 100
  83.         natural-break: false
  84.         drop-item:
  85.             material: GOLDEN_APPLE;1
  86.             name: "&eNotch's snack"
  87.             lores:
  88.            - "&fWhat do you call a golden shovel"
  89.             - "&4A gold digger"
  90.             drop-naturally: false
  91.             exp:
  92.                 drop-naturally: false
  93.                 amount: 100
  94.             amount:
  95.                 high: 5
  96.                 low: 0
  97.         event:
  98.             event-name: Quackers
  99.             bossbar:
  100.                 name: "&aQuack quack quack"
  101.                 color: GREEN
  102.             double-drops: false
  103.             double-exp: false
  104.             custom-item:
  105.                 enabled: true
  106.                 material: Bread
  107.                 name: "&eGive it to them ducks"
  108.                 lores:
  109.                - "&dCrumbling"
  110.                 - "&aQuack quack quack"
  111.                 drop-naturally: true
  112.                 rarity: 10
Advertisement
Add Comment
Please, Sign In to add comment