Dishwasher
Link to dishwasher
The Dishwasher allows you to clean dirty tools.
By default repairs durability of vanilla tools and weapons only.
Removing
Link to removing
Remove matching washable items.
Link to remove-matching-washable-items
ZenScript Copymods.cfm.Dishwasher.remove(@Optional final IIngredient item);
mods.cfm.Dishwasher.remove(<minecraft:flint_and_steel>);
// Remove all washable items.
mods.cfm.Dishwasher.remove();
Adding
Link to adding
Add a washable item.
Link to add-a-washable-item
ZenScript Copymods.cfm.Dishwasher.add(@Nonnull final IItemStack item);
mods.cfm.Dishwasher.add(<minecraft:wooden_shovel>);
mods.cfm.Dishwasher.add(<minecraft:stone_shovel>);
mods.cfm.Dishwasher.add(<minecraft:iron_shovel>);
mods.cfm.Dishwasher.add(<minecraft:diamond_shovel>);
mods.cfm.Dishwasher.add(<minecraft:shield>);
mods.cfm.Dishwasher.add(<minecraft:bow>);