# character-gen

> A small utility package to perform random character attribute generation for writers and role-players.

Latest version **1.0.1** (published 2019-06-06) · ISC license · 0 weekly downloads

## Install

```sh
npm install character-gen
pnpm add character-gen
yarn add character-gen
bun add character-gen
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2019-06-06 |
| First published | 2019-06-06 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 17.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | cmarmil |
| Maintainers | cmdev |
| Keywords | random, sentence, generation, writing |

## Links

- npm: https://www.npmjs.com/package/character-gen
- Repository: https://github.com/cmarmil/character-generator
- Homepage: https://github.com/cmarmil/character-generator#readme
- Issues: https://github.com/cmarmil/character-generator/issues
- npm.io page: https://npm.io/package/character-gen

## Recent versions

- 1.0.1 (latest) — 2019-06-06

## README

# character-generator
An npm utility package to perform random character attribute generation for writers and role-players. 
Written in pure JS, with no dependencies.

<h1>Usage</h1>

```javascript
const characterGen = require('character-gen');

//To generate a basic archetype string: 
characterGen.basic();
// Output: Lazy Landscape gardener
 
//To generate an appearance attribute string:
characterGen.appearance();
// Output: average height with golden colored unkempt hair. 

//A complete character with attribute, profession, appearance, and age (random between 15 and 100): 
characterGen.complex();
// Output: A Lazy Landscape gardener, average height with golden colored unkempt hair. 27 years old.
```

<h1>Alteration</h1>
The string data for all random combinations can be found and freely edited to suit personal use in "/lists.js".

---
_Source: https://npm.io/package/character-gen · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
