db-vendo-client/p/insa/products.js

63 lines
873 B
JavaScript
Raw Normal View History

2022-05-07 16:17:37 +02:00
const products = [
2018-03-16 14:23:27 +01:00
{
id: 'nationalExpress',
2018-03-16 14:23:27 +01:00
mode: 'train',
bitmasks: [1],
2018-02-26 22:14:11 +01:00
name: 'InterCityExpress',
short: 'ICE',
default: true,
2018-02-26 22:14:11 +01:00
},
2018-03-16 14:23:27 +01:00
{
2018-03-16 17:06:32 +01:00
id: 'national',
2018-03-16 14:23:27 +01:00
mode: 'train',
bitmasks: [2],
2018-02-26 22:14:11 +01:00
name: 'InterCity & EuroCity',
short: 'IC/EC',
default: true,
2018-02-26 22:14:11 +01:00
},
2018-03-16 14:23:27 +01:00
{
2018-03-16 17:06:32 +01:00
id: 'regional',
2018-03-16 14:23:27 +01:00
mode: 'train',
bitmasks: [8],
2018-02-26 22:14:11 +01:00
name: 'RegionalExpress & RegionalBahn',
short: 'RE/RB',
default: true,
2018-02-26 22:14:11 +01:00
},
2018-03-16 14:23:27 +01:00
{
2018-03-16 17:06:32 +01:00
id: 'suburban',
2018-03-16 14:23:27 +01:00
mode: 'train',
bitmasks: [16],
2018-02-26 22:14:11 +01:00
name: 'S-Bahn',
short: 'S',
default: true,
2018-02-26 22:14:11 +01:00
},
2018-03-16 14:23:27 +01:00
{
2018-03-16 17:06:32 +01:00
id: 'tram',
2018-03-16 14:23:27 +01:00
mode: 'train',
bitmasks: [32],
2018-02-26 22:14:11 +01:00
name: 'Tram',
short: 'T',
default: true,
2018-02-26 22:14:11 +01:00
},
2018-03-16 14:23:27 +01:00
{
2018-03-16 17:06:32 +01:00
id: 'bus',
2018-03-16 14:23:27 +01:00
mode: 'bus',
bitmasks: [64, 128],
2018-02-26 22:14:11 +01:00
name: 'Bus',
short: 'B',
default: true,
2018-02-26 22:14:11 +01:00
},
2018-03-16 14:23:27 +01:00
{
2018-03-16 17:06:32 +01:00
id: 'tourismTrain',
2018-03-16 14:23:27 +01:00
mode: 'train',
bitmasks: [256],
2018-02-26 22:14:11 +01:00
name: 'Tourism Train',
short: 'TT',
default: true,
},
];
2022-05-07 16:17:37 +02:00
export {
products,
};