mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-10 00:43:27 +02:00
46 lines
4.0 KiB
Lua
46 lines
4.0 KiB
Lua
local items = {
|
|
--{price = {{"coin", 50}}, offer = {type = 'nothing', effect_description = 'Buy Turret Slot'}},
|
|
--{price = {{"coin", 250}}, offer = {type = 'nothing', effect_description = 'Buy Laser Turret Slot'}},
|
|
--{price = {{"coin", 10}}, offer = {type = 'nothing', effect_description = 'Buy Mine Slot'}},
|
|
{price = {{"coin", 3}}, offer = {type = 'give-item', item = "raw-fish", count = 1}},
|
|
{price = {{"coin", 1}}, offer = {type = 'give-item', item = 'raw-wood', count = 1}},
|
|
{price = {{"coin", 1}}, offer = {type = 'give-item', item = 'explosives', count = 2}},
|
|
{price = {{"coin", 10}}, offer = {type = 'give-item', item = 'grenade', count = 1}},
|
|
{price = {{"coin", 60}}, offer = {type = 'give-item', item = 'cluster-grenade', count = 1}},
|
|
{price = {{"coin", 8}}, offer = {type = 'give-item', item = 'land-mine', count = 1}},
|
|
{price = {{"coin", 80}}, offer = {type = 'give-item', item = 'car', count = 1}},
|
|
{price = {{"coin", 650}}, offer = {type = 'give-item', item = 'tank', count = 1}},
|
|
{price = {{"coin", 6}}, offer = {type = 'give-item', item = 'cannon-shell', count = 1}},
|
|
{price = {{"coin", 12}}, offer = {type = 'give-item', item = 'explosive-cannon-shell', count = 1}},
|
|
{price = {{"coin", 75}}, offer = {type = 'give-item', item = 'gun-turret', count = 1}},
|
|
{price = {{"coin", 750}}, offer = {type = 'give-item', item = 'laser-turret', count = 1}},
|
|
{price = {{"coin", 3}}, offer = {type = 'give-item', item = 'firearm-magazine', count = 1}},
|
|
{price = {{"coin", 7}}, offer = {type = 'give-item', item = 'piercing-rounds-magazine', count = 1}},
|
|
{price = {{"coin", 4}}, offer = {type = 'give-item', item = 'shotgun-shell', count = 1}},
|
|
{price = {{"coin", 8}}, offer = {type = 'give-item', item = 'piercing-shotgun-shell', count = 1}},
|
|
{price = {{"coin", 50}}, offer = {type = 'give-item', item = "submachine-gun", count = 1}},
|
|
{price = {{"coin", 250}}, offer = {type = 'give-item', item = 'combat-shotgun', count = 1}},
|
|
{price = {{"coin", 500}}, offer = {type = 'give-item', item = 'flamethrower', count = 1}},
|
|
{price = {{"coin", 35}}, offer = {type = 'give-item', item = 'flamethrower-ammo', count = 1}},
|
|
{price = {{"coin", 125}}, offer = {type = 'give-item', item = 'rocket-launcher', count = 1}},
|
|
{price = {{"coin", 5}}, offer = {type = 'give-item', item = 'rocket', count = 1}},
|
|
{price = {{"coin", 8}}, offer = {type = 'give-item', item = 'explosive-rocket', count = 1}},
|
|
{price = {{"coin", 750}}, offer = {type = 'give-item', item = 'atomic-bomb', count = 1}},
|
|
{price = {{"coin", 150}}, offer = {type = 'give-item', item = 'railgun', count = 1}},
|
|
{price = {{"coin", 10}}, offer = {type = 'give-item', item = 'railgun-dart', count = 1}},
|
|
{price = {{"coin", 40}}, offer = {type = 'give-item', item = 'poison-capsule', count = 1}},
|
|
{price = {{"coin", 8}}, offer = {type = 'give-item', item = 'defender-capsule', count = 1}},
|
|
{price = {{"coin", 10}}, offer = {type = 'give-item', item = 'light-armor', count = 1}},
|
|
{price = {{"coin", 150}}, offer = {type = 'give-item', item = 'heavy-armor', count = 1}},
|
|
{price = {{"coin", 350}}, offer = {type = 'give-item', item = 'modular-armor', count = 1}},
|
|
{price = {{"coin", 1500}}, offer = {type = 'give-item', item = 'power-armor', count = 1}},
|
|
{price = {{"coin", 100}}, offer = {type = 'give-item', item = 'battery-equipment', count = 1}},
|
|
{price = {{"coin", 75}}, offer = {type = 'give-item', item = 'solar-panel-equipment', count = 1}},
|
|
{price = {{"coin", 200}}, offer = {type = 'give-item', item = 'energy-shield-equipment', count = 1}},
|
|
{price = {{"coin", 175}}, offer = {type = 'give-item', item = 'exoskeleton-equipment', count = 1}},
|
|
{price = {{"coin", 125}}, offer = {type = 'give-item', item = 'night-vision-equipment', count = 1}},
|
|
{price = {{"coin", 500}}, offer = {type = 'give-item', item = 'belt-immunity-equipment', count = 1}},
|
|
{price = {{"coin", 250}}, offer = {type = 'give-item', item = 'personal-roboport-equipment', count = 1}},
|
|
{price = {{"coin", 40}}, offer = {type = 'give-item', item = 'construction-robot', count = 1}}
|
|
}
|
|
return items |