Dispel Entity
On this page
Add a new Dispel Entity recipe
server_scriptsThis is the Dispel Entity recipe that allows you to dispel a Blaze that is on fire for it to drop loot.
| Key | Description | 
|---|---|
| entity | The entity that was dispelled | 
| loot_conditions | A list of loot conditions, all loot table conditions should be eligible | 
| loot_table | The loot table that should produce loot after the dispel | 
ServerEvents.recipes(event => {  event.custom({    type: "ars_nouveau:dispel_entity",    entity: "minecraft:blaze",    id: "ars_nouveau:blaze_powder",    loot_conditions: [      {        condition: "minecraft:entity_properties",        entity: "this",        predicate: {          flags: {            is_on_fire: true          }        }      }    ],    loot_table: "minecraft:entities/blaze"  });});Prev
 Crush Next
 Enchanting Apparatus