Blocks

You can also create custom ores/blocks with their custom drops! The config file is blocks.yml

blocks.yml

ruby_ore:
  enabled: true
  permission: ruby_ore
  model_id: 14
  name: '&fRuby Ore'
  specific_properties:
    light_level: 15
    break_tools_blacklist:
      - WOODEN_PICKAXE
      - STONE_PICKAXE
    break_tools_whitelist:
      - PICKAXE
    ore:
      spawn_worlds:
        - world
      max_height: 16
      amount: 6
      iterations: 3
    cancel_drop: true
    drop_on_silktouch: true

Specific properties

  specific_properties:
    light_level: 15 #make block emit light
    #tools you can't use to break block(accepts partial name of material/customitem)
    break_tools_blacklist:
      - WOODEN_PICKAXE
      - STONE_PICKAXE
    #tools you can use to break block(accepts partial name of material/customitem)
    break_tools_whitelist: 
      - PICKAXE
    ore: #ore properties
      spawn_worlds: #list of worlds where the block must be spawned
        - world #world name
      max_height: 16 #max height where to spawn the blocks
      amount: 6 #amount of blocks to spawn
      iterations: 3 #amount of times to repeat this process
      chance: 20 #chance (20%) of spawning the ore in the current chunk 
    cancel_drop: true #default is false. if true the custom block won't be dropped when
                      #player mines it
    drop_on_silktouch: true #drops the current block when broken with silktouch

Click the link below to see how to create minerals to be dropped from your custom ore

If you are going to ask if you can create custom shaped blocks (stairs slabs) click below:

pageCan I create slabs, stairs...pageMinerals

Last updated