https://github.com/pradishb/pokecov
Tool to check the effectiveness and coverage of your pokemon attacks
https://github.com/pradishb/pokecov
coverage pokemon types
Last synced: 4 months ago
JSON representation
Tool to check the effectiveness and coverage of your pokemon attacks
- Host: GitHub
- URL: https://github.com/pradishb/pokecov
- Owner: pradishb
- License: mit
- Created: 2024-01-11T19:53:36.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-12T09:57:49.000Z (over 1 year ago)
- Last Synced: 2025-01-19T17:12:11.821Z (5 months ago)
- Topics: coverage, pokemon, types
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pokecov
Tool to check the effectiveness and coverage of your pokemon attacks
Data parsed from https://pokemondb.net/type/old and https://pokemondb.net/type
## Installation
You can install the package via pip:
```bash
pip install pokecov
```## Usage
```
pokecov fire water grass electric
``````
Your attacks are super effective to Fire, Water, Grass, Ice, Ground, Flying, Bug, Rock, Steel (9).
Your attacks have normal effectiveness to Normal, Electric, Fighting, Poison, Psychic, Ghost, Dark (7).
Your attacks are not very effective to Dragon (1).
Your attacks have no effect to none (0).
```## Generation Support
```
pokecov --gen 1 normal
``````
Your attacks are super effective to none (0).
Your attacks have normal effectiveness to Normal, Fire, Water, Electric, Grass, Ice, Fighting, Poison, Ground, Flying, Psychic, Bug, Dragon (13).
Your attacks are not very effective to Rock (1).
Your attacks have no effect to Ghost (1).
```## Search
Search for type combination that has 100% coverage.
```
pokecov-search --gen 3 --min-count 6 --max-count 7 --ignore dragon --must-have fire --cant-have psychic
``````
Water, Flying, Fighting, Dark, Electric, Ground, Fire
Water, Flying, Fighting, Electric, Ground, Ghost, Fire
Flying, Fighting, Ice, Dark, Electric, Ground, Fire
Flying, Fighting, Ice, Dark, Grass, Ground, Fire
Flying, Fighting, Ice, Electric, Ground, Ghost, Fire
Flying, Fighting, Ice, Grass, Ground, Ghost, Fire
Flying, Fighting, Dark, Electric, Grass, Ground, Fire
Flying, Fighting, Dark, Grass, Rock, Ground, Fire
Flying, Fighting, Electric, Grass, Ground, Ghost, Fire
Flying, Fighting, Grass, Rock, Ground, Ghost, Fire
```## License
This project is licensed under the terms of the MIT license.
## Contact
If you want to contact me you can reach me at [email protected].