Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. import crafttweaker.item.IIngredient;
  2. import crafttweaker.item.IItemStack;
  3. import crafttweaker.oredict.IOreDictEntry;
  4.  
  5. val Dusts = [<tfc:metal/dust/copper>,<tfc:metal/dust/gold>,<tfc:metal/dust/platinum>,<tfc:metal/dust/wrought_iron>,<tfc:metal/dust/silver>,<tfc:metal/dust/tin>,<tfc:metal/dust/lead>,<tfc:metal/dust/bismuth>,<tfc:metal/dust/zinc>,<tfc:metal/dust/ardite>,<tfc:metal/dust/osmium>,<tfc:metal/dust/antimony>,<tfc:metal/dust/aluminium>,<tfc:metal/dust/tungsten>,<tfc:metal/dust/cobalt>] as IItemStack[];
  6. //Rich
  7. val Richores = [<ore:oreCopperRich>,<ore:oreGoldRich>,<ore:orePlatinumRich>,<ore:oreIronRich>,<ore:oreSilverRich>,<ore:oreTinRich>,<ore:oreLeadRich>,<ore:oreBismuthRich>,<ore:oreZincRich>,<ore:oreArditeRich>,<ore:oreOsmiumRich>,<ore:oreAntimonyRich>,<ore:oreAluminiumRich>,<ore:oreTungstenRich>,<ore:oreCobaltRich>] as IOreDictEntry[];
  8. for i, rich in Richores{
  9. mods.immersiveengineering.Crusher.addRecipe(Dusts[i], rich*2, 2048, Dusts[i], 0.75);
  10. }
  11. //Normal
  12. val Normalores = [<ore:oreCopperNormal>,<ore:oreGoldNormal>,<ore:orePlatinumNormal>,<ore:oreIronNormal>,<ore:oreSilverNormal>,<ore:oreTinNormal>,<ore:oreLeadNormal>,<ore:oreBismuthNormal>,<ore:oreZincNormal>,<ore:oreArditeNormal>,<ore:oreOsmiumNormal>,<ore:oreAntimonyNormal>,<ore:oreAluminiumNormal>,<ore:oreTungstenNormal>,<ore:oreCobaltNormal>] as IOreDictEntry[];
  13. for i, normal in Normalores{
  14. mods.immersiveengineering.Crusher.addRecipe(Dusts[i], normal*4, 2048, Dusts[i], 0.75);
  15. }
  16. //Poor
  17. val Poorores = [<ore:oreCopperPoor>,<ore:oreGoldPoor>,<ore:orePlatinumPoor>,<ore:oreIronPoor>,<ore:oreSilverPoor>,<ore:oreTinPoor>,<ore:oreLeadPoor>,<ore:oreBismuthPoor>,<ore:oreZincPoor>,<ore:oreArditePoor>,<ore:oreOsmiumPoor>,<ore:oreAntimonyPoor>,<ore:oreAluminiumPoor>,<ore:oreTungstenPoor>,<ore:oreCobaltPoor>] as IOreDictEntry[];
  18. for i, poor in Poorores{
  19. mods.immersiveengineering.Crusher.addRecipe(Dusts[i], poor*6, 2048);
  20. }
  21. //Small
  22. val Smallores = [<ore:oreCopperSmall>,<ore:oreGoldSmall>,<ore:orePlatinumSmall>,<ore:oreIronSmall>,<ore:oreSilverSmall>,<ore:oreTinSmall>,<ore:oreLeadSmall>,<ore:oreBismuthSmall>,<ore:oreZincSmall>,<ore:oreArditeSmall>,<ore:oreOsmiumSmall>,<ore:oreAntimonySmall>,<ore:oreAluminiumSmall>,<ore:oreTungstenSmall>,<ore:oreCobaltSmall>] as IOreDictEntry[];
  23. for i, small in Smallores{
  24. mods.immersiveengineering.Crusher.addRecipe(Dusts[i], small*10, 2048);
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement