improcket/js/data.mjs
2018-03-03 15:58:51 +00:00

35 lines
682 B
JavaScript

export const modules = {
capsule: {
small: {
name: 'Small Capsule',
tooltip: 'A small, simple capsule. Provides just enough ' +
'rotational power for a small rocket.',
type: 'capsule',
id: 'small',
mass: 2,
rotation: 0.1
}
},
fuel: {
small: {
name: 'Small Fuel Tank',
tooltip: 'A small flimsy tank with enough fuel for a short trip.',
type: 'fuel',
id: 'small',
mass: 1,
capacity: 3
}
},
thruster: {
light: {
name: 'Light Main Thruster',
tooltip: 'Powerful enough to lift a small ship, but not much ' +
'more. Not very efficient.',
type: 'thruster',
id: 'light',
mass: 2,
thrust: 10,
isp: 200
}
}
}