Skip to content

Commit

Permalink
Cleaned up ships.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Sep 5, 2014
1 parent 740f19e commit a5529f9
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions data/ships.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ class Ship(namedtuple('Ship', [ 'name', 'capacity', 'mass', 'driveRating', 'maxJ
pass

ships = [
Ship('Eagle', 6, 52, 348, 6.59, 6.00, 240, 350, [ 'Abnett', 'Aulin Enterprise', 'Beagle2', 'Bradfield', 'Hay Point', 'Louis De Lac' ]),
Ship('Sidewinder', 4, 47, 348, 8.13, 7.25, 220, 293, [ 'Abnett', 'Aulin Enterprise', 'Beagle2', 'Bradfield', 'Hay Point', 'Louis De Lac' ]),
Ship('Hauler', 16, 39, 348, 8.74, 6.10, 200, 246, [ 'Aulin Enterprise', 'Beagle2', 'Bradfield', 'Hay Point', 'Louis De Lac' ]),
Ship('Viper', 8, 40, 348, 13.49, 9.16, 320, 500, [ 'Aulin Enterprise', 'Beagle2', 'Bradfield', 'Chango Dock', 'Hay Point', 'Louis De Lac' ]),
Ship('Cobra', 36, 114, 1155, 9.94, 7.30, 280, 400, [ 'Aulin Enterprise', 'Chango Dock' ]),
Ship('Lakon Type 6', 100, 113, 3455, 29.36, 15.64, 220, 329, [ 'Aulin Enterprise', 'Chango Dock', 'Vonarburg Co-op' ]),
Ship('Lakon Type 9', 440, 1275, 23720, 18.22, 13.34, 130, 200, [ 'Chango Dock' ]),
Ship('Anaconda', 228, 2600, 52345, 19.70, 17.60, 180, 235, [ 'Louis De Lac' ]),
# Name Cap Mass Rating MaxLy FullLy Speed Boost
Ship('Eagle', 6, 52, 348, 6.59, 6.00, 240, 350, [ 'Abnett', 'Aulin Enterprise', 'Beagle2', 'Bradfield', 'Hay Point', 'Louis De Lac' ]),
Ship('Sidewinder', 4, 47, 348, 8.13, 7.25, 220, 293, [ 'Abnett', 'Aulin Enterprise', 'Beagle2', 'Bradfield', 'Hay Point', 'Louis De Lac' ]),
Ship('Hauler', 16, 39, 348, 8.74, 6.10, 200, 246, [ 'Aulin Enterprise', 'Beagle2', 'Bradfield', 'Hay Point', 'Louis De Lac' ]),
Ship('Viper', 8, 40, 348, 13.49, 9.16, 320, 500, [ 'Aulin Enterprise', 'Beagle2', 'Bradfield', 'Chango Dock', 'Hay Point', 'Louis De Lac' ]),
Ship('Cobra', 36, 114, 1155, 9.94, 7.30, 280, 400, [ 'Aulin Enterprise', 'Chango Dock' ]),
Ship('Lakon Type 6', 100, 113, 3455, 29.36, 15.64, 220, 329, [ 'Aulin Enterprise', 'Chango Dock', 'Vonarburg Co-op' ]),
Ship('Lakon Type 9', 440, 1275, 23720, 18.22, 13.34, 130, 200, [ 'Chango Dock' ]),
Ship('Anaconda', 228, 2600, 52345, 19.70, 17.60, 180, 235, [ 'Louis De Lac' ]),
]

0 comments on commit a5529f9

Please sign in to comment.