Skip to content

RMF World Gen Tags

regfunkid edited this page Apr 18, 2026 · 4 revisions

Tags that are used for world gen/biome detection.

rmf:has_blackberries

Biomes in this tag will allow Blackberries to appear when the player is Punnet Gathering.

rmf:has_blackberries
{
  "values": [
    "minecraft:snowy_plains",
    "minecraft:snowy_taiga",
    "minecraft:snowy_slopes",
    "minecraft:snowy_beach",
    "minecraft:frozen_river"
  ]
}

rmf:has_blueberries

Biomes in this tag will allow Blueberries to appear when the player is Punnet Gathering.
Also shares entries with #rmf:has_taiga_beans.

rmf:has_blueberries
{
  "values": [
    "minecraft:old_growth_pine_taiga",
    "minecraft:old_growth_spruce_taiga",
    "minecraft:taiga"
  ]
}

rmf:has_coffee_beans

Biomes in this tag will allow Coffee Beans to appear when the player is Punnet Gathering.

rmf:has_coffee_beans
{
  "values": [
    "#minecraft:is_jungle"
  ]
}

rmf:has_pale_berries

Biomes in this tag will allow Pale Berries to appear when the player is Punnet Gathering.

rmf:has_pale_berries
{
  "values": [
    "minecraft:pale_garden"
  ]
}

rmf:has_raspberries

Biomes in this tag will allow Raspberries to appear when the player is Punnet Gathering.

rmf:has_raspberries
{
  "values": [
    "#minecraft:is_savanna"
  ]
}

rmf:has_strawberries

Biomes in this tag will allow Strawberries to appear when the player is Punnet Gathering.

rmf:has_strawberries
{
  "values": [
    "minecraft:plains",
    "minecraft:sunflower_plains",
    "minecraft:birch_forest",
    "minecraft:old_growth_birch_forest",
    "minecraft:dark_forest",
    "minecraft:river",
    "minecraft:forest",
    "minecraft:meadow"
  ]
}

rmf:has_taiga_beans

Biomes in this tag will allow Taiga Beans to appear when the player is Punnet Gathering.
Also shares entries with #rmf:has_blueberries.

rmf:has_taiga_beans
{
  "values": [
    "minecraft:old_growth_pine_taiga",
    "minecraft:old_growth_spruce_taiga",
    "minecraft:taiga"
  ]
}

rmf:has_wild_crops

Biomes in this tag will allow the player to find either Wild Carrots or Wild Potatoes when Punnet Gathering.

rmf:has_wild_crops
{
  "values": [
    "#rmf:has_blackberries",
    "#rmf:has_blueberries",
    "#rmf:has_raspberries",
    "#rmf:has_strawberries"
  ]
}

Clone this wiki locally