aboutsummaryrefslogtreecommitdiff
path: root/174bg/manager/src/lib/roles.js
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-25 17:27:38 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-25 17:27:38 +0100
commita85a54651070765d6254287369835d747be1c276 (patch)
tree6598d2e36bf5a3770c9450e1acceefcfcb092842 /174bg/manager/src/lib/roles.js
parent0d001f0094f2784033be52fa2a28102c271ffb1e (diff)
downloadunnamed-group-a85a54651070765d6254287369835d747be1c276.tar
unnamed-group-a85a54651070765d6254287369835d747be1c276.tar.gz
unnamed-group-a85a54651070765d6254287369835d747be1c276.tar.bz2
unnamed-group-a85a54651070765d6254287369835d747be1c276.tar.xz
unnamed-group-a85a54651070765d6254287369835d747be1c276.zip
manager is now using react
Diffstat (limited to '174bg/manager/src/lib/roles.js')
-rw-r--r--174bg/manager/src/lib/roles.js142
1 files changed, 142 insertions, 0 deletions
diff --git a/174bg/manager/src/lib/roles.js b/174bg/manager/src/lib/roles.js
new file mode 100644
index 0000000..1d02e37
--- /dev/null
+++ b/174bg/manager/src/lib/roles.js
@@ -0,0 +1,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",
+ ],
+};