Is Blasting Recipe
The arc:is_blasting_recipe condition type checks if a recipe is specifically for a blast furnace.
Parameters
This condition type does not have any parameters.
Example
The following example will give the player a piece of coal every time they smelt an item in a blast furnace.
{
"holder": {
"type": "arc:player",
"id": "arc:player"
},
"type": "arc:on_smelt_item",
"conditions": [
{
"type": "arc:is_blasting_recipe"
}
],
"rewards": [
{
"type": "arc:item",
"item": { "id": "minecraft:coal" }
}
]
}
Compatible Action Types
🛠️ On Craft Item
The arc:oncraftitem action type is triggered when a player crafts an item.
🔥 On Smelt Item
The arc:onsmeltitem action type is triggered when a player takes an item out of a furnace, smoker, or blast furnace. Just like experience orbs in vanilla Minecraft, this action also counts the items that are taken out with a hopper. As long as the player takes out one of the smelted items, the action will be triggered. The action is called for every item smelted individually, regardless of how many are taken out at once.