-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.py
38 lines (35 loc) · 842 Bytes
/
layout.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from enum import Enum
class Layout(Enum):
MCS = 'Mini Colony-Ship'
COS = 'Colony-Ship'
MDM = 'Midget Miner'
MML = 'Mini Mine-Layer'
SCT = 'Scout'
SFR = 'Small Freighter'
MBO = 'Mini Bomber'
MIM = 'Mini Miner'
DTR = 'Destroyer'
MFR = 'Medium Freighter'
FTR = 'Fuel-Transport'
PRV = 'Privateer'
B17 = 'B-17 Bomber'
FRI = 'Frigate'
MIN = 'Miner'
SFT = 'Super Fuel-Transport'
LFR = 'Large Freighter'
MMO = 'Mini Morph'
ROG = 'Rogue'
SBO = 'Stealth Bomber'
CRU = 'Cruiser'
BCR = 'Battle Cruiser'
MOR = 'Meta Morph'
AMI = 'Alien Miner'
GAL = 'Galleon'
MAM = 'Maxi Miner'
BAT = 'Battleship'
SUF = 'Super Freighter'
UMI = 'Ultra Miner'
B52 = 'B-52 Bomber'
SML = 'Super Mine-Layer'
DRN = 'Dreadnought'
NUB = 'Nubian'