mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
50 lines
752 B
Lua
50 lines
752 B
Lua
TechnologyId = {
|
|
APT = 0,
|
|
EFT = 1,
|
|
PCT = 2,
|
|
FPT = 3,
|
|
}
|
|
|
|
technologies = {
|
|
{
|
|
id = TechnologyId.APT,
|
|
name = 'Advanced power technology',
|
|
cost = 1000,
|
|
icon = '',
|
|
description = '',
|
|
parents = {},
|
|
children = {},
|
|
abilities = {0},
|
|
},
|
|
{
|
|
id = TechnologyId.EFT,
|
|
name = 'Energy field technology',
|
|
cost = 1000,
|
|
icon = '',
|
|
description = '',
|
|
parents = {},
|
|
children = {},
|
|
abilities = {},
|
|
},
|
|
{
|
|
id = TechnologyId.PCT,
|
|
name = 'Plasma casting technology',
|
|
cost = 1000,
|
|
icon = '',
|
|
description = '',
|
|
parents = {},
|
|
children = {},
|
|
abilities = {},
|
|
},
|
|
{
|
|
id = TechnologyId.FPT,
|
|
name = 'Fusion power technology',
|
|
cost = 1000,
|
|
icon = '',
|
|
description = '',
|
|
parents = {},
|
|
children = {},
|
|
abilities = {},
|
|
},
|
|
}
|