mirror of
https://github.com/YouHaveTrouble/DiscipleOfLand.git
synced 2026-05-12 06:26:56 +00:00
16 lines
281 B
TypeScript
16 lines
281 B
TypeScript
export enum Job {
|
|
BOTANIST = "botanist",
|
|
MINER = "miner",
|
|
}
|
|
|
|
export function jobFromString(str: string): Job | null {
|
|
switch (str.toLowerCase()) {
|
|
case "botanist":
|
|
return Job.BOTANIST;
|
|
case "miner":
|
|
return Job.MINER;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|