Skip to content

Latest commit

 

History

History
80 lines (57 loc) · 1.6 KB

README.md

File metadata and controls

80 lines (57 loc) · 1.6 KB

cledex

A simple Linux command line pokédex written in C.

sample

Thanks to Veekun for the great database: https://github.com/veekun/pokedex.

"This is all the intellectual property of Nintendo, Creatures, inc., and GAME FREAK, inc. and is protected by various copyrights and trademarks. The author believes that the use of this intellectual property for a fan reference is covered by fair use and that the software is significantly impaired without said property included. Any use of this copyrighted property is at your own legal risk."

Installation

Pretty classic:

  • cd src
  • make
  • make install (be root)

To uninstall:

  • make uninstall (be root)

Usage

cledex [-l language] "pokemon name"

(note: currently only japanese, french, german, spanish, italian and english languages are fully supported)

eg.

cledex alakazam  
cledex "lucario mega"  
cledex -l de glurak  

Partial search is supported, so you can use "%" to find partial matches

eg.

cledex charm%  

finds Charmander and Charmeleon

cledex %eon

finds Charmeleon, Vaporeon, Jolteon, Flareon, ...

Output

A list of pokémon with following format

--------------------

	[ID]	Name		Type 1 / Type 2
	
			Ability 1     
			Ability 2
			Ability 3
	
			PS: value
			Atk: value
			Def: value
			SpAtk: value
			SpDef: value
			Speed: value
	
			Egg Group 1	(Female % rate, Male % rate)
			Egg Group 2

--------------------