Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- key done in form (item, damage)
- fluids done in form (color, color, color, amount) amount is in mb
- 1 - Orange
- 2 - Magenta
- 3 - Light_Blue
- 4 - Yellow
- 5 - Lime
- 6 - Pink
- 7 - Gray
- 8 - Light_Gray
- 9 - Cyan
- 10 - Purple
- 11 - Blue
- 12 - Brown
- 13 - Green
- 14 - Red
- 15 - Black
- ]]--
- local RECIPES = {
- [1] = {
- name = "ludacrite",
- item = {"plustic:alumiteingot", "0"},
- fluid = {8,10,10,500}
- },
- [2] = {
- name = "wyvernCore",
- item = {"environmentaltech:pladium","0"},
- fluid = {8,9,9,500}
- },
- [3] = {
- name = "intricateChipset",
- item = {"forestry:chipsets", "1"},
- fluid = {8,11,11,5000}
- },
- [4] = {
- name = "draconicEnergyCore",
- item = {"draconicevolution:wyvern_core", "0"},
- fluid = {8,9,9,500}
- },
- [5] = {
- name = "craftingCore",
- item = {"extendedcrafting:pedestal", "0"},
- fluid = {8,7,7,2500}
- },
- [6] = {
- name = "pedestal",
- item = {"extendedcrafting:material", "2"},
- fluid = {8,7,7,500}
- },
- [7] = {
- name = "overclocker",
- item = {"ic2:cable", "0"},
- fluid = {8,3,3,1500}
- },
- [8] = {
- name = "tier6Seed",
- item = {"minecraft:wheat_seeds", "0"},
- fluid = {8,12,12,500}
- },
- [9] = {
- name = "basicChipset",
- item = {"thermalfoundation:material", "129"},
- fluid = {8,11,11,5000}
- },
- [10] = {
- name = "enhancedChipset",
- item = {"thermalfoundation:material", "163"},
- fluid = {8,11,11,5000}
- },
- [11] = {
- name = "refinedChipset",
- item = {"minecraft:iron_ingot", "0"},
- fluid = {8,11,11,5000}
- },
- [12] = {
- name = "hardenedCasing",
- item = {"forestry:sturdy_machine", "0"},
- fluid = {8,11,11,5000}
- },
- [13] = {
- name = "impregnatedCasing",
- item = {"log", "*"},
- fluid = {8,4,4,125}
- },
- [14] = {
- name = "impregnatedStick",
- item = {"planks", "*"},
- fluid = {8,4,4,50}
- },
- [15] = {
- name = "wyvernEnergyCore",
- item = {"draconicevolution:draconic_core", "0"},
- fluid = {8,14,14,10000}
- }
- };
- return RECIPES
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement