(implants)
| 220 | |
| 221 | |
| 222 | def exportImplants(implants): |
| 223 | implantLines = [] |
| 224 | for implant in sorted(implants, key=lambda i: i.slot or 0): |
| 225 | implantLines.append(implant.item.typeName) |
| 226 | return '\n'.join(implantLines) |
| 227 | |
| 228 | |
| 229 | def exportBoosters(boosters): |