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
Here you can see the ruby_ore spawned under the world (I'm using X-Ray to see them)
Can I create slabs, stairs...Minerals

Last updated

Was this helpful?