Skip to content

Block Transformation Guide

nitnelave edited this page May 1, 2014 · 2 revisions

This page concerns the replace.yml file in each world's directory. This file allows you to tell CreeperHeal to replace a block type by another. The format is simple:

BLOCK_TYPE:  
    type: TARGET_BLOCK_TYPE  
    data: TARGET_DATA  

BLOCK_TYPE;DATA:  
    type: TARGET_BLOCK_TYPE  
    data: TARGET_DATA  

For example, if you want to replace birch planks with stone, normal planks with mossy stone bricks, and all other types of planks with gold blocks, here's how you would do it:

WOOD_PLANK;2:
    type: STONE
WOOD_PLANK;0:
    type: SMOOTH_BRICK
    data: 2
WOOD_PLANK:
    type: GOLD_BLOCK

For more info on block data, see Minecraft data values

Clone this wiki locally