Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local recipes = {}
- local rf = "refinedstorage:"
- local fn = "fluxnetworks:"
- local th = "thermal:"
- local ee = "emendatusenigmatica:"
- local tc = "tconstruct:"
- local b = "botania:"
- local processors = {
- ["basic"] = "tin",
- ["improved"] = "lumium",
- ["advanced"] = "enderium",
- }
- local cores = {
- ["construction"] = "sky",
- ["destruction"] = "ichor",
- }
- for k,v in pairs(processors) do
- recipes[rf.."raw_"..k.."_processor"] = {1, th..v.."_coin", 1, fn.."flux_dust", 1, ee.."silicon_gem", 1, rf.."processor_binding", 1}
- end
- for k,v in pairs(cores) do
- recipes[rf..k.."_core"] = {1, tc..v.."_slime_crystal", 1, rf.."basic_processor", 1, b.."corporea_spark", 1}
- end
- return recipes
Add Comment
Please, Sign In to add comment