Washing Machine
Link to washing-machine
The Washing Machine allows you to clean dirty clothes.
By default repairs durability of vanilla armour, including the Elytra.
Removing
Link to removing
Remove matching washable items.
Link to remove-matching-washable-items
ZenScript Copymods.cfm.WashingMachine.remove(@Optional final IIngredient item);
mods.cfm.WashingMachine.add(<minecraft:elytra>);
mods.cfm.WashingMachine.remove(<minecraft:chainmail_helmet>);
mods.cfm.WashingMachine.remove(<minecraft:chainmail_chestplate>);
mods.cfm.WashingMachine.remove(<minecraft:chainmail_leggings>);
mods.cfm.WashingMachine.remove(<minecraft:chainmail_boots>);
// Remove all washable items.
mods.cfm.WashingMachine.remove();
Adding
Link to adding
Add a washable item.
Link to add-a-washable-item
ZenScript Copymods.cfm.WashingMachine.add(@Nonnull final IItemStack item);
mods.cfm.WashingMachine.add(<minecraft:elytra>);
mods.cfm.WashingMachine.add(<minecraft:leather_helmet>);
mods.cfm.WashingMachine.add(<minecraft:leather_chestplate>);
mods.cfm.WashingMachine.add(<minecraft:leather_leggings>);
mods.cfm.WashingMachine.add(<minecraft:leather_boots>);