Add audio
This commit is contained in:
parent
0101ef8d55
commit
62b8c74f57
26 changed files with 225 additions and 18 deletions
16
js/data.mjs
16
js/data.mjs
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue