Module:IndustrialSmelterRecipeDictionary: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
{ | { | ||
name = 'Steel', | name = 'Steel', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'IronDust', 10}, | {'IronDust', 10}, | ||
| Line 14: | Line 15: | ||
{ | { | ||
name = 'RawHotMercury', | name = 'RawHotMercury', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'CinnabarDust', 10}, | {'CinnabarDust', 10}, | ||
| Line 24: | Line 26: | ||
{ | { | ||
name = 'SiliconMonocrystal', | name = 'SiliconMonocrystal', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'Silicon', 16}, | {'Silicon', 16}, | ||
| Line 36: | Line 39: | ||
{ | { | ||
name = 'DopedSiliconMonocrystal', | name = 'DopedSiliconMonocrystal', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'Silicon', 16}, | {'Silicon', 16}, | ||
| Line 49: | Line 53: | ||
{ | { | ||
name = 'TantalumSludge', | name = 'TantalumSludge', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'TantalumSludge', 2}, | {'TantalumSludge', 2}, | ||
{'AluminiumDust', | {'AluminiumDust', 6}, | ||
{'Mercury', 1000}, | {'Mercury', 1000}, | ||
}, | }, | ||
| Line 63: | Line 68: | ||
{ | { | ||
name = 'SpongeToPlate', | name = 'SpongeToPlate', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'TitaniumSponge', 1}, | {'TitaniumSponge', 1}, | ||
| Line 76: | Line 82: | ||
{ | { | ||
name = 'TitaniumDust', | name = 'TitaniumDust', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'TitaniumDust', 1}, | {'TitaniumDust', 1}, | ||
| Line 89: | Line 96: | ||
{ | { | ||
name = 'YttriumDust', | name = 'YttriumDust', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'YttriumDust', 1}, | {'YttriumDust', 1}, | ||
| Line 102: | Line 110: | ||
{ | { | ||
name = 'TantalumDust', | name = 'TantalumDust', | ||
machine = 'IndustrialSmelter', | |||
input = { | input = { | ||
{'TantalumDust', 1}, | {'TantalumDust', 1}, | ||
Latest revision as of 23:01, 27 January 2026
Documentation for this module may be created at Module:IndustrialSmelterRecipeDictionary/doc
return {
{
name = 'Steel',
machine = 'IndustrialSmelter',
input = {
{'IronDust', 10},
{'CoalDust', 5},
{'Oxygen', 1000},
},
output = {
{'SteelPlate', 10},
},
ticks = 200,
},
{
name = 'RawHotMercury',
machine = 'IndustrialSmelter',
input = {
{'CinnabarDust', 10},
},
output = {
{'HotMercury', 1000},
},
ticks = 200,
},
{
name = 'SiliconMonocrystal',
machine = 'IndustrialSmelter',
input = {
{'Silicon', 16},
{'Mercury', 1000},
},
output = {
{'SiliconMonocrystal', 1},
{'HotMercury', 1000},
},
ticks = 2000,
},
{
name = 'DopedSiliconMonocrystal',
machine = 'IndustrialSmelter',
input = {
{'Silicon', 16},
{'PlatinumDust', 1},
{'Mercury', 1000},
},
output = {
{'DopedSiliconMonocrystal', 1},
{'HotMercury', 1000},
},
ticks = 3000,
},
{
name = 'TantalumSludge',
machine = 'IndustrialSmelter',
input = {
{'TantalumSludge', 2},
{'AluminiumDust', 6},
{'Mercury', 1000},
},
output = {
{'TantalumPlate', 1},
{'HotMercury', 1000},
},
ticks = 200,
tier = 5,
},
{
name = 'SpongeToPlate',
machine = 'IndustrialSmelter',
input = {
{'TitaniumSponge', 1},
{'Mercury', 1000},
},
output = {
{'TitaniumPlate', 1},
{'HotMercury', 1000},
},
ticks = 400,
tier = 5,
},
{
name = 'TitaniumDust',
machine = 'IndustrialSmelter',
input = {
{'TitaniumDust', 1},
{'Mercury', 300},
},
output = {
{'TitaniumPlate', 1},
{'HotMercury', 300},
},
ticks = 200,
tier = 5,
},
{
name = 'YttriumDust',
machine = 'IndustrialSmelter',
input = {
{'YttriumDust', 1},
{'Mercury', 300},
},
output = {
{'YttriumPlate', 1},
{'HotMercury', 300},
},
ticks = 200,
tier = 5,
},
{
name = 'TantalumDust',
machine = 'IndustrialSmelter',
input = {
{'TantalumDust', 1},
{'Mercury', 300},
},
output = {
{'TantalumPlate', 1},
{'HotMercury', 300},
},
ticks = 200,
tier = 5,
},
}