Skip to main content

Get 25% OFF on your first order with BisectHosting using code "DAQEM"!

Biome

The arc:biome condition type checks if the player is in one of the specified biomes.

Parameters

ParameterTypeRequiredDefaultDescription
biomesIdentifier[]Required-List of biomes to check.

Example

The following example gives regeneration when standing in a desert.

data/my_datapack/arc/desert_regen.json
{
"holder": {
"type": "arc:player",
"id": "arc:player"
},
"type": "arc:on_walk",
"conditions": [
{
"type": "arc:biome",
"biomes": [
"minecraft:desert"
]
}
],
"rewards": [
{
"type": "arc:effect",
"effect": {
"id": "minecraft:regeneration",
"duration": 20
}
}
]
}

Compatible Action Types