Metadata-Version: 2.4
Name: ovos-skill-pokepedia
Version: 0.1.2
Summary: OVOS Pokémon Battle Assistant Skill
Author: denix
Author-email: OpenVoiceOS <openvoiceos@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/OpenVoiceOS/ovos-skill-pokepedia
Project-URL: Upstream, https://codeberg.org/denix/ovos-skill-pokepedia
Keywords: ovos,skill,pokemon,battle,pokeapi
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ovos-utils>=0.0.38
Requires-Dist: ovos-workshop<9.0.0,>=0.0.15
Requires-Dist: requests>=2.31.0
Provides-Extra: test
Requires-Dist: pytest>=7.0.0; extra == "test"
Requires-Dist: pytest-mock>=3.10.0; extra == "test"
Requires-Dist: pytest-timeout>=2.0.0; extra == "test"
Requires-Dist: requests-mock>=1.10.0; extra == "test"
Requires-Dist: ovoscope>=0.13.0; extra == "test"
Dynamic: license-file

# OVOS Pokémon Battle Assistant

A child-friendly OpenVoiceOS (OVOS) skill that allows users to query Pokémon data via voice commands. The skill interfaces with the public **PokeAPI** to retrieve stats, types, moves, and abilities, and provides simplified battle predictions.

Originally authored by [denix](https://codeberg.org/denix/ovos-skill-pokepedia) on Codeberg; this fork lives under OpenVoiceOS for ongoing maintenance.

## Features

- **Get Pokémon Info**: "Tell me about [Pokemon Name]"
- **Get Pokémon Moves**: "What moves does [Pokemon Name] have?"
- **Get Pokémon Type**: "What type is [Pokemon Name]?"
- **Battle Comparison**: "Who wins between [Pokemon A] and [Pokemon B]?"

## Installation

```bash
pip install ovos-skill-pokepedia
```

## Development

```bash
# Install dependencies
pip install -r requirements.txt

# Install in development mode
pip install -e .

# Run tests
pytest test/
```

## License

MIT License
