aboutsummaryrefslogtreecommitdiff
path: root/174bg/manager/src/lib/roles.js
blob: 1d02e37e1c1efc47883671a8e22c395d75b3b840 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
export const ROLES = [
    {
        branch: "Naval",
        value: "Ship Captain",
        text: "Ship Captain",
        link: "https://handbook.174bg.net/#ship-captain",
    },
    {
        branch: "Naval",
        value: "Pilot",
        text: "Pilot",
        link: "https://handbook.174bg.net/#pilot",
    },
    {
        branch: "Naval",
        value: "Helmsman",
        text: "Helmsman",
        link: "https://handbook.174bg.net/#helmsman",
    },
    {
        branch: "Naval",
        value: "Gunner",
        text: "Gunner",
        link: "https://handbook.174bg.net/#gunner",
    },
    {
        branch: "Marine",
        value: "Tactical Marine",
        text: "Tactical Marine",
        link: "https://handbook.174bg.net/#tactical-marine",
    },
    {
        branch: "Marine",
        value: "Heavy Marine",
        text: "Heavy Marine",
        link: "https://handbook.174bg.net/#heavy-marine",
    },
    {
        branch: "Marine",
        value: "Scout Marine",
        text: "Scout Marine",
        link: "https://handbook.174bg.net/#scout-marine",
    },
    {
        branch: "Marine",
        value: "Combat Medic",
        text: "Combat Medic",
        link: "https://handbook.174bg.net/#combat-medic",
    },
    {
        branch: "Marine",
        value: "Combat Engineer",
        text: "Combat Engineer",
        link: "https://handbook.174bg.net/#combat-engineer",
    },
    {
        branch: "Marine",
        value: "Warden",
        text: "Warden",
        link: "https://handbook.174bg.net/#warden",
    },
    {
        branch: "Auxiliary",
        value: "Engineer",
        text: "Engineer",
        link: "https://handbook.174bg.net/#engineer",
    },
    {
        branch: "Auxiliary",
        value: "Hazardous Materials Specialist",
        text: "Hazardous Materials Specialist",
        link: "https://handbook.174bg.net/#hazardous-materials-specialist",
    },
    {
        branch: "Auxiliary",
        value: "Medical Doctor",
        text: "Medical Doctor",
        link: "https://handbook.174bg.net/#medical-doctor",
    },
    {
        branch: "Auxiliary",
        value: "Quartermaster",
        text: "Quartermaster",
        link: "https://handbook.174bg.net/#quartermaster",
    },
    {
        branch: "Auxiliary",
        value: "Cargo Technician",
        text: "Cargo Technician",
        link: "https://handbook.174bg.net/#cargo-technician",
    },
    {
        branch: "Auxiliary",
        value: "Craftsman",
        text: "Craftsman",
        link: "https://handbook.174bg.net/#craftsman",
    },
    {
        branch: "Auxiliary",
        value: "Mining Technician",
        text: "Mining Technician",
        link: "https://handbook.174bg.net/#mining-technician",
    },
    {
        branch: "Auxiliary",
        value: "Salvage Operator",
        text: "Salvage Operator",
        link: "https://handbook.174bg.net/#salvage-operator",
    },
    {
        branch: "Auxiliary",
        value: "Expeditionary Analyst",
        text: "Expeditionary Analyst",
        link: "https://handbook.174bg.net/#expeditionary-analyst",
    },
    {
        branch: "Auxiliary",
        value: "Intelligence Agent",
        text: "Intelligence Agent",
        link: "https://handbook.174bg.net/#intelligence-agent",
    },
];

export const RANK_NAMES = {
    Naval: ["Cadet", "Ensign", "Lieutenant", "Captain", "Commodore", "Admiral"],
    Marine: [
        "Private",
        "Corporal",
        "Sergeant",
        "Major",
        "Commander",
        "General",
    ],
    Auxiliary: [
        "Trainee",
        "Technician",
        "Specialist",
        "Supervisor",
        "Chief",
        "Marshal",
    ],
};