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

61 lines
850 B
JavaScript
Raw Normal View History

2018-02-26 22:14:11 +01:00
'use strict'
2018-03-16 14:23:27 +01:00
module.exports = [
{
2018-03-16 17:06:32 +01:00
id: 'nationalExp',
2018-03-16 14:23:27 +01:00
mode: 'train',
bitmasks: [1],
2018-02-26 22:14:11 +01:00
name: 'InterCityExpress',
short: 'ICE',
2018-03-16 14:23:27 +01:00
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',
2018-03-16 14:23:27 +01:00
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',
2018-03-16 14:23:27 +01:00
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',
2018-03-16 14:23:27 +01:00
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',
2018-03-16 14:23:27 +01:00
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',
2018-03-16 14:23:27 +01:00
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',
2018-03-16 14:23:27 +01:00
default: true
2018-02-26 22:14:11 +01:00
}
]