Module:Data/Battery/InInput: Difference between revisions
Jump to navigation
Jump to search
Created page with "return { { name = 'BasicBattery', input = { {'Battery', 4}, {'CopperParts', 1}, }, output = { {'BasicBattery', 1}, }, ticks = 100, }, }" |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
return { | return { | ||
{ | { | ||
name = ' | name = 'AluminiumBatteryBox', | ||
machine = 'Hand', | |||
input = { | input = { | ||
{'Battery', | {'CopperConnector', 2}, | ||
{' | {'Battery', 10}, | ||
{'AluminiumPlate', 2}, | |||
{'AdvancedCircuit', 1}, | |||
}, | }, | ||
output = { | output = { | ||
{' | {'AluminiumBatteryBox', 1}, | ||
}, | }, | ||
ticks = | ticks = 20, | ||
tier = 3, | |||
}, | |||
{ | |||
name = 'StainlessSteelBatteryBox', | |||
machine = 'Hand', | |||
input = { | |||
{'CopperConnector', 4}, | |||
{'Battery', 13}, | |||
{'StainlessSteelPlate', 2}, | |||
{'Processor', 1}, | |||
}, | |||
output = { | |||
{'StainlessSteelBatteryBox', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 4, | |||
}, | |||
{ | |||
name = 'TitaniumBatteryBox', | |||
machine = 'Hand', | |||
input = { | |||
{'CopperConnector', 6}, | |||
{'Battery', 16}, | |||
{'TitaniumPlate', 2}, | |||
{'QuantumCircuit', 1}, | |||
}, | |||
output = { | |||
{'TitaniumBatteryBox', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 5, | |||
}, | |||
{ | |||
name = 'CompositeBatteryBox', | |||
machine = 'Hand', | |||
input = { | |||
{'CopperConnector', 8}, | |||
{'Battery', 19}, | |||
{'CompositePlate', 2}, | |||
{'QuantumProcessor', 1}, | |||
}, | |||
output = { | |||
{'CompositeBatteryBox', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 6, | |||
}, | |||
{ | |||
name = 'NeutroniumBatteryBox', | |||
machine = 'Hand', | |||
input = { | |||
{'CopperConnector', 10}, | |||
{'Battery', 22}, | |||
{'NeutroniumPlate', 2}, | |||
{'QuantumBrain', 1}, | |||
}, | |||
output = { | |||
{'NeutroniumBatteryBox', 1}, | |||
}, | |||
ticks = 20, | |||
tier = 7, | |||
}, | }, | ||
} | } | ||
Latest revision as of 21:15, 27 January 2026
Documentation for this module may be created at Module:Data/Battery/InInput/doc
return {
{
name = 'AluminiumBatteryBox',
machine = 'Hand',
input = {
{'CopperConnector', 2},
{'Battery', 10},
{'AluminiumPlate', 2},
{'AdvancedCircuit', 1},
},
output = {
{'AluminiumBatteryBox', 1},
},
ticks = 20,
tier = 3,
},
{
name = 'StainlessSteelBatteryBox',
machine = 'Hand',
input = {
{'CopperConnector', 4},
{'Battery', 13},
{'StainlessSteelPlate', 2},
{'Processor', 1},
},
output = {
{'StainlessSteelBatteryBox', 1},
},
ticks = 20,
tier = 4,
},
{
name = 'TitaniumBatteryBox',
machine = 'Hand',
input = {
{'CopperConnector', 6},
{'Battery', 16},
{'TitaniumPlate', 2},
{'QuantumCircuit', 1},
},
output = {
{'TitaniumBatteryBox', 1},
},
ticks = 20,
tier = 5,
},
{
name = 'CompositeBatteryBox',
machine = 'Hand',
input = {
{'CopperConnector', 8},
{'Battery', 19},
{'CompositePlate', 2},
{'QuantumProcessor', 1},
},
output = {
{'CompositeBatteryBox', 1},
},
ticks = 20,
tier = 6,
},
{
name = 'NeutroniumBatteryBox',
machine = 'Hand',
input = {
{'CopperConnector', 10},
{'Battery', 22},
{'NeutroniumPlate', 2},
{'QuantumBrain', 1},
},
output = {
{'NeutroniumBatteryBox', 1},
},
ticks = 20,
tier = 7,
},
}