RMF Block Tags - regfunkid/reg-more-foods GitHub Wiki
These are block tags used by the datapack, for various reasons or uses.
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"
]
}
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"
]
}
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"
]
}
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"
]
}
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"
]
}
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"
]
}
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"
]
}
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"
]
}