https://github.com/rzru/pokerust
https://github.com/rzru/pokerust
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rzru/pokerust
- Owner: rzru
- Created: 2021-10-06T17:40:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-07T15:54:05.000Z (over 3 years ago)
- Last Synced: 2025-02-17T23:12:03.416Z (3 months ago)
- Language: Rust
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PokéRust - Terminal PokéDex built in Rust
## Run in dev mode
``cargo run --features color -- [OPTIONS] [FLAGS]``
## Build
``cargo build --features color --release``
## Usage info
```shell
USAGE:
pokerust [FLAGS] [OPTIONS]FLAGS:
-a, --abilities Show extended info about Pokemon abilities
--ext Show extended info about pokemon, such as evolution chain, gender rates,
description, base happiness, capture rate etc.
-h, --help Print help information
-m, --moves Show Pokemon moves info (works only with games-gen specified)
-V, --version Print version informationOPTIONS:
-g, --game Specify concrete game from which you need information. Available
values: x, y, omega-ruby, alpha-sapphire, sun, moon, ultra-sun,
ultra-moon, black-2, white-2, black, white, heartgold, soulsilver,
platinum, diamond, pearl, emerald, ruby, sapphire, xd, colosseum,
gold, silver, crystal, red, blue, yellow, lets-go, sword, shield,
firered, leafgreen
-p, --pokemon Specify pokemon name or id```
## Example usage
### Builded
```shell
pokerust -p bulbasaur # show bulbasaur info
pokerust -p bulbasaur --moves --game=x # show bulbasaur info with additional information about moves in concrete game
pokerust -p bulbasaur --abilities # show bulbasaur info with additional information about abilities
```