Contains slots for ship fittings
| 22 | |
| 23 | @unique |
| 24 | class FittingSlot(IntEnum): |
| 25 | """ |
| 26 | Contains slots for ship fittings |
| 27 | """ |
| 28 | # These are self-explanatory |
| 29 | LOW = 1 |
| 30 | MED = 2 |
| 31 | HIGH = 3 |
| 32 | RIG = 4 |
| 33 | SUBSYSTEM = 5 |
| 34 | # not a real slot, need for pyfa display rack separation |
| 35 | MODE = 6 |
| 36 | # system effects. They are projected "modules" and pyfa assumes all modules |
| 37 | # have a slot. In this case, make one up. |
| 38 | SYSTEM = 7 |
| 39 | # used for citadel services |
| 40 | SERVICE = 8 |
| 41 | # fighter 'slots'. Just easier to put them here... |
| 42 | F_LIGHT = 10 |
| 43 | F_SUPPORT = 11 |
| 44 | F_HEAVY = 12 |
| 45 | # fighter 'slots' (for structures) |
| 46 | FS_LIGHT = 13 |
| 47 | FS_SUPPORT = 14 |
| 48 | FS_HEAVY = 15 |
| 49 | |
| 50 | |
| 51 | @unique |
no outgoing calls
no test coverage detected