1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-14 10:13:13 +02:00
RedMew/map_gen/maps/space_race/market_items.lua
2019-10-12 13:29:11 +02:00

82 lines
2.4 KiB
Lua

return {
{
name = 'stone-walls',
name_label = {'', 'Stone Walls research'},
type = 'research',
description = {'', 'Unlocks stone walls research'},
sprite = 'technology/stone-walls',
stack_limit = 1,
price = 500,
disabled = true,
disabled_reason = {'', 'DISABLED'}
},
{
name = 'heavy-armor',
name_label = {'', 'Heavy Armor research'},
type = 'research',
description = {'', 'Unlocks heavy armor research'},
sprite = 'technology/heavy-armor',
stack_limit = 1,
price = 1000,
disabled = true,
disabled_reason = {'', 'DISABLED'}
},
{
name = 'military',
name_label = {'', 'Military 1 research'},
type = 'research',
description = {'', 'Unlocks military research'},
sprite = 'technology/military',
stack_limit = 1,
price = 1000,
disabled = true,
disabled_reason = {'', 'DISABLED'}
},
{
name = 'military-2',
name_label = {'', 'Military 2 research'},
type = 'research',
description = {'', 'Unlocks military 2 research'},
sprite = 'technology/military-2',
stack_limit = 1,
price = 10000,
disabled = true,
disabled_reason = {'', 'DISABLED'}
},
{
name = 'military-3',
name_label = {'', 'Military 3 research'},
type = 'research',
description = {'', 'Unlocks military 3 research'},
sprite = 'technology/military-3',
stack_limit = 1,
price = 25000,
disabled = true,
disabled_reason = {'', 'DISABLED'}
},
{
name = 'military-4',
name_label = {'', 'Military 4 research'},
type = 'research',
description = {'', 'Unlocks military 4 research'},
sprite = 'technology/military-3',
stack_limit = 1,
price = 50000,
disabled = true,
disabled_reason = {'', 'DISABLED'}
},
{
name = 'tank',
name_label = {'', 'Tank'},
type = 'custom_item',
description = {'', 'Tanks can only be purchased'},
sprite = 'item/tank',
stack_limit = 1,
price = 2000,
disabled = true,
disabled_reason = {'', 'Research tanks to unlock'}
},
{price = 10, name = 'raw-fish'},
{price = 10, name = 'repair-pack'}
}