Metadata-Version: 2.4
Name: ziwei-calc
Version: 0.1.0
Summary: Ki point calculator for Monk class in Baldur's Gate 3
Project-URL: Homepage, https://github.com/brnv/ziwei-calc
Author-email: Artem <brnv@canva.com>
License-Expression: MIT
License-File: LICENSE
Keywords: baldurs-gate-3,bg3,calculator,ki,monk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# ziwei-calc

Ki point calculator for the Monk class in Baldur's Gate 3.

## Installation

```bash
pip install ziwei-calc
```

## Usage

```bash
# Show Ki summary for a level 8 monk
ziwei-calc 8

# Plan a round of combat
ziwei-calc 6 --plan flurry_of_blows stunning_strike patient_defence
```

```python
from ziwei_calc import KiCalculator

calc = KiCalculator(monk_level=8)
print(calc.max_ki)           # 8
print(calc.max_uses("flurry_of_blows"))  # 8
print(calc.plan_round(["flurry_of_blows", "stunning_strike"]))
```

## License

MIT
