guitarplayer616

barrel_8

May 19th, 2022 (edited)
613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. local recipes = {}
  2.  
  3. local rf = "refinedstorage:"
  4. local fn = "fluxnetworks:"
  5. local th = "thermal:"
  6. local ee = "emendatusenigmatica:"
  7. local tc = "tconstruct:"
  8. local b = "botania:"
  9.  
  10. local processors = {
  11.   ["basic"] = "tin",
  12.   ["improved"] = "lumium",
  13.   ["advanced"] = "enderium",
  14. }
  15.  
  16. local cores = {
  17.   ["construction"] = "sky",
  18.   ["destruction"] = "ichor",
  19. }
  20.  
  21. for k,v in pairs(processors) do
  22.  
  23.   recipes[rf.."raw_"..k.."_processor"] = {1, th..v.."_coin", 1, fn.."flux_dust", 1, ee.."silicon_gem", 1, rf.."processor_binding", 1}
  24.  
  25. end
  26.  
  27. for k,v in pairs(cores) do
  28.   recipes[rf..k.."_core"] = {1, tc..v.."_slime_crystal", 1, rf.."basic_processor", 1, b.."corporea_spark", 1}
  29. end
  30.  
  31. return recipes
Add Comment
Please, Sign In to add comment