Centrifugal Seperator
Link to centrifugal-seperator
Package
Link to package
mods.thermalexpansion.Centrifuge
Addition
Link to addition
ZenScript Copy//mods.thermalexpansion.Centrifuge.addRecipe(WeightedItemStack[] outputs, IItemStack input, ILiquidStack fluid, int energy);
mods.thermalexpansion.Centrifuge.addRecipe([(<minecraft:gold_ingot> * 5) % 10, <minecraft:iron_ingot> % 50], <minecraft:gold_ore>, <liquid:lava>, 2000);
Mob addition
Link to mob-addition
fluid
can be null, in which case the default Thermal Expansion experience liquid will be used, the amount calculated from the xp
field using the default XP_TO_MB
constant from Thermal Expansion. When using a custom liquid, the xp
field is ignored.
No custom fluid:
ZenScript Copy//mods.thermalexpansion.Centrifuge.addRecipeMob(IEntityDefinition entity, WeightedItemStack[] outputs, @Nullable ILiquidStack fluid, int energy, int xp);
mods.thermalexpansion.Centrifuge.addRecipeMob(<entity:minecraft:slime>, [<minecraft:clay_ball>%50, <minecraft:ghast_tear>%10], null, 2000, 5);
Custom fluid:
ZenScript Copymods.thermalexpansion.Centrifuge.addRecipeMob(<entity:minecraft:slime>, [<minecraft:gunpowder>%100], <liquid:lava>*20, 2000, 0);
Removal
Link to removal
ZenScript Copy//mods.thermalexpansion.Centrifuge.removeRecipe(IItemStack input);
mods.thermalexpansion.Centrifuge.removeRecipe(<minecraft:gold_ore>);
Mob removal
Link to mob-removal
ZenScript Copy//mods.thermalexpansion.Centrifuge.removeRecipeMob(IEntityDefinition entity);
mods.thermalexpansion.Centrifuge.removeRecipeMob(<entity:minecraft:slime>);