Module:PyrolysisUnitRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'Coal', | name = 'Coal', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'Coal', 1}, | {'Coal', 1}, | ||
| Line 9: | Line 10: | ||
{'RawOil', 150}, | {'RawOil', 150}, | ||
{'ProducerGas', 150}, | {'ProducerGas', 150}, | ||
}, | |||
ticks = 400, | |||
tier = 3, | |||
}, | |||
{ | |||
name = 'CoalDust', | |||
machine = 'PyrolysisUnit', | |||
input = { | |||
{'CoalDust', 1}, | |||
}, | |||
output = { | |||
{'Coke', 1}, | |||
{'RawOil', 70}, | |||
{'ProducerGas', 200}, | |||
}, | }, | ||
ticks = 400, | ticks = 400, | ||
| Line 15: | Line 30: | ||
{ | { | ||
name = 'HeavyOilPyrolysis', | name = 'HeavyOilPyrolysis', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'HeavyOil', 1000}, | {'HeavyOil', 1000}, | ||
| Line 27: | Line 43: | ||
{ | { | ||
name = 'RawOil0', | name = 'RawOil0', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'RawOil', 2000}, | {'RawOil', 2000}, | ||
| Line 38: | Line 55: | ||
{ | { | ||
name = 'RawOil1', | name = 'RawOil1', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'RawOil', 2000}, | {'RawOil', 2000}, | ||
| Line 49: | Line 67: | ||
{ | { | ||
name = 'RawOil2', | name = 'RawOil2', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'RawOil', 2000}, | {'RawOil', 2000}, | ||
| Line 60: | Line 79: | ||
{ | { | ||
name = 'RawOil3', | name = 'RawOil3', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'RawOil', 2000}, | {'RawOil', 2000}, | ||
| Line 71: | Line 91: | ||
{ | { | ||
name = 'Methane2', | name = 'Methane2', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'Methane', 4000}, | {'Methane', 4000}, | ||
| Line 82: | Line 103: | ||
{ | { | ||
name = 'FbToAmmonia', | name = 'FbToAmmonia', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'FermentedBiomass', 1000}, | {'FermentedBiomass', 1000}, | ||
| Line 94: | Line 116: | ||
{ | { | ||
name = 'FbToEthanol', | name = 'FbToEthanol', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'FermentedBiomass', 1000}, | {'FermentedBiomass', 1000}, | ||
| Line 106: | Line 129: | ||
{ | { | ||
name = 'CarbonFiber', | name = 'CarbonFiber', | ||
machine = 'PyrolysisUnit', | |||
input = { | input = { | ||
{'CarbonPrecursor', 500}, | {'CarbonPrecursor', 500}, | ||
Latest revision as of 23:01, 27 January 2026
Documentation for this module may be created at Module:PyrolysisUnitRecipeDictionary/doc
return {
{
name = 'Coal',
machine = 'PyrolysisUnit',
input = {
{'Coal', 1},
},
output = {
{'Coke', 1},
{'RawOil', 150},
{'ProducerGas', 150},
},
ticks = 400,
tier = 3,
},
{
name = 'CoalDust',
machine = 'PyrolysisUnit',
input = {
{'CoalDust', 1},
},
output = {
{'Coke', 1},
{'RawOil', 70},
{'ProducerGas', 200},
},
ticks = 400,
tier = 3,
},
{
name = 'HeavyOilPyrolysis',
machine = 'PyrolysisUnit',
input = {
{'HeavyOil', 1000},
},
output = {
{'ProducerGas', 1300},
{'Ash', 2},
},
ticks = 200,
tier = 3,
},
{
name = 'RawOil0',
machine = 'PyrolysisUnit',
input = {
{'RawOil', 2000},
},
output = {
{'HeavyOil', 266.6666666666667},
},
ticks = 120,
tier = 3,
},
{
name = 'RawOil1',
machine = 'PyrolysisUnit',
input = {
{'RawOil', 2000},
},
output = {
{'Diesel', 666.6666666666666},
},
ticks = 120,
tier = 3,
},
{
name = 'RawOil2',
machine = 'PyrolysisUnit',
input = {
{'RawOil', 2000},
},
output = {
{'Gasoline', 400.0},
},
ticks = 120,
tier = 3,
},
{
name = 'RawOil3',
machine = 'PyrolysisUnit',
input = {
{'RawOil', 2000},
},
output = {
{'Ethylene', 400.0},
},
ticks = 120,
tier = 3,
},
{
name = 'Methane2',
machine = 'PyrolysisUnit',
input = {
{'Methane', 4000},
},
output = {
{'ProducerGas', 2500},
},
ticks = 200,
tier = 3,
},
{
name = 'FbToAmmonia',
machine = 'PyrolysisUnit',
input = {
{'FermentedBiomass', 1000},
},
output = {
{'Ammonia', 500},
{'Ash', 1},
},
ticks = 200,
tier = 3,
},
{
name = 'FbToEthanol',
machine = 'PyrolysisUnit',
input = {
{'FermentedBiomass', 1000},
},
output = {
{'Ethanol', 200},
{'Ash', 2},
},
ticks = 200,
tier = 3,
},
{
name = 'CarbonFiber',
machine = 'PyrolysisUnit',
input = {
{'CarbonPrecursor', 500},
},
output = {
{'CarbonFiber', 1},
},
ticks = 200,
tier = 5,
},
}