Compactor
Link to compactor
Package
Link to package
mods.thermalexpansion.Compactor
The compactor supports 4 types of modifiers:
CopyMint
Press
Storage
Gear
Mint
Link to mint
The Mint modifier changes the recipes registered in the COIN
recipe map in Thermal Expansion.
Note that these recipes require the Numismatic Press Augment.
Addition
Link to addition
ZenScript Copymods.thermalexpansion.Compactor.addMintRecipe(IItemStack output, IItemStack input, int energy);
mods.thermalexpansion.Compactor.addMintRecipe(<minecraft:sand>, <minecraft:stick>, 1500);
Removal
Link to removal
ZenScript Copymods.thermalexpansion.Compactor.removeMintRecipe(IItemStack input);
mods.thermalexpansion.Compactor.removeMintRecipe(<thermalfoundation:material:167>);
Press
Link to press
The Press modifier changes the recipes not registered in the PLATE
, COIN
, or GEAR
recipe maps in Thermal Expansion.
These recipes do not require a specific Augment.
Addition
Link to addition-1
ZenScript Copymods.thermalexpansion.Compactor.addPressRecipe(IItemStack output, IItemStack input, int energy);
mods.thermalexpansion.Compactor.addPressRecipe(<minecraft:sand>, <minecraft:apple>, 1500);
Removal
Link to removal-1
ZenScript Copymods.thermalexpansion.Compactor.removePressRecipe(IItemStack input);
mods.thermalexpansion.Compactor.removePressRecipe(<thermalfoundation:material:167>);
Storage
Link to storage
The Storage modifier changes the recipes registered in the PLATE
recipe map in Thermal Expansion.
These recipes do not require a specific Augment, and seemingly are used only for plates.
Addition
Link to addition-2
ZenScript Copymods.thermalexpansion.Compactor.addStorageRecipe(IItemStack output, IItemStack input, int energy);
mods.thermalexpansion.Compactor.addStorageRecipe(<minecraft:sand>, <minecraft:arrow>, 1500);
Removal
Link to removal-2
ZenScript Copymods.thermalexpansion.Compactor.removeStorageRecipe(IItemStack input);
mods.thermalexpansion.Compactor.removeStorageRecipe(<thermalfoundation:material:167>);
Gear
Link to gear
The Gear modifier changes the recipes registered in the GEAR
recipe map in Thermal Expansion.
Note that these recipes require the Gearworking Die Augment.
Addition
Link to addition-3
ZenScript Copymods.thermalexpansion.Compactor.addGearRecipe(IItemStack output, IItemStack input, int energy);
mods.thermalexpansion.Compactor.addGearRecipe(<minecraft:sand>, <minecraft:arrow>, 1500);
Removal
Link to removal-3
ZenScript Copymods.thermalexpansion.Compactor.removeGearRecipe(IItemStack input);
mods.thermalexpansion.Compactor.removeGearRecipe(<thermalfoundation:material:167>);