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

71 lines
1,000 B
JavaScript
Raw Normal View History

2022-05-07 16:17:37 +02:00
const products = [
2020-03-23 00:36:54 +01:00
{
id: 'bahn-s-bahn',
mode: 'train',
bitmasks: [1, 2],
name: 'Bahn & S-Bahn',
short: 'S/Zug',
default: true,
2020-03-23 00:36:54 +01:00
},
{
id: 'u-bahn',
mode: 'train',
bitmasks: [4],
name: 'U-Bahn',
short: 'U',
default: true,
2020-03-23 00:36:54 +01:00
},
{
id: 'strassenbahn',
mode: 'train',
bitmasks: [16],
name: 'Strassenbahn',
short: 'Str',
default: true,
2020-03-23 00:36:54 +01:00
},
{
id: 'fernbus',
mode: 'bus',
bitmasks: [32],
name: 'Fernbus',
short: 'Bus',
default: true,
2020-03-23 00:36:54 +01:00
},
{
id: 'regionalbus',
mode: 'bus',
bitmasks: [64],
name: 'Regionalbus',
short: 'Bus',
default: true,
2020-03-23 00:36:54 +01:00
},
{
id: 'stadtbus',
mode: 'bus',
bitmasks: [128],
name: 'Stadtbus',
short: 'Bus',
default: true,
2020-03-23 00:36:54 +01:00
},
{
id: 'seilbahn-zahnradbahn',
mode: 'gondola',
bitmasks: [256],
name: 'Seil-/Zahnradbahn',
short: 'Seil-/Zahnradbahn',
default: true,
2020-03-23 00:36:54 +01:00
},
{
id: 'schiff',
mode: 'watercraft',
bitmasks: [512],
name: 'Schiff',
short: 'F',
default: true,
2020-03-23 00:36:54 +01:00
},
];
2022-05-07 16:17:37 +02:00
export {
products,
};