Block State (Data Type) - MerchantCalico/bovines-and-buttercups-archive GitHub Wiki

An Object which depicts a BlockState.

For vanilla block types, you can view their block states here.

Schema

Field Type Default Description
Name [Resource Location](/MerchantCalico/bovines-and-buttercups-archive/wiki/Resource-Location-(Data-Type)) Defines the resource location of the block type of this block state.
Properties [Object](/MerchantCalico/bovines-and-buttercups-archive/wiki/Object-(Data-Type)) Defines the individual properties for this block state.

Examples

{
  "type": "bovinesandbuttercups:block_state",
  "state": {
    "Name": "minecraft:red_mushroom_block",
    "Properties": {
      "north": false
    }
  }
}

This example is a Red Mushroom Block with a false north property.