Metadata-Version: 2.1
Name: cochar
Version: 0.2.3
Summary: Call of Cthulhu character generator
Home-page: https://github.com/ajwalkiewicz/cochar
Author: Adam Walkiewicz
License: GPL 3.0
Project-URL: Documentation, https://ajwalkiewicz.github.io/cochar/_build/html/index.html
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
Requires-Dist: rname

# README

## Installation

```
pip3 install cochar
```

## Usage

Example:

```
from cochar import Character
c = Character()
Character(age=30, sex='M', first_name='Kelvin', last_name='Burlingame', country='US', occupation='antiquarian', characteristics={'str': 57, 'con': 23, 'siz': 75, 'dex': 23, 'app': 80, 'edu': 87, 'int': 48, 'pow': 18, 'move_rate': 7}, luck=33, skills={'appraise': 64, 'history': 90, 'library use': 90, 'spot hidden': 90, 'listen': 27, 'persuade': 89, 'pilot': 9, 'sleight of hand': 12, 'credit rating': 69, 'doge': 11}, weights=True, damage_bonus='+1K4', build=1, doge=11)

```

