codenames
Version:
Converts numerical values into human-readable names following a specific theme (e.g., cities)
81 lines (75 loc) • 1.19 kB
text/typescript
/**
* Auto-generated from nature.txt. Do not edit manually.
* Run 'bun run scripts/generate.ts nature Nature' to regenerate.
*
* SPDX-FileCopyrightText: 2025-present Kriasoft
* SPDX-License-Identifier: MIT
*/
import { createTypedCodename } from "../core/factory.js";
export const nature = [
"tree",
"sun",
"sky",
"rain",
"moon",
"star",
"wind",
"sea",
"water",
"rock",
"leaf",
"fire",
"cloud",
"grass",
"snow",
"earth",
"ice",
"river",
"hill",
"sand",
"ocean",
"forest",
"plant",
"storm",
"flower",
"bird",
"fish",
"lake",
"soil",
"seed",
"air",
"stone",
"beach",
"wave",
"light",
"branch",
"root",
"stream",
"valley",
"pond",
"dew",
"bloom",
"field",
"shore",
"cliff",
"spring",
"desert",
"cave",
"mud",
"fog",
] as const;
export type Nature = (typeof nature)[number];
/**
* Converts a number to a Nature codename
*
* @param input - The number to convert
* @returns A Nature name
*
* @example
* ```typescript
* import codename from "codenames/nature-50";
* codename(1234) // "ocean"
* ```
*/
export const codename = createTypedCodename(nature);
export default codename;