Add audio

This commit is contained in:
asraelite 2018-03-06 20:07:13 +00:00
parent 0101ef8d55
commit 62b8c74f57
26 changed files with 225 additions and 18 deletions

View file

@ -5,12 +5,13 @@ export const modules = {
small: {
name: 'Small Capsule',
tooltip: 'A small, simple capsule. Provides just enough ' +
'rotational power for a small rocket.',
'rotational power for a small rocket and has a small ' +
'amount of storage space.',
type: 'capsule',
id: 'small',
mass: 2,
connectivity: [false, false, true, false],
capacity: 3,
capacity: 2,
rotation: 0.1
}
},
@ -37,5 +38,16 @@ export const modules = {
thrust: 10,
isp: 200
}
},
connector: {
xheavy: {
name: 'Heavy 4-way Connector',
tooltip: 'Can connect ship parts in any direction, but is quite ' +
'heavy',
type: 'connector',
id: 'xheavy',
mass: 5,
connectivity: [true, true, true, true]
}
}
}