add boilerplate for mounts and fixtures

This commit is contained in:
Asraelite 2016-03-27 15:08:49 +01:00
parent 0ea163dfb7
commit 0a90b6b77a
15 changed files with 158 additions and 17 deletions

View file

@ -1,6 +1,6 @@
{
"spawnShip": {
"ship": "01",
"turrets": ["01", "01"]
"fixtures": ["01", "01"]
}
}

View file

@ -7,7 +7,7 @@
"back": 0,
"rotation": 0.003
},
"hull": [
"frame": [
[
[12, 1],
[29, 13],
@ -18,8 +18,11 @@
]
],
"mounts": [
[18, 4],
[18, 28]
{
"pos": [18, 4],
"type": "fixed",
"traversal": false
}
]
}
}

View file

@ -0,0 +1,27 @@
{
"01": {
"name": "Basic Blaster",
"type": "blaster",
"damage": {
"thermal": 5,
"kinetic": 1
},
"speed": 1,
"range": 10,
"autofire": true,
"rateOfFire": 4,
"overheat": {
"cooldown": 0.01,
"heat": 0.1
},
"cost": {
},
"appearance": {
"type": "laser",
"color": "#ff5f45",
"trail": 3,
"size": 2
}
}
}