mirror of
https://github.com/YouHaveTrouble/DiscipleOfLand.git
synced 2026-05-12 06:26:56 +00:00
16 lines
326 B
TypeScript
16 lines
326 B
TypeScript
export enum NodeType {
|
|
UNSPOILED = "unspoiled",
|
|
LEGENDARY = "legendary",
|
|
}
|
|
|
|
export function nodeTypeFromString(str: string): NodeType | null {
|
|
switch (str.toLowerCase()) {
|
|
case "unspoiled":
|
|
return NodeType.UNSPOILED;
|
|
case "legendary":
|
|
return NodeType.LEGENDARY;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|