Files
factorio-scenario-ExpCluster/config/gui/autofill.lua
badgamernl c2ea0bf590 Added setings left container
- Changed toolbar button to left flow toggle;
- Added Ammo section;
- Added Fuel section;
- Added default config settings;
- Added autofill item toggle button and textboxes;
2020-08-19 01:35:03 +02:00

45 lines
900 B
Lua

--- This file contains all the different settings for the autofill system and gui
-- @config Autofill
return {
-- General config
icon = 'item/piercing-rounds-magazine', --- @setting icon that will be used for the toolbar
default_settings = {
{
type = 'ammo',
item = 'uranium-rounds-magazine',
amount = 100,
enabled = false
},
{
type = 'ammo',
item = 'piercing-rounds-magazine',
amount = 100,
enabled = false
},
{
type = 'ammo',
item = 'firearm-magazine',
amount = 100,
enabled = false
},
{
type = 'fuel',
item = 'nuclear-fuel',
amount = 100,
enabled = false
},
{
type = 'fuel',
item = 'solid-fuel',
amount = 100,
enabled = false
},
{
type = 'fuel',
item = 'coal',
amount = 100,
enabled = false
}
}
}