ExtraPlanets
Remove a Recipe from the Basic Block Smasher
mods.ExtraPlanets.removeBlockSmasherRecipe(IItemStack output)
Example Script:
mods.ExtraPlanets.removeBlockSmasherRecipe(<extraplanets:potash_shards> * 3);
Add a Recipe for the Basic Block Smasher
mods.ExtraPlanets.addBlockSmasherRecipe(IItemStack output, IItemStack input)
Example Script:
mods.ExtraPlanets.addBlockSmasherRecipe(<minecraft:stone>, <minecraft:cobblestone>);
Remove a Recipe from the Basic Solar Evaporation Chamber
mods.ExtraPlanets.removeSolarEvaporationChamberRecipe(IItemStack output)
Example Script:
mods.ExtraPlanets.removeSolarEvaporationChamberRecipe(<extraplanets:potassium>);
Add a Recipe for the Basic Solar Evaporation Chamber
mods.ExtraPlanets.addSolarEvaporationChamberRecipe(IItemStack output, IItemStack input)
Example Script:
mods.ExtraPlanets.addSolarEvaporationChamberRecipe(<minecraft:cobblestone>, <minecraft:stone>);
Remove a Tier 4 Rocket recipe from NASA workbench
mods.ExtraPlanets.removeNASATier4RocketRecipe()
Remove a Tier 5 Rocket recipe from NASA workbench
mods.ExtraPlanets.removeNASATier5RocketRecipe()
Remove a Tier 6 Rocket recipe from NASA workbench
mods.ExtraPlanets.removeNASATier6RocketRecipe()
Remove a Tier 7 Rocket recipe from NASA workbench
mods.ExtraPlanets.removeNASATier7RocketRecipe()
Remove a Tier 8 Rocket recipe from NASA workbench
mods.ExtraPlanets.removeNASATier8RocketRecipe()
Remove a Tier 9 Rocket recipe from NASA workbench
mods.ExtraPlanets.removeNASATier9RocketRecipe()
Remove a Tier 10 Rocket recipe from NASA workbench
mods.ExtraPlanets.removeNASATier10RocketRecipe()
Add a Recipe for the Tier 4/5/6/7/8/9/10 Rocket (This add all 3 chest types for you)
mods.ExtraPlanets.addNASATieredRocketRecipe(int tier, IItemStack[] inputs)
Example Scripts:
mods.ExtraPlanets.addNASATieredRocketRecipe(4, [<minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>,
<minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>, <minecraft:cobblestone>]);