The incinerator should be able to take any item in the game as an input and destroy it. However, I cannot find a way to allow any item in the game as an input. If I specify an input item then it works perfectly. I'd rather not have to go through every item in the game and add it to this mod to make it work. That would be tedious and more importantly limit mod support.
Here is my recipe:
Code: Select all
{
type = "recipe",
name = "annihilate",
category = "incineration",
hidden = "true",
energy_required = 1,
ingredients =
{
{type="item", name="iron-plate", amount=1}
},
results =
{
{type="item", name="incinerated", amount=1, probability=0},
},
subgroup = "void",
icon = "__incinerator__/graphics/icons/incinerated.png"
}
Any ideas?