RMF Block Tags - regfunkid/reg-more-foods GitHub Wiki

These are block tags used by the datapack, for various reasons or uses.

rmf:block/can_heat_baking_pan

Blocks that are used to heat the Baking Pan.

rmf:block/can_heat_baking_pan
{
  "values": [
    "minecraft:blast_furnace",
    "minecraft:furnace",
    "minecraft:magma_block",
    "minecraft:smoker",
    "minecraft:soul_campfire",
    "minecraft:soul_fire"
  ]
}

rmf:block/can_heat_frying_pan

Blocks that are used to heat the Frying Pan.

rmf:block/can_heat_frying_pan
{
  "values": [
    "minecraft:campfire",
    "minecraft:blast_furnace",
    "minecraft:fire",
    "minecraft:furnace",
    "minecraft:magma_block",
    "minecraft:smoker",
    "minecraft:soul_campfire",
    "minecraft:soul_fire"
  ]
}

rmf:block/can_roast_on

Blocks in this tag are used by the Marshmallow on a Stick for detecting if it can be roasted on it.

rmf:block/can_roast_on
{
  "values": [
    "minecraft:campfire",
    "minecraft:fire",
    "minecraft:lava",
    "minecraft:magma_block",
    "minecraft:soul_campfire",
    "minecraft:soul_fire"
  ]
}

rmf:block/crowbar_mineable

Blocks in this tag can be mined like a pickaxe when holding a Crowbar.

rmf:block/crowbar_mineable
{
  "values": [
    "minecraft:iron_bars",
    "minecraft:iron_door",
    "minecraft:iron_trapdoor"
  ]
}

rmf:block/heats_baking_pan_always

Blocks in this tag will always heat the Baking Pan when cooked on it. Putting a block in this tag won't make the Baking Pan work on its own--the block also needs to be in the #rmf:block/can_heat_baking_pan tag.

rmf:block/heats_baking_pan_always
{
  "values": [
    "minecraft:soul_fire",
    "minecraft:magma_block"
  ]
}

rmf:block/heats_baking_pan_if_lit

Blocks in this tag will only heat the Baking Pan if they've been turned on, or "lit". Putting a block in this tag won't make the Baking Pan work on its own--the block also needs to be in the #rmf:block/can_heat_baking_pan tag.

rmf:block/heats_baking_pan_if_lit
{
  "values": [
    "minecraft:soul_campfire",
    "minecraft:furnace",
    "minecraft:smoker",
    "minecraft:blast_furnace"
  ]
}

rmf:block/heats_frying_pan_always

Blocks in this tag will always heat the Frying Pan when cooked on it. Putting a block in this tag won't make the Frying Pan work on its own--the block also needs to be in the #rmf:block/can_heat_frying_pan tag.

rmf:block/heats_frying_pan_if_lit
{
  "values": [
    "minecraft:fire",
    "minecraft:soul_fire",
    "minecraft:magma_block"
  ]
}

rmf:block/heats_frying_pan_if_lit

Blocks in this tag will only heat the Frying Pan if they've been turned on, or "lit". Putting a block in this tag won't make the Frying Pan work on its own--the block also needs to be in the #rmf:block/can_heat_frying_pan tag.

rmf:block/heats_frying_pan_if_lit
{
  "values": [
    "minecraft:campfire",
    "minecraft:soul_campfire",
    "minecraft:furnace",
    "minecraft:smoker",
    "minecraft:blast_furnace"
  ]
}
⚠️ **GitHub.com Fallback** ⚠️