Skip to main content

Crop Fully Grown

The arc:crop_fully_grown condition type checks if a crop is fully grown.

Parameters

This condition type does not have any parameters.

Example

The following example doubles the drops when a player harvests a fully grown wheat crop.

data/my_datapack/arc/double_wheat_drops.json
{
"holder": {
"type": "arc:player",
"id": "arc:player"
},
"type": "arc:on_harvest_crop",
"conditions": [
{
"type": "arc:block",
"block": "minecraft:wheat"
},
{
"type": "arc:crop_fully_grown"
}
],
"rewards": [
{
"type": "arc:block_drop_multiplier",
"multiplier": 2
}
]
}

Compatible Action Types